@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400&display=swap');
*{margin:0;padding:0;box-sizing:border-box;}
:root{
  --gold:#B8955A;--gold-light:#D4B483;--cream:#F8F4EE;--charcoal:#1C1C1C;
  --warm-gray:#6B6560;--off-white:#FAF8F5;--stone:#C8C0B4;--muted:#9C9690;
}
body{font-family:'Jost',sans-serif;background:var(--off-white);color:var(--charcoal);font-weight:300;overflow-x:hidden;font-size:15px;line-height:1.7;}
/* Remove underline from all links */
a{text-decoration:none;}

nav{display:flex;align-items:center;justify-content:space-between;padding:1.75rem 4rem;background:rgba(250,248,245,0.94);backdrop-filter:blur(10px);border-bottom:0.5px solid rgba(184,149,90,0.2);position:sticky;top:0;z-index:1001;}
.logo{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:400;letter-spacing:0.06em;color:var(--charcoal);}
.logo em{color:var(--gold);font-style:italic;}
a.logo{text-decoration:none;color:inherit;}
.nav-links{display:flex;gap:2.5rem;}
.nav-links a{font-size:11px;letter-spacing:0.18em;text-transform:uppercase;color:var(--warm-gray);text-decoration:none;cursor:pointer;transition:color 0.3s;}
.nav-links a:hover{color:var(--gold);}
.nav-btn{font-size:10px;letter-spacing:0.16em;text-transform:uppercase;border:0.5px solid var(--gold);color:var(--gold);background:none;padding:0.55rem 1.3rem;cursor:pointer;transition:all 0.3s;}
.nav-btn:hover{background:var(--gold);color:white;}

/* HERO — 全屏背景图 + 文字叠加 */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  z-index:1;
  background-image: url('../images/index/1.hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-bg::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(20,18,15,0.60) 0%, rgba(20,18,15,0.30) 55%, rgba(20,18,15,0.10) 100%);
}
.hero-bg-art{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0.25;}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right, rgba(20,18,15,0.60) 0%, rgba(20,18,15,0.30) 55%, rgba(20,18,15,0.10) 100%);
}
.hero-content{
  position:relative;z-index:2;
  padding:8vh 4rem 0;
  max-width:700px;
  margin:0 auto;
  text-align:center;
}
.eyebrow{font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--gold);margin-bottom:2.5rem;display:flex;align-items:center;gap:1rem;}
.eyebrow::before{content:'';display:block;width:28px;height:0.5px;background:var(--gold);}
h1{font-family:'Cormorant Garamond',serif;font-size:clamp(56px,6vw,84px);font-weight:300;line-height:1.05;color:white;margin-bottom:2rem;}
h1 em{font-style:italic;color:var(--gold);}
.hero-sub{font-size:15px;line-height:1.95;color:rgba(255,255,255,0.65);max-width:420px;margin:0 auto 3.5rem;font-weight:300;}
.cta-row{display:flex;gap:1.25rem;align-items:center;justify-content:center;}
.hero-actions{display:flex;gap:1.25rem;align-items:center;justify-content:center;}
.btn-gold{font-size:10px;letter-spacing:0.18em;text-transform:uppercase;background:var(--gold);color:white;padding:0.95rem 2.25rem;border:none;cursor:pointer;transition:background 0.3s;}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline-white{font-size:10px;letter-spacing:0.18em;text-transform:uppercase;background:none;color:rgba(255,255,255,0.7);border:0.5px solid rgba(255,255,255,0.35);padding:0.95rem 2.25rem;cursor:pointer;transition:all 0.3s;}
.btn-outline-white:hover{border-color:var(--gold);color:var(--gold);}
.btn{font-size:10px;letter-spacing:0.18em;text-transform:uppercase;padding:0.95rem 2.25rem;cursor:pointer;transition:all 0.3s;}
.btn-primary{background:var(--gold);color:white;border:none;}
.btn-primary:hover{background:var(--gold-light);}
.btn-outline{background:none;color:rgba(255,255,255,0.7);border:0.5px solid rgba(255,255,255,0.35);}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);}
.hero-scroll{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:0.5rem;z-index:2;}
.hero-scroll span{font-size:9px;letter-spacing:0.25em;text-transform:uppercase;color:rgba(255,255,255,0.35);}
.hero-scroll-line{width:0.5px;height:40px;background:linear-gradient(to bottom,rgba(184,149,90,0.6),transparent);}

.band{background:var(--charcoal);padding:1.25rem 4rem;overflow:hidden;}
.band-inner{display:flex;gap:3.5rem;animation:scroll 15s linear infinite;width:max-content;}
@keyframes scroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.band:hover .band-inner{animation-play-state:paused;}
.band-item{font-size:10px;letter-spacing:0.28em;text-transform:uppercase;color:var(--gold-light);white-space:nowrap;display:flex;align-items:center;gap:1.25rem;}
.band-item::after{content:'·';color:rgba(212,180,131,0.5);font-size:18px;}
.band-item:last-child::after{display:none;}

