/* Konsept-inspired Custom Styles for Giliune Furniture */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&family=Noto+Serif+TC:wght@300;400;500;600&display=swap');

:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #9a7b56;
  --dark: #1a1a1a;
  --dark2: #2a2a2a;
  --dark3: #111111;
  --text: #4a4a4a;
  --text-light: #8a8a8a;
  --bg-warm: #f7f4f0;
  --bg-cream: #faf8f5;
  --bg-grey: #f2f0ed;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ===== NAVBAR ===== */
.gl-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
.gl-nav.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 16px 60px;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}
.gl-nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.gl-brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 8px;
  line-height: 1;
}
.gl-brand-cn {
  font-family: 'Noto Serif TC', serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 5px;
  color: #c8a97e !important;
  margin-top: 4px;
}
.gl-nav.scrolled .gl-nav-brand { color: var(--dark); }
.gl-nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.gl-nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}
.gl-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.gl-nav-links a:hover::after { width: 100%; }
.gl-nav.scrolled .gl-nav-links a { color: var(--dark); }
.gl-nav.scrolled .gl-nav-links a:hover { color: var(--gold); }

.gl-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 5px;
  z-index: 10001;
}
.gl-hamburger span {
  width: 28px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
  display: block;
}
.gl-nav.scrolled .gl-hamburger span { background: var(--dark); }

@media (max-width: 768px) {
  .gl-nav { padding: 20px 25px; }
  .gl-nav.scrolled { padding: 15px 25px; }
  .gl-hamburger { display: flex; }
  .gl-nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 10000;
  }
  .gl-nav-links.open { transform: translateX(0); }
  .gl-nav-links a { color: #fff !important; font-size: 13px; letter-spacing: 4px; }
}

/* ===== HERO ===== */
.gl-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.gl-hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.gl-hero-slide.active { opacity: 1; }
.gl-hero-slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.gl-hero-slide.active .gl-hero-slide-bg { transform: scale(1); }

/* Hero slide background images */
.gl-hero-slide:nth-child(1) .gl-hero-slide-bg {
  background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&q=80');
}
.gl-hero-slide:nth-child(2) .gl-hero-slide-bg {
  background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1920&q=80');
}
.gl-hero-slide:nth-child(3) .gl-hero-slide-bg {
  background-image: url('https://images.unsplash.com/photo-1567016432779-094069958ea5?w=1920&q=80');
}

.gl-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 100%);
}
.gl-hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  width: 90%;
  max-width: 800px;
}
.gl-hero-sub {
  font-size: 11px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 25px;
  font-weight: 400;
}
.gl-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 82px;
  font-weight: 300;
  letter-spacing: 14px;
  margin: 0 0 10px;
  line-height: 1;
}
.gl-hero-title-cn {
  font-family: 'Noto Serif TC', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 10px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.7);
}
.gl-hero-desc {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 45px;
  line-height: 1.8;
}
.gl-btn {
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid var(--gold-light);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.gl-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.4s;
  z-index: -1;
}
.gl-btn:hover::before { left: 0; }
.gl-btn:hover { border-color: var(--gold); color: #fff; }
.gl-btn-dark {
  border-color: var(--dark);
  color: var(--dark);
}
.gl-btn-dark::before { background: var(--dark); }
.gl-btn-dark:hover { color: #fff; }
.gl-btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.gl-btn-gold::before { background: var(--dark); }

.gl-hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}
.gl-hero-dot {
  width: 12px; height: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  position: relative;
}
.gl-hero-dot.active {
  border-color: var(--gold);
}
.gl-hero-dot.active::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.gl-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}
.gl-scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  margin: 10px auto 0;
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE TICKER ===== */
.gl-marquee {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.gl-marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}
.gl-marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.gl-marquee-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 50px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.gl-section { padding: 120px 60px; }
.gl-section-tag {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-block;
}
.gl-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.15;
}
.gl-section-title-cn {
  font-family: 'Noto Serif TC', serif;
}
.gl-section-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 35px;
}
.gl-section-line.center { margin: 0 auto 35px; }
.gl-section-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
  max-width: 520px;
  font-weight: 300;
}

