/* =========================================================
   HRISHIIKESH — Sartorial Menswear
   Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root{
  /* ---- Color tokens ---- */
  /* Original "royal purple" palette — commented out, kept for easy revert
  --ivory:        #F4EEE3;
  --ivory-deep:   #ECE3D2;
  --ink:          #17130F;
  --ink-soft:     #221C17;
  --plum:         #3B1330;
  --plum-deep:    #26091E;
  --plum-mid:     #5A2049;
  --gold:         #B68A4E;
  --gold-light:   #D9B879;
  --gold-dim:     #8C6A3C;
  --line-on-light: rgba(59,19,48,0.16);
  --line-on-dark:  rgba(217,184,121,0.22);
  --text-on-light: #221C17;
  --text-muted-light: #6b5f52;
  --text-on-dark:  #EFE7D8;
  --text-muted-dark: #b9ac97;
  */

  /* Hand-crafted / bespoke atelier palette — warm linen + aged brass, with dark royal purple
     accents (buttons, wax seal, footer, stat band) instead of full dark sections */
  --ivory:        #F2EAD9;
  --ivory-deep:   #E6D8BE;
  --ink:          #201810;
  --ink-soft:     #2C2116;
  --plum:         #3B1330;
  --plum-deep:    #26091E;
  --plum-mid:     #5A2049;
  --gold:         #A9773F;
  --gold-light:   #CE9F62;
  --gold-dim:     #7C5A34;
  --line-on-light: rgba(59,19,48,0.16);
  --line-on-dark:  rgba(206,159,98,0.22);
  --text-on-light: #2C2116;
  --text-muted-light: #6f6150;
  --text-on-dark:  #EEE3D0;
  --text-muted-dark: #bfab92;

  /* ---- Type ---- */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-pad: clamp(64px, 10vw, 140px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--ivory);
  color: var(--text-on-light);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

::selection{ background: var(--plum); color: var(--ivory); }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section{ padding: var(--section-pad) 0; position: relative; }
/* Kept for the two remaining dark surfaces (stat band, footer) — no longer used on full sections */
.section--dark{ background: var(--ink); color: var(--text-on-dark); }
.section--plum{ background: var(--plum); color: var(--text-on-dark); }
.section--ivory-deep{ background: var(--ivory-deep); }

/* ---- Eyebrow / labels ---- */
.eyebrow{
  display:flex;
  align-items:center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dim);
  margin-bottom: 22px;
}
.section--dark .eyebrow, .section--plum .eyebrow{ color: var(--gold-light); }

.eyebrow::before{
  content:"";
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
  box-shadow: 0 0 0 1px var(--line-on-light);
}
.section--dark .eyebrow::before, .section--plum .eyebrow::before{
  box-shadow: 0 0 0 1px var(--line-on-dark);
}

/* diamond divider used between sections */
.diamond-rule{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin: 0 auto;
}
.diamond-rule::before, .diamond-rule::after{
  content:"";
  height:1px;
  width: clamp(40px, 12vw, 160px);
  background: var(--line-on-light);
}
.section--dark .diamond-rule::before, .section--dark .diamond-rule::after,
.section--plum .diamond-rule::before, .section--plum .diamond-rule::after{
  background: var(--line-on-dark);
}
.diamond-rule span{
  width: 9px; height:9px;
  background: var(--gold);
  transform: rotate(45deg);
  flex:none;
}

/* ---- Headline system ---- */
.h-xl{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.h-lg{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
}
.h-md{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.25;
}
.italic-accent{ font-style: italic; color: var(--gold); }

.lede{
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted-light);
  max-width: 46ch;
  font-weight: 300;
}
.section--dark .lede, .section--plum .lede{ color: var(--text-muted-dark); }

.section-head{
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .lede{ margin-left:auto; margin-right:auto; }

/* ---- Buttons ---- */
.btn{
  position: relative;
  display: inline-flex;
  align-items:center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .35s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--plum);
}
.btn-primary:hover{ background: var(--plum-deep); border-color: var(--plum-deep); }
.btn-primary .btn-mark{
  width:6px; height:6px; background: var(--gold-light); transform: rotate(45deg); transition: transform .35s ease;
}
.btn-primary:hover .btn-mark{ transform: rotate(225deg); }