section{padding:7rem 4rem;}
.label{font-size:10px;letter-spacing:0.3em;text-transform:uppercase;color:var(--gold);margin-bottom:1.75rem;display:flex;align-items:center;gap:0.9rem;}
.label::before{content:'';display:block;width:22px;height:0.5px;background:var(--gold);}
h2{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,3.8vw,54px);font-weight:300;line-height:1.12;color:var(--charcoal);margin-bottom:1.25rem;}
h2 em{font-style:italic;color:var(--gold);}
.section-intro{font-size:14px;line-height:1.9;color:var(--warm-gray);max-width:520px;margin-bottom:4.5rem;}

.sig-grid{display:grid;grid-template-columns:1fr 1fr;gap:3px;}
.sig-card{position:relative;overflow:hidden;cursor:pointer;}
.sig-card:first-child{grid-column:1;grid-row:1/3;}
.sig-bg{width:100%;display:flex;align-items:center;justify-content:center;transition:transform 0.7s ease;background:linear-gradient(160deg,#252018 0%,#332A20 60%,#1E1A14 100%);}
.sig-card:first-child .sig-bg{min-height:680px;}
.sig-card:not(:first-child) .sig-bg{min-height:335px;}
.sig-card:hover .sig-bg{transform:scale(1.02);}
.sig-info{position:absolute;bottom:0;left:0;right:0;padding:2.5rem;background:linear-gradient(to top,rgba(0,0,0,0.75) 0%,transparent 100%);}
.sig-tag{font-size:9px;letter-spacing:0.28em;text-transform:uppercase;color:var(--gold-light);opacity:0.7;margin-bottom:0.5rem;}
.sig-name{font-family:'Cormorant Garamond',serif;font-size:clamp(24px,2.5vw,34px);font-weight:300;color:white;margin-bottom:0.5rem;}
.sig-name em{font-style:italic;color:var(--gold-light);}
.sig-desc{font-size:12px;line-height:1.7;color:rgba(255,255,255,0.5);max-width:320px;}
.sig-link{display:inline-block;margin-top:1.25rem;font-size:9px;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold-light);border-bottom:0.5px solid rgba(212,180,131,0.4);padding-bottom:2px;cursor:pointer;transition:color 0.3s;}
.sig-link:hover{color:white;}

.spaces-bg{background:var(--cream);}
.spaces-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;}
.space-card{position:relative;overflow:hidden;cursor:pointer;}
.space-bg{min-height:420px;display:flex;align-items:flex-end;transition:transform 0.6s ease;}
.space-card:hover .space-bg{transform:scale(1.03);}
.sp1{background:linear-gradient(170deg,#1E2420 0%,#252E28 100%);}
.sp2{background:linear-gradient(170deg,#221E28 0%,#2A2430 100%);}
.sp3{background:linear-gradient(170deg,#28201A 0%,#322820 100%);}
.sp4{background:linear-gradient(170deg,#1C1E22 0%,#222430 100%);}
.space-label{padding:1.5rem;width:100%;background:linear-gradient(to top,rgba(0,0,0,0.65) 0%,transparent 100%);}
.space-type{font-size:9px;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold-light);opacity:0.65;margin-bottom:0.35rem;}
.space-name{font-family:'Cormorant Garamond',serif;font-size:17px;font-weight:300;color:white;}

.materials-inner{display:grid;grid-template-columns:1fr 2fr;gap:6rem;align-items:center;}
.mat-frame{background:#2C2520;aspect-ratio:3/4;position:relative;overflow:hidden;}
.mat-deco{position:absolute;inset:0;border:0.5px solid rgba(184,149,90,0.08);z-index:2;}
.mat-deco2{position:absolute;inset:2.5rem;border:0.5px solid rgba(184,149,90,0.06);z-index:2;}
.mat-offset{position:absolute;bottom:-2rem;right:-2rem;width:55%;height:55%;border:0.5px solid rgba(184,149,90,0.2);z-index:2;}

/* Material carousel */
.material-carousel{position:absolute;inset:0;z-index:1;}
.carousel-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 0.5s ease;}
.carousel-slide.active{opacity:1;}

.mat-items{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem;}
.mat-item{border-top:0.5px solid rgba(184,149,90,0.25);padding-top:1.25rem;}
.mat-name{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:400;color:var(--charcoal);margin-bottom:0.4rem;}
.mat-desc{font-size:12px;line-height:1.7;color:var(--muted);}

.collections-bg{background:var(--charcoal);}
.collections-bg .label{color:var(--gold-light);}
.collections-bg .label::before{background:var(--gold-light);}
.collections-bg h2{color:var(--off-white);}
.collections-bg h2 em{color:var(--gold);}
.collections-bg .section-intro{color:rgba(255,255,255,0.4);}
.col-tabs{display:flex;gap:0;border-bottom:0.5px solid rgba(184,149,90,0.15);margin-bottom:3rem;}
.col-tab{font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:rgba(255,255,255,0.35);padding:0.85rem 1.75rem;background:none;border:none;border-bottom:1px solid transparent;margin-bottom:-0.5px;cursor:pointer;transition:all 0.3s;}
.col-tab:hover{color:rgba(255,255,255,0.6);}
.col-tab.active{color:var(--gold);border-bottom-color:var(--gold);}
.col-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.col-card{background-color:rgba(248,244,238,0.92);padding:2rem;cursor:pointer;transition:background-color 0.3s;position:relative;overflow:hidden;min-height: 200px;}
.col-card:hover{background-color:rgba(240,236,230,0.95);}
.col-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:80px;background:linear-gradient(to top, rgba(255,255,255,0.6) 0%, transparent 100%);z-index:1;pointer-events:none;}
.col-icon{width:36px;height:36px;margin-bottom:1.5rem;opacity:0.5;position:relative;z-index:2;}
.col-name{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:500;color:var(--charcoal);position:absolute;bottom: 5.5rem;left: 2rem;right: 2rem;z-index:2;text-decoration:none;}
.col-desc{font-size:12px;line-height:1.7;color:var(--charcoal);opacity:0.85;position:absolute;bottom: 2rem;left: 2rem;right: 3.5rem;z-index:2;text-decoration:none;}
.col-arrow{position:absolute;bottom:2rem;right:2rem;color:var(--charcoal);font-size:16px;opacity:0;transition:opacity 0.3s,transform 0.3s;z-index:2;}
.col-card:hover .col-arrow{opacity:1;transform:translateX(4px);}

.about-inner{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;}
.about-quote{font-family:'Cormorant Garamond',serif;font-size:clamp(22px,2.2vw,30px);font-style:italic;font-weight:300;line-height:1.45;color:var(--charcoal);border-left:1.5px solid var(--gold);padding-left:1.75rem;margin-bottom:2.5rem;}
.about-body{font-size:14px;line-height:1.95;color:var(--warm-gray);margin-bottom:1.5rem;}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem;padding-top:2rem;border-top:0.5px solid rgba(184,149,90,0.2);}
.about-stat span{font-family:'Cormorant Garamond',serif;font-size:38px;font-weight:300;color:var(--gold);display:block;line-height:1;}
.about-stat p{font-size:10px;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted);margin-top:0.35rem;}

.showroom-bg{background:var(--cream);}
.showroom-inner{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;}
.detail-row{display:flex;gap:1rem;padding:1.25rem 0;border-bottom:0.5px solid rgba(184,149,90,0.2);}
.detail-label{font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);min-width:90px;padding-top:2px;}
.detail-val{font-size:13px;line-height:1.6;color:var(--charcoal);}
.form-group{margin-bottom:1.5rem;}
.form-group label{display:block;font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);margin-bottom:0.6rem;}
.form-group input,.form-group textarea,.form-group select{width:100%;background:white;border:0.5px solid rgba(184,149,90,0.25);padding:0.85rem 1rem;font-family:'Jost',sans-serif;font-size:13px;font-weight:300;color:var(--charcoal);outline:none;transition:border-color 0.3s;}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--gold);}
.form-group textarea{min-height:120px;resize:vertical;}
.btn-submit{font-size:10px;letter-spacing:0.18em;text-transform:uppercase;background:var(--charcoal);color:var(--off-white);padding:1rem 2.5rem;border:none;cursor:pointer;transition:background 0.3s;width:100%;}
.btn-submit:hover{background:#3A3330;}

footer{background:#141414;padding:4rem;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:4rem;margin-bottom:3rem;}
.footer-logo{font-family:'Cormorant Garamond',serif;font-size:21px;font-weight:400;letter-spacing:0.06em;}
.footer-logo .word-dreammaker{color:var(--gold);font-style:italic;}
.footer-logo .word-designs{color:var(--gold);font-style:italic;}
.footer-slogan{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:15px;color:rgba(184,149,90,0.4);margin:0.75rem 0 1.25rem;}
.footer-about{font-size:13px;line-height:1.8;color:rgba(255,255,255,0.25);max-width:240px;}
.footer-col h5{font-size:10px;letter-spacing:0.28em;text-transform:uppercase;color:var(--gold);margin-bottom:1.5rem;}
.footer-col a{display:block;font-size:13px;color:rgba(255,255,255,0.35);text-decoration:none;margin-bottom:0.65rem;cursor:pointer;transition:color 0.3s;}
.footer-col a:hover{color:var(--gold-light);}
.footer-bottom{border-top:0.5px solid rgba(184,149,90,0.1);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,0.2);}

.contact-btn{font-size:10px;letter-spacing:0.16em;text-transform:uppercase;border:0.5px solid var(--gold);color:var(--gold);background:none;padding:0.55rem 1.3rem;cursor:pointer;transition:all 0.3s;}
.contact-btn:hover{background:var(--gold);color:white;}

.fade-up{opacity:0;transform:translateY(28px);transition:opacity 0.9s ease,transform 0.9s ease;}
.fade-up.in{opacity:1;transform:translateY(0);}

.nav-right{display:flex;align-items:center;gap:3rem;}
.hamburger{display:none;align-items:center;justify-content:center;background:none;border:none;cursor:pointer;padding:0.4rem;}
.mobile-menu{display:none;position:fixed;inset:0;background:var(--off-white);z-index:200;flex-direction:column;align-items:center;justify-content:center;}
.mobile-menu.active{display:flex;}
.mobile-close{position:absolute;top:1.75rem;right:1.75rem;background:none;border:none;cursor:pointer;font-family:'Cormorant Garamond',serif;font-size:32px;color:var(--charcoal);line-height:1;}
.mobile-nav{display:flex;flex-direction:column;align-items:center;gap:2.5rem;margin-bottom:3rem;}
.mobile-nav a{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,6vw,40px);font-weight:300;color:var(--charcoal);text-decoration:none;letter-spacing:0.04em;border-bottom:0.5px solid transparent;transition:color 0.3s,border-color 0.3s;}
.mobile-nav a:hover{color:var(--gold);border-bottom-color:rgba(184,149,90,0.3);}