/* ===== CATEGORY CARDS (Konsept-style 4-col) ===== */
.gl-categories {
  padding: 100px 60px;
  background: #fff;
}
.gl-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}
.gl-cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bg-grey);
}
.gl-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-cat-card:hover img { transform: scale(1.06); }
.gl-cat-card-content {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 35px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.55) 100%);
  transition: padding 0.4s;
}
.gl-cat-card:hover .gl-cat-card-content { padding-bottom: 45px; }
.gl-cat-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gl-cat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}
.gl-cat-card-btn {
  display: inline-block;
  margin-top: 15px;
  font-size: 10px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.gl-cat-card:hover .gl-cat-card-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.gl-about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.gl-about-images {
  position: relative;
  height: 620px;
}
.gl-about-img1 {
  width: 72%;
  height: 470px;
  object-fit: cover;
}
.gl-about-img2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 320px;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 25px 80px rgba(0,0,0,0.08);
}
.gl-about-est {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(0,0,0,0.04);
  position: absolute;
  top: -40px; right: -10px;
  letter-spacing: 5px;
  line-height: 1;
}
.gl-about-badge {
  position: absolute;
  bottom: 30px; left: 30px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}
.gl-about-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.gl-about-badge span:last-child {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== FEATURED PRODUCT SPOTLIGHT ===== */
.gl-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
  align-items: stretch;
  min-height: 550px;
}
.gl-spotlight.reverse { direction: rtl; }
.gl-spotlight.reverse > * { direction: ltr; }
.gl-spotlight-img {
  overflow: hidden;
}
.gl-spotlight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.gl-spotlight-img:hover img { transform: scale(1.04); }
.gl-spotlight-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.gl-spotlight-text .gl-section-desc {
  margin-bottom: 35px;
}

/* ===== SERVICES GRID ===== */
.gl-services { background: var(--bg-warm); }
.gl-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.gl-service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gl-service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-service-card:hover img { transform: scale(1.08); }
.gl-service-card-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  transition: padding 0.4s;
}
.gl-service-card:hover .gl-service-card-overlay { padding-bottom: 50px; }
.gl-service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.gl-service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: 2px;
}
.gl-service-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* ===== PARALLAX BANNER ===== */
.gl-parallax {
  height: 550px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&q=80');
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gl-parallax::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,26,0.55);
}
.gl-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
}
.gl-parallax-content .gl-hero-title {
  font-size: 52px;
  margin-bottom: 15px;
}
.gl-parallax-content .gl-hero-desc {
  margin-bottom: 35px;
}

/* ===== COUNTERS ===== */
.gl-counters {
  background: var(--dark3);
  padding: 80px 60px;
}
.gl-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gl-counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.gl-counter-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.gl-counter-divider {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 15px auto 0;
}

/* ===== GALLERY ===== */
.gl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}
.gl-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.gl-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gl-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-gallery-item:hover img { transform: scale(1.08); }
.gl-gallery-item-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(184,149,106,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.gl-gallery-item:hover .gl-gallery-item-overlay { opacity: 1; }
.gl-gallery-item-overlay span {
  color: #fff;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.gl-gallery-item-overlay .gl-plus {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

/* ===== TESTIMONIALS ===== */
.gl-testimonials {
  background: var(--bg-warm);
  padding: 120px 60px;
  text-align: center;
}
.gl-testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}
.gl-testimonial {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s;
  transform: translateY(20px);
}
.gl-testimonial.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}
.gl-testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 30px;
}
.gl-testimonial-quote::before {
  content: '\201C';
  font-size: 60px;
  color: var(--gold);
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
}
.gl-testimonial-author {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.gl-testimonial-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}
.gl-testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.gl-testimonial-dot {
  width: 8px; height: 8px;
  border: 1px solid var(--text-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.gl-testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ===== FEATURES STRIP ===== */
.gl-features {
  background: var(--dark);
  padding: 70px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gl-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gl-feature-icon {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--gold);
}
.gl-feature h5 {
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 500;
}
.gl-feature p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.gl-newsletter {
  background: var(--bg-cream);
  padding: 80px 60px;
  text-align: center;
}
.gl-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.gl-newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 10px;
}
.gl-newsletter p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 300;
}
.gl-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 450px;
  margin: 0 auto;
}
.gl-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #ddd;
  border-right: none;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  background: #fff;
}
.gl-newsletter-form input:focus { border-color: var(--gold); }
.gl-newsletter-form button {
  padding: 14px 30px;
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.gl-newsletter-form button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ===== CONTACT ===== */
.gl-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}
.gl-contact-info {
  padding: 100px 80px;
}
.gl-contact-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin: 28px 0 8px;
}
.gl-contact-info h4:first-of-type { margin-top: 0; }
.gl-contact-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}
.gl-contact-info a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.gl-contact-info a:hover { color: var(--dark); }
.gl-map {
  position: relative;
  min-height: 500px;
}
.gl-map iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ===== FOOTER ===== */
.gl-footer {
  background: var(--dark3);
  padding: 90px 60px 40px;
}
.gl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.gl-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 8px;
  color: #fff;
  margin-bottom: 22px;
}
.gl-footer p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  line-height: 1.9;
}
.gl-footer h5 {
  color: #fff;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 25px;
  font-weight: 500;
}
.gl-footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.gl-footer a:hover { color: var(--gold); transform: translateX(3px); }
.gl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 70px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.gl-footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}
.gl-social { display: flex; gap: 15px; }
.gl-social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  transition: all 0.3s;
  margin: 0;
}
.gl-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: none;
}