.btn-outline{
  background: transparent;
  color: var(--text-on-light);
  border-color: var(--line-on-light);
}
.btn-outline:hover{ border-color: var(--plum); color: var(--plum); }
.section--dark .btn-outline, .section--plum .btn-outline{
  color: var(--text-on-dark);
  border-color: var(--line-on-dark);
}
.section--dark .btn-outline:hover, .section--plum .btn-outline:hover{
  border-color: var(--gold-light); color: var(--gold-light);
}

.btn-gold{
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover{ background: var(--gold-light); border-color: var(--gold-light); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(242,234,217,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; }
.site-header.is-scrolled{
  background: rgba(242,234,217,0.98);
  padding: 12px 0;
  border-bottom-color: var(--line-on-light);
  box-shadow: 0 10px 30px rgba(44,33,22,0.08);
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 40px; width:auto; transition: height .35s ease; }
.is-scrolled .brand img{ height: 32px; }
.brand-word{
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text-on-light);
}
.brand-sub{
  display:block;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: clamp(20px, 2.4vw, 42px);
}
.nav-links a{
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-light);
  opacity: .78;
  transition: opacity .25s ease, color .25s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.is-active{ opacity: 1; color: var(--plum); }
.nav-cta{
  padding: 12px 24px;
  font-size: 11.5px;
}

.nav-toggle{
  display:none;
  background:none; border:none;
  width: 30px; height: 22px;
  position: relative;
  z-index: 110;
}
.nav-toggle span{
  position:absolute; left:0; right:0; height:1.5px; background: var(--text-on-light);
  transition: all .3s ease;
}
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:50%; margin-top:-0.75px; }
.nav-toggle span:nth-child(3){ bottom:0; }
.nav-toggle.is-open span:nth-child(1){ top:50%; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ bottom:50%; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  background: var(--ivory);
  color: var(--text-on-light);
  padding-top: 120px;
  padding-bottom: 60px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(169,119,63,0.12), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(122,58,31,0.08), transparent 55%);
  pointer-events:none;
}
.hero-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items:center;
}
.hero-copy{ position:relative; z-index:2; }
.hero-copy .h-xl{ margin: 8px 0 26px; }
.hero-copy .lede{ max-width: 44ch; margin-bottom: 40px; color: var(--text-muted-light); }
.hero-ctas{ display:flex; align-items:center; gap: 28px; flex-wrap:wrap; }
.hero-scroll-hint{
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.hero-scroll-hint .line{ width: 30px; height:1px; background: var(--gold); display:inline-block; }

.hero-visual{ position:relative; }
.tape-frame{
  position: relative;
  padding: 18px;
  background: linear-gradient(160deg, #FBF6EC, #F0E6D2);
  border: 1px solid var(--line-on-light);
  box-shadow: 0 30px 60px rgba(44,33,22,0.1);
}
.tape-frame::before, .tape-frame::after{
  content:"";
  position:absolute;
  width: 74px; height: 26px;
  background: rgba(206,159,98,0.22);
  border: 1px solid rgba(206,159,98,0.32);
  top: -13px;
}
.tape-frame::before{ left: 30px; transform: rotate(-6deg); }
.tape-frame::after{ right: 30px; transform: rotate(5deg); }

.photo-placeholder{
  position:relative;
  aspect-ratio: 4/5;
  width:100%;
  background:
    repeating-linear-gradient(135deg, rgba(122,58,31,0.05) 0 2px, transparent 2px 26px),
    linear-gradient(200deg,#e6dcc7,#d8caae 70%);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border: 1px dashed var(--line-on-light);
}
.photo-placeholder .ph-tag{
  padding: 0 26px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  line-height:1.7;
}
.photo-placeholder .ph-tag b{ display:block; color: var(--gold-dim); font-size:10px; letter-spacing:0.24em; text-transform:uppercase; margin-bottom:8px;}
.hero-caption{
  position:absolute; right: 4px; bottom: -34px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted-light);
}
.hero-seal{
  position:absolute; left:-18px; bottom:-28px;
  width: 76px; height:76px;
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, var(--plum-mid), var(--plum-deep) 70%);
  display:flex; align-items:center; justify-content:center;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 10px 26px rgba(44,33,22,0.28);
}
.hero-seal svg{ width: 34px; height:34px; }

/* ---- Feature badges row (hand-crafted markers under hero) ---- */
.feature-badges{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px,3vw,32px);
  margin-top: clamp(50px,8vw,90px);
  padding-top: clamp(30px,4vw,44px);
  border-top: 1px solid var(--line-on-light);
}
.feature-badge{ display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.feature-badge svg{ width:28px; height:28px; color: var(--plum); flex:none; }
.feature-badge span{ font-size: 11px; letter-spacing:0.1em; text-transform:uppercase; color: var(--text-muted-light); line-height:1.5; }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee{
  background: var(--plum);
  color: var(--gold-light);
  overflow:hidden;
  white-space:nowrap;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.marquee-track{
  display:inline-flex;
  animation: marquee 32s linear infinite;
  padding: 16px 0;
}
.marquee-track span{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 0 2.2rem;
  opacity: 0.9;
}
.marquee-track span::after{ content:"◆"; margin-left: 2.2rem; font-size: 0.55rem; vertical-align:middle; color: var(--gold); }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{ }
.about-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items:start;
}
.about-media{ position: sticky; top: 120px; }
.about-media .photo-placeholder{ aspect-ratio: 3/4; border-color: var(--line-on-light); background:
  repeating-linear-gradient(135deg, rgba(59,19,48,0.05) 0 2px, transparent 2px 26px),
  linear-gradient(200deg,#e6dcc7,#d8caae 70%);
}
.about-media .ph-tag{ color: var(--text-muted-light); }
.about-media .ph-tag b{ color: var(--plum); }
.about-copy p{ margin-bottom: 22px; max-width: 56ch; color: var(--text-muted-light); font-weight: 300; font-size: 1.02rem; }
.about-copy p:first-of-type{ font-size: 1.18rem; color: var(--text-on-light); font-weight:400; }
.stat-row{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 46px;
  padding-top: 40px;
  border-top: 1px solid var(--line-on-light);
}
.stat{ }
.stat .num{ font-family: var(--f-display); font-size: clamp(1.8rem,3vw,2.6rem); color: var(--plum); line-height:1; }
.stat .lbl{ font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-light); margin-top:10px; display:block; }

/* ---- Dark stat band (one of only two dark surfaces on the site, besides the footer) ---- */
.stat-band{ background: var(--plum-deep); color: var(--text-on-dark); padding: clamp(40px,6vw,64px) 0; }
.stat-band .stat-row{ border-top:none; margin-top:0; padding-top:0; }
.stat-band .stat .num{ color: var(--gold-light); }
.stat-band .stat .lbl{ color: var(--text-muted-dark); }

/* =========================================================
   PHILOSOPHY (plum band)
   ========================================================= */
.philosophy{ text-align:center; }
.philosophy .section-head{ max-width: 780px; }
.philosophy blockquote{
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 30px;
  color: var(--text-on-light);
}
.philosophy blockquote em{ color: var(--plum); font-style: italic; }

/* =========================================================
   WHAT WE CREATE
   ========================================================= */
.create-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  border: 1px solid var(--line-on-light);
}
.create-card{
  background: var(--ivory);
  padding: 40px 30px;
  display:flex;
  flex-direction:column;
  min-height: 380px;
  transition: background .4s ease;
}
.create-card:hover{ background: var(--ivory-deep); }
.create-num{
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-dim);
  font-size: 1rem;
  margin-bottom: 30px;
}
.create-card h3{
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.create-card p{
  color: var(--text-muted-light);
  font-size: 0.95rem;
  font-weight: 300;
  flex:1;
}
.create-card .tag{
  margin-top: 24px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  display:flex; align-items:center; gap:8px;
}
.create-card .tag::before{ content:""; width:5px;height:5px;background:var(--gold);transform:rotate(45deg); }

/* =========================================================
   BESPOKE JOURNEY
   ========================================================= */
.journey{}
.journey-list{
  display:flex;
  flex-direction: column;
}
.journey-item{
  display:grid;
  grid-template-columns: 110px 1px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: 34px 0;
  border-top: 1px solid var(--line-on-light);
  align-items:start;
}
.journey-list .journey-item:last-child{ border-bottom: 1px solid var(--line-on-light); }
.journey-num{
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-dim);
  line-height: 1;
  font-weight: 400;
}
.journey-item:hover .journey-num{ color: var(--plum); }
.journey-rule{ background: var(--line-on-light); width:1px; height:100%; }
.journey-body h3{
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight:500;
  margin-bottom: 10px;
  color: var(--text-on-light);
}
.journey-body p{
  color: var(--text-muted-light);
  max-width: 60ch;
  font-weight: 300;
  font-size: 0.98rem;
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-on-light);
  border-left: 1px solid var(--line-on-light);
}
.why-item{
  padding: 30px clamp(20px,3vw,40px);
  border-right: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
  display:flex;
  gap: 20px;
  align-items:flex-start;
}
.why-mark{
  flex:none;
  width: 10px; height:10px;
  margin-top: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.why-item h4{
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.why-item p{ color: var(--text-muted-light); font-size: 0.92rem; font-weight:300; }

/* =========================================================
   FABRIC LIBRARY
   ========================================================= */
.fabric-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  gap: 10px;
}
.swatch{
  position: relative;
  overflow:hidden;
  border: 1px solid var(--line-on-light);
  display:flex; align-items:flex-end;
}
.swatch span{
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23,19,15,0.65);
  padding: 8px 10px;
  background: rgba(244,238,227,0.55);
  width:100%;
}
.swatch.big{ grid-column: span 2; grid-row: span 2; }
.swatch.tall{ grid-row: span 2; }