/* Dropdown menu */
.nav-dropdown{position:relative;}
.dropdown-toggle{display:inline-flex;align-items:center;gap:0.4rem;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;color:var(--warm-gray);text-decoration:none;cursor:pointer;transition:color 0.3s;line-height:1.7;position:relative;}
.dropdown-toggle::after{content:'▼';font-size:7px;margin-top:1px;opacity:0.5;transition:transform 0.3s,color 0.3s;}
.nav-dropdown:hover .dropdown-toggle{color:var(--gold);}
.nav-dropdown:hover .dropdown-toggle::after{color:var(--gold);transform:rotate(180deg);opacity:0.8;}
/* Underline hover effect on Collections link */
.dropdown-toggle::before{content:'';position:absolute;bottom:-4px;left:0;width:0;height:0.5px;background:var(--gold);transition:width 0.35s ease;}
.nav-dropdown:hover .dropdown-toggle::before{width:100%;}
/* Base dropdown menu (default) */
.dropdown-menu{position:absolute;top:100%;left:0;background:var(--off-white);border:0.5px solid rgba(184,149,90,0.2);min-width:350px;opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity 0.3s ease,transform 0.3s ease,visibility 0.3s;display:grid;grid-template-columns:1fr 1fr;z-index:1002;}
.nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown-group{padding:1.5rem;}
.dropdown-group:last-child{border-left:0.5px solid rgba(184,149,90,0.15);}
.dropdown-title{font-family:'Jost',sans-serif;font-size:10px;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;padding-bottom:0.65rem;border-bottom:0.5px solid rgba(184,149,90,0.12);pointer-events:none;}
.dropdown-menu a{display:block;font-family:'Jost',sans-serif;font-size:12px;font-weight:300;letter-spacing:0.06em;text-transform:none;color:var(--warm-gray);text-decoration:none;padding:0.4rem 0;transition:color 0.3s,padding-left 0.3s;}
.dropdown-menu a:hover{color:var(--gold);padding-left:0.3rem;}