/* ===== ANIMATIONS ===== */
.gl-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-reveal.visible { opacity: 1; transform: translateY(0); }
.gl-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-reveal-left.visible { opacity: 1; transform: translateX(0); }
.gl-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.gl-stagger .gl-reveal:nth-child(1) { transition-delay: 0s; }
.gl-stagger .gl-reveal:nth-child(2) { transition-delay: 0.15s; }
.gl-stagger .gl-reveal:nth-child(3) { transition-delay: 0.3s; }
.gl-stagger .gl-reveal:nth-child(4) { transition-delay: 0.45s; }
.gl-stagger .gl-reveal:nth-child(5) { transition-delay: 0.6s; }
.gl-stagger .gl-reveal:nth-child(6) { transition-delay: 0.75s; }
.gl-stagger .gl-reveal:nth-child(7) { transition-delay: 0.9s; }
.gl-stagger .gl-reveal:nth-child(8) { transition-delay: 1.05s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gl-about { grid-template-columns: 1fr; gap: 50px; }
  .gl-about-images { height: 420px; }
  .gl-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-services-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-gallery-item.wide { grid-column: span 2; }
  .gl-contact { grid-template-columns: 1fr; }
  .gl-map { min-height: 350px; position: relative; }
  .gl-map iframe { position: relative; }
  .gl-spotlight { grid-template-columns: 1fr; }
  .gl-spotlight-text { padding: 60px 40px; }
  .gl-spotlight.reverse { direction: ltr; }
  .gl-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-counters-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-hero-title { font-size: 56px; letter-spacing: 8px; }
}
@media (max-width: 768px) {
  .gl-section { padding: 80px 25px; }
  .gl-hero { min-height: 600px; }
  .gl-hero-title { font-size: 40px; letter-spacing: 5px; }
  .gl-hero-title-cn { font-size: 16px; letter-spacing: 6px; }
  .gl-section-title { font-size: 34px; }
  .gl-cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gl-services-grid { grid-template-columns: 1fr; }
  .gl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .gl-features-grid { grid-template-columns: 1fr 1fr; }
  .gl-counters-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gl-counter-num { font-size: 44px; }
  .gl-footer-grid { grid-template-columns: 1fr; }
  .gl-footer-bottom { flex-direction: column; gap: 15px; }
  .gl-parallax { height: 400px; background-attachment: scroll; }
  .gl-spotlight-text { padding: 50px 25px; }
  .gl-contact-info { padding: 60px 25px; }
  .gl-newsletter-form { flex-direction: column; }
  .gl-newsletter-form input { border-right: 1px solid #ddd; }
  .gl-categories { padding: 80px 25px; }
  .gl-marquee-item { font-size: 14px; padding: 0 30px; }
  .gl-testimonial-quote { font-size: 20px; }
}