/* generated fabric textures */
.sw1{ background: repeating-linear-gradient(45deg,#2f2a23,#2f2a23 4px,#3a3428 4px,#3a3428 8px); }
.sw2{ background: repeating-linear-gradient(90deg,#5a2049,#5a2049 6px,#4a1a3c 6px,#4a1a3c 12px); }
.sw3{ background: linear-gradient(160deg,#c9bd9d,#a99a72); }
.sw4{ background: repeating-linear-gradient(0deg,#1c1c22,#1c1c22 3px,#26262d 3px,#26262d 6px); }
.sw5{ background: linear-gradient(160deg,#d9d1c0,#bfb59d); }
.sw6{ background: repeating-linear-gradient(60deg,#33231a,#33231a 5px,#412c20 5px,#412c20 10px); }
.sw7{ background: linear-gradient(200deg,#8c6a3c,#6a4d28); }
.sw8{ background: repeating-linear-gradient(120deg,#e7e0cf,#e7e0cf 5px,#d7cdb4 5px,#d7cdb4 10px); }
.sw9{ background: linear-gradient(180deg,#26091e,#3b1330); }
.sw10{ background: repeating-linear-gradient(30deg,#40382c,#40382c 4px,#4d4436 4px,#4d4436 8px); }

.fabric-note{
  margin-top: 34px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap:wrap;
  border-top: 1px solid var(--line-on-light);
  padding-top: 26px;
}
.fabric-note p{ color: var(--text-muted-light); max-width: 50ch; font-size:0.92rem; font-weight:300;}

/* =========================================================
   PRIVATE APPOINTMENTS
   ========================================================= */
.appointments{ }
.appt-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px,6vw,80px);
  align-items:center;
}
.appt-copy .lede{ margin: 22px 0 34px; max-width: 48ch; }
.appt-hours{
  margin-top: 34px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.appt-hours .row{ display:flex; justify-content:space-between; max-width: 320px; font-size: 0.92rem; padding: 10px 0; border-bottom: 1px solid var(--line-on-light); }
.appt-hours .row span:first-child{ color: var(--text-on-light); }
.appt-hours .row span:last-child{ color: var(--text-muted-light); }

.appt-form{
  background: var(--ivory-deep);
  color: var(--text-on-light);
  padding: clamp(28px,4vw,50px);
  position: relative;
}
.appt-form::before{
  content:"";
  position:absolute; top:-1px;left:-1px;right:-1px;bottom:-1px;
  border: 1px solid var(--line-on-light);
  pointer-events:none;
}
.appt-form h3{
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.appt-form > p{ color: var(--text-muted-light); font-size: 0.9rem; margin-bottom: 28px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field{ display:flex; flex-direction:column; gap: 8px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-light); }
.form-field input, .form-field select, .form-field textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-on-light);
  color: var(--text-on-light);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 10px 2px;
  width: 100%;
}
.form-field select option{ background: var(--ivory); }
.form-field textarea{ resize: vertical; min-height: 70px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-bottom-color: var(--plum);
}
.appt-form .btn{ margin-top: 10px; width:100%; justify-content:center; }
.form-hint{ margin-top: 16px; font-size: 11.5px; color: var(--text-muted-light); text-align:center; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{ }
.t-track{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px,4vw,60px);
}
.t-card{ position:relative; padding-top: 34px; }
.t-mark{
  width: 16px; height:16px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 26px;
}
.t-card blockquote{
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight:400;
  line-height: 1.4;
  margin-bottom: 26px;
  color: var(--text-on-light);
}
.t-attr{ font-size: 11.5px; letter-spacing:0.1em; text-transform:uppercase; color: var(--text-muted-light); }
.t-attr b{ color: var(--plum); font-style:normal; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ max-width: 860px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--line-on-light); }
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 26px 0;
  background:none; border:none;
  text-align:left;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--text-on-light);
}
.faq-q .plus{
  flex:none;
  width: 20px; height:20px;
  position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:"";
  position:absolute; background: var(--plum);
  transition: transform .3s ease;
}
.faq-q .plus::before{ top:9px; left:0; width:20px; height:1.5px; }
.faq-q .plus::after{ left:9px; top:0; width:1.5px; height:20px; }
.faq-item.is-open .plus::after{ transform: rotate(90deg); opacity:0; }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .4s ease;
}
.faq-a p{ padding-bottom: 26px; max-width: 66ch; color: var(--text-muted-light); font-weight:300; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{
  text-align:center;
  position:relative;
  background: var(--ivory-deep);
  color: var(--text-on-light);
  overflow:hidden;
}
.final-cta::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(122,58,31,0.14), transparent 60%);
  pointer-events:none;
}
.final-cta .inner{ position:relative; max-width: 720px; margin:0 auto; }
.final-cta .h-lg{ margin: 6px 0 24px; }
.final-cta .lede{ margin: 0 auto 44px; }
.final-cta .btns{ display:flex; align-items:center; justify-content:center; gap: 24px; flex-wrap:wrap; }

/* =========================================================
   MAP / VISIT
   ========================================================= */
.visit-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-on-light);
}
.visit-info{ padding: clamp(30px,4vw,54px); }
.visit-info .detail{ margin-bottom: 24px; }
.visit-info .detail .lbl{ font-size:10.5px; letter-spacing:0.16em; text-transform:uppercase; color: var(--gold-dim); margin-bottom:8px; display:block; }
.visit-info .detail a, .visit-info .detail p{ font-size: 1.02rem; }
.visit-map{ min-height: 380px; position:relative; filter: grayscale(0.4) contrast(1.05); }
.visit-map iframe{ width:100%; height:100%; min-height:380px; border:0; display:block; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--plum-deep);
  color: var(--text-on-dark);
  padding: 70px 0 30px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(30px,4vw,50px);
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand img{ height: 42px; margin-bottom: 18px; }
.footer-tagline{ font-family: var(--f-display); font-style: italic; font-size: 1.15rem; color: var(--gold-light); max-width: 30ch; }
.footer-col h5{
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 20px;
}
.footer-col ul{ display:flex; flex-direction:column; gap: 13px; }
.footer-col a, .footer-col p{ font-size: 0.92rem; color: var(--text-muted-dark); }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 11.5px;
  color: var(--text-muted-dark);
  letter-spacing: 0.03em;
}
.footer-bottom a{ color: var(--text-muted-dark); }
.footer-bottom a:hover{ color: var(--gold-light); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height:56px;
  background: var(--plum);
  border: 1px solid var(--gold-dim);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform .3s ease, background .3s ease;
}
.wa-float:hover{ transform: translateY(-3px); background: var(--plum-deep); }
.wa-float svg{ width: 24px; height:24px; }

/* =========================================================
   HAND-DRAWN LINE-ART ILLUSTRATIONS
   ========================================================= */
.sketch-illo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: clamp(20px,4vw,40px);
  background: var(--ivory-deep);
  border: 1px solid var(--line-on-light);
}
.sketch-illo svg{
  width: 100%;
  max-width: 420px;
  height:auto;
  color: var(--plum);
}
.sketch-illo svg *{ vector-effect: non-scaling-stroke; }

/* =========================================================
   CATEGORY CARDS (collections.html)
   ========================================================= */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  border: 1px solid var(--line-on-light);
}
.cat-card{
  background: var(--ivory);
  display:flex;
  flex-direction:column;
  transition: background .35s ease;
}
.cat-card:hover{ background: var(--ivory-deep); }
.cat-card .photo-placeholder{ aspect-ratio: 3/4; border:none; border-bottom: 1px solid var(--line-on-light); }
.cat-card-body{ padding: 24px 26px 30px; }
.cat-card h3{ font-family: var(--f-display); font-size: 1.4rem; font-weight:500; margin-bottom: 6px; }
.cat-card p{ color: var(--text-muted-light); font-size: 0.9rem; font-weight:300; margin-bottom: 16px; }
.cat-card .tag{ font-size: 10.5px; letter-spacing:0.16em; text-transform:uppercase; color: var(--plum); display:flex; align-items:center; gap:8px; }
.cat-card .tag::before{ content:""; width:5px;height:5px;background:var(--gold);transform:rotate(45deg); }

/* =========================================================
   SHOP (shop.html)
   ========================================================= */
.shop-layout{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(30px,4vw,56px);
  align-items:start;
}
.shop-sidebar{ position:sticky; top: 120px; }
.filter-group{ padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line-on-light); }
.filter-group h5{ font-size: 11px; letter-spacing:0.16em; text-transform:uppercase; color: var(--text-on-light); margin-bottom: 16px; }
.filter-option{ display:flex; align-items:center; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: var(--text-muted-light); cursor:pointer; }
.filter-option input{ accent-color: var(--plum); width:14px; height:14px; }
.filter-clear{ font-size: 11px; letter-spacing:0.1em; text-transform:uppercase; color: var(--plum); background:none; border:none; cursor:pointer; padding:0; }

.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 30px; gap: 16px; flex-wrap:wrap; }
.shop-toolbar .count{ font-size: 0.85rem; color: var(--text-muted-light); }

.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px,2.4vw,30px);
}
.product-card{ display:block; }
.product-card .photo-placeholder{ aspect-ratio: 4/5; margin-bottom: 16px; }
.product-card h4{ font-family: var(--f-display); font-size: 1.05rem; font-weight:500; margin-bottom: 6px; }
.product-card .price{ font-size: 0.92rem; color: var(--plum); }
.no-results{ padding: 60px 0; text-align:center; color: var(--text-muted-light); }

/* =========================================================
   PRODUCT DETAIL (product.html)
   ========================================================= */
.product-detail{
  display:grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: clamp(20px,3vw,40px);
  align-items:start;
}
.product-thumbs{ display:flex; flex-direction:column; gap: 12px; }
.product-thumbs .photo-placeholder{ aspect-ratio: 1/1; cursor:pointer; border-color: var(--line-on-light); }
.product-thumbs .photo-placeholder.is-active{ border-color: var(--plum); border-style: solid; }
.product-gallery .photo-placeholder{ aspect-ratio: 4/5; }
.product-info h1{ font-family: var(--f-display); font-size: clamp(1.7rem,2.6vw,2.2rem); font-weight:500; margin-bottom: 10px; }
.product-info .price{ font-size: 1.2rem; color: var(--plum); margin-bottom: 20px; display:block; }
.product-info > p.desc{ color: var(--text-muted-light); font-weight:300; margin-bottom: 28px; max-width: 46ch; }
.spec-row{ display:flex; justify-content:space-between; padding: 12px 0; border-bottom: 1px solid var(--line-on-light); font-size: 0.9rem; }
.spec-row span:first-child{ color: var(--text-muted-light); text-transform:uppercase; letter-spacing:0.08em; font-size:0.78rem; }
.spec-row span:last-child{ color: var(--text-on-light); }
.size-row{ display:flex; gap: 10px; flex-wrap:wrap; margin: 24px 0; }
.size-swatch{ width:44px; height:44px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line-on-light); font-size:0.85rem; background:none; cursor:pointer; }
.size-swatch.is-selected{ border-color: var(--plum); color: var(--plum); }
.qty-stepper{ display:inline-flex; align-items:center; border: 1px solid var(--line-on-light); margin-bottom: 26px; }
.qty-stepper button{ width:38px; height:38px; background:none; border:none; font-size:1rem; }
.qty-stepper span{ width:40px; text-align:center; font-size:0.95rem; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-stagger > *{ opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal-stagger.is-visible > *{ opacity:1; transform:none; }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .14s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .23s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .41s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: .5s; }
.reveal-stagger.is-visible > *:nth-child(7){ transition-delay: .59s; }
.reveal-stagger.is-visible > *:nth-child(8){ transition-delay: .68s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .about-grid, .appt-grid{ grid-template-columns: 1fr; }
  .about-media{ position:static; }
  .create-grid{ grid-template-columns: repeat(2,1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .t-track{ grid-template-columns: 1fr; gap: 46px; }
  .visit-grid{ grid-template-columns: 1fr; }
  .fabric-grid{ grid-template-columns: repeat(4,1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .shop-layout{ grid-template-columns: 1fr; }
  .shop-sidebar{ position:static; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .product-detail{ grid-template-columns: 80px 1fr; }
  .product-detail .product-info{ grid-column: 1 / -1; }
}

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset:0;
    background: var(--ivory);
    flex-direction: column;
    justify-content:center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 105;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ font-size: 15px; }
  .nav-toggle{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width: 340px; margin: 0 auto; }
  .hero{ padding-top: 110px; text-align:left; }
  .stat-row{ grid-template-columns: repeat(2,1fr); row-gap: 30px; }
  .create-grid{ grid-template-columns: 1fr; }
  .journey-item{ grid-template-columns: 60px 1px 1fr; }
  .fabric-grid{ grid-template-columns: repeat(3,1fr); grid-auto-rows: 76px; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 40px; }
  .cat-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr 1fr; }
  .product-detail{ grid-template-columns: 1fr; }
  .product-thumbs{ flex-direction:row; flex-wrap:wrap; }
  .product-thumbs .photo-placeholder{ width:70px; aspect-ratio:1/1; }
  .feature-badges{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .product-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .hero-ctas{ flex-direction:column; align-items:flex-start; gap:20px; }
  .btn{ width:100%; justify-content:center; }
  .hero-ctas .btn{ width:auto; }
  .final-cta .btns{ flex-direction:column; width:100%; }
  .final-cta .btns .btn{ width:100%; }
}