/* Collections dropdown — full-width mega menu (like luxury brand sites) */
.collections-dropdown{position:fixed;top:var(--nav-height,82px);left:0;width:100vw;max-width:100%;box-shadow:0 20px 60px rgba(0,0,0,0.10);border:none;border-top:0.5px solid rgba(184,149,90,0.12);padding:3rem 4rem;background:rgba(250,248,245,0.98);display:flex;gap:0;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity 0.35s ease,transform 0.35s ease,visibility 0.35s;z-index:999;}
.nav-dropdown:hover .collections-dropdown{opacity:1;visibility:visible;transform:translateY(0);}
/* Each half: Indoor / Outdoor */
.mega-section{flex:1;padding:0 3rem 0 0;}
.mega-section+.mega-section{padding:0 0 0 3rem;border-left:0.5px solid rgba(184,149,90,0.12);}
.mega-header{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:1.25rem;padding-bottom:0.75rem;border-bottom:0.5px solid rgba(184,149,90,0.15);}
.collections-dropdown .dropdown-title{font-size:11px;letter-spacing:0.22em;color:var(--gold);text-transform:uppercase;font-weight:600;pointer-events:none;}
.view-all{font-size:10px;letter-spacing:0.12em;color:var(--warm-gray);text-decoration:none;opacity:0.5;transition:opacity 0.3s;}
.view-all:hover{opacity:1;color:var(--gold);}
/* Sub-grid inside each section: 2 columns max 5 items each */
.mega-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;}
.mega-col{padding:0;}
.mega-col+.mega-col{padding-left:1.5rem;}
.collections-dropdown a{display:block;font-size:14px;letter-spacing:0.04em;padding:0.6rem 0;border-bottom:0.5px solid rgba(184,149,90,0.04);color:var(--charcoal);opacity:0.7;text-decoration:none;transition:opacity 0.3s,padding-left 0.3s;}
.collections-dropdown a:last-child{border-bottom:none;}
.collections-dropdown a:hover{opacity:1;color:var(--gold);padding-left:0.5rem;}

/* ===== About Page ===== */
.about-hero{
  min-height:50vh;
  padding:3rem 4rem;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(160deg,#1C1C1C 0%,#2C2520 50%,#1C1C1C 100%);
  position:relative;
  overflow:hidden;
}
.about-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center, rgba(184,149,90,0.06) 0%, transparent 70%);
  pointer-events:none;
}
.about-hero-content{
  position:relative;
  z-index:2;
  max-width:820px;
  padding:0 2rem;
}
.about-eyebrow{
  font-size:11px;
  letter-spacing:0.4em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:2rem;
}
.about-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,5vw,68px);
  font-weight:300;
  line-height:1.15;
  color:white;
  margin-bottom:1.5rem;
}
.about-hero-sub{
  font-size:14px;
  line-height:1.95;
  color:rgba(255,255,255,0.55);
  max-width:580px;
  margin:0 auto;
}

.story-section{background:var(--cream);}
.story-layout{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:2rem;
  align-items:center;
}
.story-content{max-width:780px;}
.story-content p{
  font-size:14px;
  line-height:2.1;
  color:var(--warm-gray);
  margin-bottom:1.5rem;
}
.story-image{
  flex-shrink:0;
}
.story-image img{
  width:460px;
  max-width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
}

.values-section{background:var(--charcoal);}
.values-section .label{color:var(--gold-light);}
.values-section .label::before{background:var(--gold-light);}
.values-section h2{color:var(--off-white);}
.values-section h2 em{color:var(--gold);}
.values-section .section-intro{color:rgba(255,255,255,0.4);}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.value-card{
  border:0.5px solid rgba(184,149,90,0.15);
  padding:2.75rem 2rem;
  transition:border-color 0.3s,background 0.3s;
}
.value-card:hover{border-color:var(--gold);background:rgba(184,149,90,0.04);}
.value-card-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  margin-bottom:1.5rem;
}
.value-deco{width:28px;height:0.5px;background:var(--gold);margin-bottom:1.5rem;}
.value-title{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;
  font-weight:400;
  color:var(--off-white);
  margin-bottom:0.75rem;
}
.value-desc{
  font-size:12px;
  line-height:1.7;
  color:rgba(255,255,255,0.4);
}

.source-section{background:var(--off-white);}
.source-content{max-width:780px;}
.source-content p{
  font-size:14px;
  line-height:2.1;
  color:var(--warm-gray);
  margin-bottom:1.5rem;
}

.about-stats-cta{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.about-stats-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
  pointer-events:none;
}
.about-stats-cta > *{position:relative;z-index:2;}

.stats-section{text-align:center;}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
}
.stat-number{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,4.5vw,60px);
  font-weight:300;
  color:var(--gold);
  display:block;
  line-height:1.1;
  margin-bottom:0.6rem;
}
.stat-label{
  font-size:10px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.4);
}

.about-cta{
  text-align:center;
  padding:7rem 4rem;
}
.about-cta h2{color:var(--off-white);margin-bottom:0.75rem;}
.about-cta h2 em{color:var(--gold);}
.about-cta .cta-sub{
  font-size:14px;
  color:rgba(255,255,255,0.5);
  margin-bottom:2.5rem;
}
.about-cta .cta-row{justify-content:center;}

/* ===== Process Page ===== */
.process-hero{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(160deg,#1C1C1C 0%,#2C2520 50%,#1C1C1C 100%);
  position:relative;
  overflow:hidden;
}
.process-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center, rgba(184,149,90,0.06) 0%, transparent 70%);
  pointer-events:none;
}
.process-hero-content{
  position:relative;z-index:2;
  max-width:780px;padding:0 2rem;
}
.process-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,5vw,68px);
  font-weight:300;
  line-height:1.15;
  color:white;
  margin-bottom:1.5rem;
}
.process-hero-sub{
  font-size:14px;line-height:1.95;
  color:rgba(255,255,255,0.55);
  max-width:540px;margin:0 auto;
}

.steps-section{background:var(--charcoal);}
.steps-section .label{color:var(--gold-light);}
.steps-section .label::before{background:var(--gold-light);}
.steps-section h2{color:var(--off-white);}
.steps-section h2 em{color:var(--gold);}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1.25rem;
}
.step-card{
  text-align:center;
  padding:2.5rem 1.25rem;
  border:0.5px solid rgba(184,149,90,0.15);
  transition:border-color 0.3s;
}
.step-card:hover{border-color:var(--gold);}
.step-number{
  font-family:'Cormorant Garamond',serif;
  font-size:30px;font-weight:300;
  color:var(--gold);
  display:block;margin-bottom:1rem;
}
.step-title{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;font-weight:400;
  color:var(--off-white);margin-bottom:0.65rem;
}
.step-desc{
  font-size:12px;line-height:1.7;
  color:rgba(255,255,255,0.4);
}

.why-section{background:var(--cream);}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.why-item{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.5rem 0;
  border-bottom:0.5px solid rgba(184,149,90,0.15);
}
.why-marker{color:var(--gold);font-size:14px;margin-top:3px;flex-shrink:0;}
.why-title{
  font-family:'Cormorant Garamond',serif;
  font-size:17px;font-weight:400;
  color:var(--charcoal);margin-bottom:0.3rem;
}
.why-desc{font-size:12px;line-height:1.7;color:var(--warm-gray);}

.qc-section{background:var(--off-white);}
.qc-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.qc-card{
  border:0.5px solid rgba(184,149,90,0.15);
  padding:2.5rem 1.75rem;
  text-align:center;
  transition:border-color 0.3s;
}
.qc-card:hover{border-color:var(--gold);}
.qc-icon{font-size:22px;color:var(--gold);margin-bottom:1rem;display:block;}
.qc-title{
  font-family:'Cormorant Garamond',serif;
  font-size:17px;font-weight:400;
  color:var(--charcoal);margin-bottom:0.5rem;
}
.qc-desc{font-size:12px;line-height:1.7;color:var(--muted);}

.process-cta{
  text-align:center;padding:7rem 4rem;
}
.process-cta h2{color:var(--off-white);margin-bottom:0.75rem;}
.process-cta .cta-sub{
  font-size:14px;color:rgba(255,255,255,0.5);
  margin-bottom:2.5rem;
}
.process-cta .cta-row{justify-content:center;}

/* ===== Showroom / Contact Page ===== */
.showroom-hero{
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(160deg,#1C1C1C 0%,#2C2520 50%,#1C1C1C 100%);
  position:relative;
  overflow:hidden;
}
.showroom-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center, rgba(184,149,90,0.06) 0%, transparent 70%);
  pointer-events:none;
}
.showroom-hero-content{
  position:relative;z-index:2;
  max-width:720px;padding:0 2rem;
}
.showroom-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,5vw,64px);
  font-weight:300;
  line-height:1.15;
  color:white;
  margin-bottom:1.25rem;
}
.showroom-hero-sub{
  font-size:14px;line-height:1.95;
  color:rgba(255,255,255,0.55);
  max-width:500px;margin:0 auto;
}

/* Bottom-border form */
.form-line-group{margin-bottom:1.75rem;}
.form-line-group label{
  display:block;
  font-size:10px;letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:0.5rem;
}
.form-line-group input,
.form-line-group textarea,
.form-line-group select{
  width:100%;
  background:transparent;
  border:none;
  border-bottom:0.5px solid rgba(184,149,90,0.25);
  padding:0.7rem 0;
  font-family:'Jost',sans-serif;
  font-size:14px;font-weight:300;
  color:var(--charcoal);
  outline:none;
  transition:border-color 0.3s;
}
.form-line-group input:focus,
.form-line-group textarea:focus,
.form-line-group select:focus{
  border-bottom-color:var(--gold);
}
.form-line-group textarea{min-height:80px;resize:vertical;}
.form-line-group select{cursor:pointer;}

.contact-section{background:var(--off-white);}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:start;
}
.contact-details{padding-top:0;}
.contact-details-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:400;
  color:var(--charcoal);
  margin-bottom:1.75rem;
}
.contact-method{
  margin-bottom:1.5rem;
  padding-bottom:1.5rem;
  border-bottom:0.5px solid rgba(184,149,90,0.12);
}
.contact-method:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0;}
.contact-method-label{
  font-size:10px;letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:0.25rem;
}
.contact-method-value{font-size:14px;color:var(--charcoal);}

.location-section{background:var(--cream);}
.location-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
}
.location-info-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:400;
  color:var(--charcoal);
  margin-bottom:1rem;
}
.location-address{font-size:13px;line-height:1.8;color:var(--warm-gray);margin-bottom:1rem;}
.location-note{font-size:12px;line-height:1.7;color:var(--muted);font-style:italic;}
.location-map{
  background:#2C2520;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0;
  overflow: hidden;
}
.location-map iframe{
  width:100%;
  height:100%;
  min-height:520px;
  border:0;
}
.location-map span{
  font-size:10px;letter-spacing:0.25em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.25);
}

.faq-section{background:var(--off-white);}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.faq-item{
  border:0.5px solid rgba(184,149,90,0.15);
  padding:2rem 1.75rem;
  transition:border-color 0.3s;
}
.faq-item:hover{border-color:var(--gold);}
.faq-q{
  font-family:'Cormorant Garamond',serif;
  font-size:17px;font-weight:400;
  color:var(--charcoal);
  margin-bottom:0.4rem;
}
.faq-a{font-size:12px;line-height:1.7;color:var(--muted);}

.instagram-section{background:var(--charcoal);text-align:center;}
.instagram-section .label{color:var(--gold-light);}
.instagram-section .label::before{background:var(--gold-light);}
.instagram-section h2{color:var(--off-white);}
.instagram-section h2 em{color:var(--gold);}
.instagram-section .section-intro{color:rgba(255,255,255,0.4);}
.insta-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:3rem;
}
.insta-cell{
  background:rgba(255,255,255,0.04);
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:rgba(184,149,90,0.12);
  border: 0.5px solid rgba(184,149,90,0.08);
  transition: all 0.3s;
}
.insta-cell:hover{
  background:rgba(255,255,255,0.08);
  border-color: rgba(184,149,90,0.2);
}
.insta-follow{
  margin-top:2rem;
  font-size:12px;
  letter-spacing:0.15em;
  color:rgba(255,255,255,0.3);
}
.insta-follow a{color:var(--gold-light);border-bottom:0.5px solid rgba(212,180,131,0.3);padding-bottom:2px;}

/* ===== Collection Pages ===== */
.collection-hero{
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(160deg,#1C1C1C 0%,#252018 50%,#1C1C1C 100%);
  position:relative;
  overflow:hidden;
}
.collection-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center, rgba(184,149,90,0.05) 0%, transparent 70%);
  pointer-events:none;
}
.collection-hero-content{
  position:relative;z-index:2;
  max-width:720px;padding:0 2rem;
}
.collection-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,5vw,64px);
  font-weight:300;
  line-height:1.15;
  color:white;
  margin-bottom:1.25rem;
}
.collection-hero-sub{
  font-size:14px;line-height:1.95;
  color:rgba(255,255,255,0.55);
  max-width:500px;margin:0 auto;
}

.overview-section{background:var(--cream);}
.overview-text{
  font-size:14px;line-height:2.1;
  color:var(--warm-gray);
  max-width:680px;
  margin-bottom:2.5rem;
}
.overview-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.overview-item{
  border-top:0.5px solid rgba(184,149,90,0.25);
  padding-top:1.25rem;
}
.overview-item-title{
  font-family:'Cormorant Garamond',serif;
  font-size:17px;font-weight:400;
  color:var(--charcoal);
  margin-bottom:0.3rem;
}
.overview-item-desc{
  font-size:12px;line-height:1.7;
  color:var(--muted);
}

.subnav-wrapper{
  position:sticky;
  top:var(--nav-height, 80px);
  z-index:999;
}
.subnav{
  background:rgba(20,20,20,0.96);
  padding:0.6rem 1rem;
  display:flex;
  gap:2.5rem;
  justify-content:center;
  align-items:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.35);
  transition:background 0.3s;
}
.subnav a{
  font-size:10px;letter-spacing:0.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.5);
  text-decoration:none;
  transition:color 0.3s;
  white-space:nowrap;
}
.subnav a:hover{color:var(--gold-light);}

.product-section{padding:7rem 4rem;}
.product-header{margin-bottom:3rem;}
.product-label{
  font-size:10px;letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:0.75rem;
}
.product-header h3{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(28px,2.8vw,38px);
  font-weight:300;
  line-height:1.15;
  color:var(--charcoal);
  margin-bottom:0.5rem;
}
.product-header h3 em{font-style:italic;color:var(--gold);}
.product-sub{
  font-size:13px;line-height:1.7;
  color:var(--muted);
  max-width:400px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.product-card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
}
.product-img{
  width:100%;
  aspect-ratio:4/3;
  background:linear-gradient(160deg,#252018 0%,#332A20 60%,#1E1A14 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform 0.6s ease;
}
.product-card:hover .product-img{transform:scale(1.02);}
.product-img span{
  font-size:9px;letter-spacing:0.25em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.15);
}
.product-info{
  padding:1.25rem 0 2rem;
  border-bottom:0.5px solid rgba(184,149,90,0.15);
}
.product-info-name{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;font-weight:400;
  color:var(--charcoal);
  margin-bottom:0.3rem;
}
.product-info-desc{
  font-size:12px;line-height:1.7;
  color:var(--muted);
  margin-bottom:0.75rem;
}
.product-info-link{
  font-size:9px;letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  border-bottom:0.5px solid rgba(184,149,90,0.3);
  padding-bottom:2px;
  transition:color 0.3s;
}
.product-info-link:hover{color:var(--charcoal);}

.sell-section{background:var(--charcoal);}
.sell-section .label{color:var(--gold-light);}
.sell-section .label::before{background:var(--gold-light);}
.sell-section h2{color:var(--off-white);}
.sell-section h2 em{color:var(--gold);}
.sell-section .section-intro{color:rgba(255,255,255,0.4);}
.sell-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.sell-card{
  border:0.5px solid rgba(184,149,90,0.15);
  padding:2.5rem 2rem;
  text-align:center;
  transition:border-color 0.3s;
}
.sell-card:hover{border-color:var(--gold);}
.sell-deco{width:28px;height:0.5px;background:var(--gold);margin:0 auto 1.25rem;}
.sell-title{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;font-weight:400;
  color:var(--off-white);
  margin-bottom:0.5rem;
}
.sell-desc{
  font-size:12px;line-height:1.7;
  color:rgba(255,255,255,0.4);
}

.collection-cta{
  background:linear-gradient(160deg,#1C1C1C 0%,#2C2520 50%,#1C1C1C 100%);
  text-align:center;padding:7rem 4rem;
}
.collection-cta h2{color:var(--off-white);margin-bottom:0.75rem;}
.collection-cta .cta-sub{
  font-size:14px;color:rgba(255,255,255,0.5);
  margin-bottom:2.5rem;
}
.collection-cta .cta-row{justify-content:center;}

@media(max-width:768px){
  nav{padding:1rem 1.25rem;}
  .nav-links{display:none;}
  .nav-right{display:none;}
  .hamburger{display:flex;}
  section{padding:4rem 1.5rem;}
  .hero-content{padding:0 1.5rem;max-width:100%;}
  .band{padding:1rem 1.5rem;}
  .band-inner{gap:2rem;}
  h1{font-size:clamp(40px,9vw,56px);}
  h2{font-size:clamp(32px,7vw,44px);}
  .sig-grid,.spaces-grid,.col-grid,.materials-inner,.about-inner,.showroom-inner,.footer-grid{grid-template-columns:1fr;gap:2rem;}
  .sig-card:first-child{grid-column:auto;grid-row:auto;}
  .sig-card:first-child .sig-bg{min-height:420px;}
  footer{padding:3rem 1.5rem;}
  .footer-bottom{flex-direction:column;gap:0.75rem;text-align:center;}
  .mobile-nav-group{margin-bottom:2rem;}
  .mobile-nav-title{font-family:'Jost',sans-serif;font-size:13px;font-weight:600;letter-spacing:0.15em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;display:block;}
  .mobile-nav-group a{display:block;font-family:'Jost',sans-serif;font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:var(--warm-gray);text-decoration:none;margin-bottom:0.75rem;transition:color 0.3s;}
  .mobile-nav-group a:hover{color:var(--gold);}
  .about-hero{min-height:45vh;padding:3rem 1.5rem;}
  .values-grid,.stats-grid{grid-template-columns:1fr;gap:1.5rem;}
  .story-layout{grid-template-columns:1fr;}
  .about-cta{padding:4rem 1.5rem;}
  .process-hero{min-height:60vh;}
  .steps-grid,.qc-grid{grid-template-columns:1fr;gap:1rem;}
  .why-grid{grid-template-columns:1fr;gap:0;}
  .process-cta{padding:4rem 1.5rem;}
  .showroom-hero{min-height:60vh;}
  .contact-grid,.location-inner,.faq-grid,.insta-grid{grid-template-columns:1fr;gap:2rem;}
  .collection-hero{min-height:60vh;}
  .subnav{overflow-x:auto;-webkit-overflow-scrolling:touch;white-space:nowrap;gap:0;justify-content:flex-start;padding:0.6rem 0;}
  .subnav::-webkit-scrollbar{display:none;}
  .subnav{-ms-overflow-style:none;scrollbar-width:none;}
  .subnav a{display:inline-block;padding:0.6rem 1rem;}
  .product-section{padding:4rem 1.5rem;}
  .product-grid,.overview-grid,.sell-grid{grid-template-columns:1fr;gap:1.5rem;}
  .collection-cta{padding:4rem 1.5rem;}
}
