@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;1,300;1,400&family=Raleway:wght@200;300;400;500&display=swap');

:root {
  --ivory: #fdfaf5;
  --ink: #1c1917;
  --stone: #78716c;
  --linen: #e8e2d9;
  --terracotta: #b5714e;
  --white: #ffffff;

  --navy: var(--ink);
  --navy-light: var(--ink);
  --terracotta-pale: #fcf4f0;
  --cream: var(--ivory);
  --text: var(--ink);
  --muted: var(--stone);
  --line: var(--linen);
  --soft: var(--linen);
  --green: var(--ink);
  
  /* Advanced Shadows & Radius */
  --shadow: 0 12px 40px rgba(26, 47, 36, 0.055), 0 2px 10px rgba(26, 47, 36, 0.025);
  --shadow-hover: 0 24px 60px rgba(26, 47, 36, 0.10), 0 4px 18px rgba(26, 47, 36, 0.035);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  
  /* Premium Fonts */
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Raleway', system-ui, -apple-system, sans-serif;
  
  /* Smooth Decelerating Transition */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Styles & Premium Defaults
   ========================================================================== */
* { 
  box-sizing: border-box; 
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

html { 
  scroll-behavior: smooth; 
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: var(--transition);
}

button, input, select, textarea { 
  font: inherit; 
}

button { 
  cursor: pointer; 
  border: none;
  background: none;
  transition: var(--transition);
}

svg { 
  width: 20px; 
  height: 20px; 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.6; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
  vertical-align: middle;
}

.container { 
  width: min(1280px, calc(100% - 48px)); 
  margin: 0 auto; 
}

.skip-link { 
  position: absolute; 
  left: -999px; 
  top: 10px; 
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 300;
}
.skip-link:focus { 
  left: 24px; 
}

/* ==========================================================================
   Ticker & Sticky Header
   ========================================================================== */
.ticker { 
  overflow: hidden; 
  background: var(--navy); 
  color: var(--white); 
  font-size: 0.72rem; 
  font-weight: 600; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker div { 
  display: flex; 
  gap: 64px; 
  width: max-content; 
  padding: 10px 0; 
  animation: ticker 32s linear infinite; 
}
.ticker span {
  display: inline-flex;
  align-items: center;
}
.ticker span::after {
  content: '•';
  margin-left: 64px;
  opacity: 0.4;
}

.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 80; 
  background: rgba(250, 248, 245, 0.82); 
  border-bottom: 1px solid var(--line); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.015);
  transition: var(--transition);
}
.nav { 
  min-height: 80px; 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  gap: 40px; 
}
.logo {
  display: flex;
  align-items: center;
  overflow: visible;
}
.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.logo:hover img {
  transform: scale(1.02);
}

.nav-links { 
  display: flex; 
  justify-content: center; 
  gap: 32px; 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  font-weight: 500; 
  font-size: 0.88rem; 
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links li a {
  position: relative;
  padding: 8px 0;
  color: var(--navy-light);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-links li a:hover {
  color: var(--terracotta);
}
.nav-links li a:hover::after {
  width: 100%;
}

.nav-actions { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}
.icon-btn { 
  position: relative; 
  width: 42px; 
  height: 42px; 
  display: inline-grid; 
  place-items: center; 
  border: 1px solid var(--line); 
  border-radius: 50%; 
  background: var(--white); 
  color: var(--navy); 
}
.icon-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.icon-btn span:not([data-icon]) { 
  position: absolute; 
  top: -2px; 
  right: -2px; 
  min-width: 18px; 
  height: 18px; 
  display: grid; 
  place-items: center; 
  border-radius: 50%; 
  background: var(--terracotta); 
  color: var(--white); 
  font-size: 0.65rem; 
  font-weight: 700; 
  box-shadow: 0 2px 6px rgba(179, 93, 56, 0.35);
  animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.customer-chip { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  padding: 0 16px; 
  height: 42px; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  background: var(--white); 
  color: var(--navy); 
  font-weight: 600; 
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.customer-chip:hover {
  background: var(--soft);
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.menu-btn { 
  display: none; 
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
/* Hero block — canonical rules are in the premium-hero section below.
   These early rules are neutralised to prevent cascade conflicts. */
.hero { position: relative; overflow: hidden; }
.hero-slide { display: none; }
.hero-slide.is-active { display: grid; }
.hero-slide img { }
.hero-slide > div { }

.eyebrow { 
  margin: 0 0 16px; 
  color: var(--terracotta); 
  font-size: 0.72rem; 
  font-weight: 600; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
}

h1, h2, h3 { 
  font-family: var(--display); 
  line-height: 1.12; 
  letter-spacing: -0.01em; 
  color: var(--navy); 
}
h1 { 
  margin: 0 0 24px; 
  font-size: clamp(3.2rem, 6.4vw, 6.7rem); 
  font-weight: 600;
}
h2 { 
  margin: 0 0 16px; 
  font-size: clamp(2.35rem, 4vw, 4.35rem); 
  font-weight: 600;
}
h3 { 
  margin: 0; 
  font-size: 1.55rem; 
  font-weight: 600;
}

.hero-slide p:not(.eyebrow), .lead { 
  color: var(--muted); 
  font-size: 1.15rem; 
  line-height: 1.65;
  max-width: 48ch; 
  margin-bottom: 32px;
}
.hero-actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn { 
  min-height: 48px; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  padding: 0 28px; 
  border: 1px solid var(--navy); 
  border-radius: var(--radius-sm); 
  background: transparent; 
  color: var(--navy); 
  font-size: 0.8rem; 
  font-weight: 700; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  transition: var(--transition);
}
.btn-primary { 
  background: var(--navy); 
  color: var(--white); 
}
.btn-primary:hover { 
  background: var(--terracotta); 
  border-color: var(--terracotta); 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 93, 56, 0.25);
}
.btn-ghost { 
  background: var(--white); 
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--soft);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-wide { 
  width: 100%; 
}
.btn-whatsapp { 
  border-color: var(--green); 
  color: var(--green); 
}
.btn-whatsapp:hover {
  background: rgba(20, 83, 45, 0.05);
  transform: translateY(-2px);
}
.link-btn { 
  border: 0; 
  background: none; 
  color: var(--terracotta); 
  font-weight: 600; 
  text-decoration: underline; 
  text-underline-offset: 4px;
  padding: 0; 
  margin: 0 0 16px; 
}
.link-btn:hover {
  color: var(--navy);
}

/* ==========================================================================
   Sections & Spacing
   ========================================================================== */
.section { 
  padding: 96px 0; 
}
.section.compact { 
  padding: 56px 0; 
}
.section-white { 
  background: var(--white); 
  border-block: 1px solid var(--line);
}
.section-navy { 
  background: var(--navy); 
  color: var(--white); 
  position: relative;
}
.section-navy h2, .section-navy h3 { 
  color: var(--white); 
}
.section-head { 
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between; 
  gap: 40px; 
  margin-bottom: 48px; 
}
.section-head p { 
  color: var(--muted); 
  max-width: 580px; 
  font-size: 1.05rem;
  margin: 0;
}
.section-navy .section-head p {
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Promise Ribbon
   ========================================================================== */
.promise-ribbon {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.promise-ribbon__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(240px, 1fr));
  gap: 0;
  min-width: 1440px;
}
.promise-item {
  position: relative;
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px 24px 20px 72px;
  color: var(--navy);
  transition: var(--transition);
}
.promise-item + .promise-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--line);
}
.promise-item span {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  transition: var(--transition);
}
.promise-item strong {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.promise-item em {
  position: relative;
  color: var(--muted);
  font-size: .8rem;
  font-style: normal;
}
.promise-item:hover {
  background: rgba(15, 23, 42, 0.01);
}
.promise-item:hover strong { 
  color: var(--terracotta); 
}
.promise-item:hover span { 
  background: var(--terracotta); 
  color: var(--white);
  box-shadow: 0 4px 10px rgba(179, 93, 56, 0.2);
}

.promise-item.is-offer em {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
}
.promise-item.is-offer i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--navy));
  box-shadow: inset 0 0 0 999px rgba(179,93,56,.08);
  animation: offerPulse 1.8s ease-in-out infinite alternate;
}

/* ==========================================================================
   Editorial Grids & Layouts
   ========================================================================== */
.intent-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
}
.intent-card, .lookbook-card, .portfolio-tile { 
  position: relative; 
  overflow: hidden; 
  border: 0; 
  border-radius: var(--radius); 
  background: var(--soft); 
  color: var(--white); 
  text-align: left; 
}
.intent-card { 
  min-height: 440px; 
  display: grid; 
  align-content: end; 
  padding: 32px; 
  background-size: cover; 
  background-position: center top; 
  transition: var(--transition-slow);
}
.intent-card::before, .lookbook-card::before, .portfolio-tile::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.85)); 
  opacity: 0.95; 
  transition: var(--transition);
}
.intent-card > *, .lookbook-card span, .portfolio-tile span { 
  position: relative; 
  z-index: 2;
}
.intent-card h3 { 
  color: var(--white); 
  font-size: 1.8rem; 
  font-weight: 500;
  margin-top: 8px;
}
.intent-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.intent-card:hover::before {
  opacity: 0.85;
}

.calendar-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.calendar-scroll::-webkit-scrollbar {
  display: none;
}
.calendar-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
  transition: var(--transition);
}
.calendar-card:hover {
  transform: translateY(-6px);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-hover);
}
.calendar-card span {
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.calendar-card strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
}
.calendar-card em {
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.story-grid-home {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 20px;
}
.story-feature {
  position: relative;
  min-height: 400px;
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center top;
  padding: 32px;
  color: var(--white);
  transition: var(--transition-slow);
}
.story-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,23,42,0.85));
}
.story-feature > * { 
  position: relative; 
}
.story-feature span { 
  color: #f7d8c8; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  font-size: .75rem; 
}
.story-feature strong { 
  max-width: 380px; 
  font-family: var(--display); 
  font-size: clamp(1.6rem, 2.5vw, 2.5rem); 
  line-height: 1.1; 
  font-weight: 500;
}
.story-feature em { 
  font-style: normal; 
  font-weight: 700; 
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: underline; 
  text-underline-offset: 6px; 
}
.story-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.quality-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.quality-points {
  display: grid;
  gap: 16px;
}
.quality-points article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
  transition: var(--transition);
}
.quality-points article:hover {
  border-color: rgba(179, 93, 56, 0.2);
  box-shadow: var(--shadow);
}
.quality-points article::before {
  content: '✓';
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.quality-points strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.quality-points strong,
.quality-points span { 
  grid-column: 2; 
}
.quality-points span { 
  color: var(--muted); 
  font-size: 0.92rem;
}

.testimonial-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.testimonial-row blockquote {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
  transition: var(--transition);
}
.testimonial-row blockquote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-row p {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 500;
}
.testimonial-row cite {
  color: var(--muted);
  font-style: normal;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Product Grid & Premium Card Layouts
   ========================================================================== */
.product-grid { 
  display: grid; 
  grid-template-columns: repeat(4, minmax(0, 1fr)); 
  gap: 30px; 
}
.product-card { 
  position: relative; 
  background: var(--white); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow); 
  overflow: hidden; 
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-media { 
  position: relative; 
  display: block; 
  background: var(--soft); 
  overflow: hidden; 
}
.product-media img { 
  width: 100%; 
  aspect-ratio: 3 / 4; 
  object-fit: cover; 
  transition: opacity 0.5s ease, transform 0.5s ease; 
}
.product-media img + img { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
}
.product-card:hover .product-media img:first-child { 
  opacity: 0; 
  transform: scale(1.05); 
}
.product-card:hover .product-media img + img { 
  opacity: 1; 
  transform: scale(1.05); 
}

.badge { 
  position: absolute; 
  top: 16px; 
  left: 16px; 
  z-index: 2; 
  padding: 6px 12px; 
  border-radius: 99px; 
  background: var(--terracotta); 
  color: var(--white); 
  font-size: 0.68rem; 
  font-weight: 700; 
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(179, 93, 56, 0.25);
}

.wish-btn { 
  position: absolute; 
  top: 16px; 
  right: 16px; 
  z-index: 4; 
  width: 38px; 
  height: 38px; 
  display: grid; 
  place-items: center; 
  border: 0; 
  border-radius: 50%; 
  background: rgba(255, 255, 255, 0.85); 
  color: var(--navy); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
}
.wish-btn:hover {
  transform: scale(1.1);
  background: var(--white);
  color: var(--terracotta);
}
.wish-btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.2s ease;
}
.wish-btn.is-active {
  color: var(--terracotta);
}
.wish-btn.is-active svg {
  fill: currentColor;
  stroke: var(--terracotta);
}

.product-body { 
  padding: 24px; 
}
.tag-row { 
  display: flex; 
  justify-content: space-between; 
  gap: 12px; 
  color: var(--terracotta); 
  font-size: 0.72rem; 
  font-weight: 700; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
}
.product-body h3 { 
  margin: 12px 0 8px; 
  line-height: 1.25; 
  font-size: 1.15rem;
  font-weight: 500;
}
.product-body h3 a:hover {
  color: var(--terracotta);
}
.rating { 
  color: var(--muted); 
  font-size: 0.85rem; 
  font-weight: 500;
}
.price { 
  display: flex; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin: 14px 0; 
}
.price strong { 
  font-size: 1.15rem; 
  color: var(--navy);
  font-weight: 600;
}
.price s { 
  color: var(--muted); 
  font-size: 0.95rem;
}
.price em { 
  padding: 4px 10px; 
  border-radius: 99px; 
  background: var(--terracotta-pale); 
  color: var(--terracotta); 
  font-style: normal; 
  font-size: 0.72rem; 
  font-weight: 700; 
  letter-spacing: 0.02em;
}
.price-large strong { 
  font-size: 2rem; 
}

.size-dots { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
  margin-bottom: 16px; 
}
.size-dots span { 
  min-width: 26px; 
  height: 26px; 
  display: grid; 
  place-items: center; 
  border: 1px solid var(--line); 
  border-radius: 50%; 
  color: var(--navy); 
  font-size: 0.68rem; 
  font-weight: 600; 
  background: var(--cream);
  transition: var(--transition);
}
.product-card:hover .size-dots span {
  border-color: rgba(15,23,42,0.18);
}
.low-stock { 
  width: auto !important; 
  padding: 0 10px !important; 
  border-radius: 99px !important; 
  color: var(--terracotta) !important; 
  border-color: rgba(179, 93, 56, 0.2) !important;
  background: var(--terracotta-pale) !important;
}
.add-btn { 
  width: 100%; 
  transform: translateY(0); 
}

/* ==========================================================================
   Lookbooks & UGC Grid
   ========================================================================== */
.lookbook-scroll { 
  display: grid; 
  grid-auto-flow: column; 
  grid-auto-columns: minmax(240px, 28vw); 
  gap: 20px; 
  overflow-x: auto; 
  padding: 10px 4px 20px; 
  scroll-snap-type: x mandatory; 
  scrollbar-width: none;
}
.lookbook-scroll::-webkit-scrollbar {
  display: none;
}
.lookbook-card { 
  scroll-snap-align: start; 
  transition: var(--transition);
}
.lookbook-card img { 
  width: 100%; 
  aspect-ratio: 3 / 4; 
  object-fit: cover; 
}
.lookbook-card span, .portfolio-tile span { 
  position: absolute; 
  inset: auto 20px 20px; 
  display: flex; 
  justify-content: space-between; 
  gap: 16px; 
  align-items: center; 
  color: var(--white); 
  font-weight: 700; 
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lookbook-card:hover, .portfolio-tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.ugc-grid { 
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: 16px; 
}
.ugc-grid .lookbook-card img { 
  aspect-ratio: 1; 
}

.email-capture { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 16px; 
  max-width: 640px; 
}
.email-capture input { 
  min-height: 52px; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  padding: 0 20px; 
  background: var(--white); 
  color: var(--navy);
  box-shadow: inset 0 2px 4px rgba(15,23,42,0.02);
  transition: var(--transition);
}
.email-capture input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(179, 93, 56, 0.1);
}
.muted { 
  color: var(--muted); 
}

/* ==========================================================================
   Shop Page Layout
   ========================================================================== */
.shop-hero { 
  padding: 64px 0 32px; 
  background: var(--white); 
  border-bottom: 1px solid var(--line);
}
.shop-layout { 
  display: grid; 
  grid-template-columns: 280px 1fr; 
  gap: 40px; 
  padding: 48px 0 96px; 
}
.filters { 
  position: sticky; 
  top: 120px; 
  align-self: start; 
  padding: 24px; 
  border-radius: var(--radius); 
  background: var(--white); 
  border: 1px solid var(--line);
  box-shadow: var(--shadow); 
}
.filter-block + .filter-block { 
  margin-top: 24px; 
  padding-top: 24px; 
  border-top: 1px solid var(--line); 
}
.filter-block h3 { 
  font-family: var(--body); 
  font-size: 0.95rem; 
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 16px; 
}
.filter-block button, .applied button { 
  width: 100%; 
  min-height: 40px; 
  margin-bottom: 8px; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  background: var(--cream); 
  color: var(--navy); 
  text-align: left; 
  padding: 0 16px; 
  font-weight: 500;
  font-size: 0.9rem;
}
.filter-block button:hover {
  background: var(--soft);
  border-color: rgba(15,23,42,0.18);
}
.filter-block button.is-active, .chip-grid button.is-active { 
  background: var(--navy); 
  color: var(--white); 
  border-color: var(--navy); 
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}
.chip-grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}
.chip-grid button { 
  width: auto; 
  margin: 0; 
}
.filter-block input[type=range] { 
  width: 100%; 
  accent-color: var(--terracotta); 
  background: var(--line);
  height: 6px;
  border-radius: 99px;
  cursor: pointer;
}
.shop-toolbar { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 20px; 
  margin-bottom: 24px; 
}
.shop-toolbar select { 
  min-height: 44px; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  background: var(--white); 
  padding: 0 16px; 
  color: var(--navy);
  outline: none;
  font-weight: 500;
}
.shop-toolbar select:focus {
  border-color: var(--terracotta);
}
.applied { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin: 0 0 24px; 
  color: var(--muted); 
  font-size: 0.9rem;
  align-items: center;
}
.applied button { 
  width: auto; 
  background: var(--white); 
}
.applied button:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.empty { 
  padding: 64px; 
  text-align: center; 
  background: var(--white); 
  border-radius: var(--radius); 
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Product Detail Page (PDP)
   ========================================================================== */
.breadcrumb { 
  padding: 24px 0 0; 
  color: var(--muted); 
  font-size: 0.88rem; 
  font-weight: 500;
}
.breadcrumb a:hover {
  color: var(--terracotta);
}
.pdp { 
  display: grid; 
  grid-template-columns: 0.58fr 0.42fr; 
  gap: 48px; 
  padding: 32px 0 80px; 
}
.pdp-gallery > img { 
  width: 100%; 
  aspect-ratio: 4 / 5; 
  object-fit: cover; 
  object-position: top center;
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}
.pdp-gallery > div { 
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: 12px; 
  margin-top: 16px; 
}
.pdp-gallery button { 
  padding: 0; 
  border: 1.5px solid var(--line); 
  border-radius: var(--radius-sm); 
  overflow: hidden; 
  background: none; 
}
.pdp-gallery button:hover, .pdp-gallery button.is-active {
  border-color: var(--terracotta);
  transform: scale(1.05);
}
.pdp-gallery button img { 
  aspect-ratio: 1; 
  width: 100%; 
  object-fit: cover;
  object-position: top center;
}
.pdp-info { 
  position: sticky; 
  top: 120px; 
  align-self: start; 
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp-info h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0;
}

.size-picker { 
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: 10px; 
  margin: 8px 0 4px; 
}
.size-picker button { 
  min-height: 52px; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  background: var(--white); 
  color: var(--navy);
  font-weight: 700; 
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.size-picker button:hover {
  background: var(--soft);
  border-color: rgba(15,23,42,0.18);
  transform: translateY(-2px);
}
.size-picker button.is-active { 
  background: var(--navy); 
  color: var(--white); 
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}
.size-picker small { 
  display: block; 
  font-size: 0.6rem; 
  font-weight: 600; 
  color: var(--terracotta);
}
.size-picker button.is-active small {
  color: #f7d8c8;
}

.trust-mini { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 8px; 
  margin: 12px 0 16px; 
}
.trust-mini span { 
  min-height: 42px; 
  display: grid; 
  place-items: center; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  font-size: 0.74rem; 
  font-weight: 700; 
  color: var(--navy); 
  background: var(--white);
  text-align: center; 
}

/* Elegant Details Accordion */
details { 
  border-top: 1px solid var(--line); 
  padding: 16px 0; 
}
details[open] {
  padding-bottom: 24px;
}
summary { 
  cursor: pointer; 
  font-weight: 700; 
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.review-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 
}
.review-grid article, .blog-card, .policy-card, .contact-card, .checkout-card { 
  padding: 32px; 
  background: var(--white); 
  border: 1px solid var(--line);
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}
.review-grid article strong {
  color: var(--navy);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}

/* ==========================================================================
   Portfolio Layout
   ========================================================================== */
.portfolio-tabs { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin: 24px 0 36px; 
}
.portfolio-tabs button { 
  min-height: 42px; 
  padding: 0 20px; 
  border: 1px solid var(--line); 
  border-radius: 99px; 
  background: var(--white); 
  font-weight: 600; 
  font-size: 0.85rem;
  color: var(--navy);
}
.portfolio-tabs button:hover {
  background: var(--soft);
  border-color: rgba(15,23,42,0.18);
}
.portfolio-tabs button.is-active { 
  background: var(--navy); 
  color: var(--white); 
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}
.masonry { 
  columns: 4 240px; 
  column-gap: 20px; 
}
.portfolio-tile { 
  display: block; 
  width: 100%; 
  margin: 0 0 20px; 
  padding: 0; 
  break-inside: avoid; 
}
.portfolio-tile img { 
  width: 100%; 
  object-fit: cover; 
}

.split { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: center; 
}
.split img { 
  width: 100%; 
  aspect-ratio: 4 / 5; 
  object-fit: cover; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}
.policy-grid, .blog-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px; 
}

/* ==========================================================================
   Checkout & Forms
   ========================================================================== */
.checkout-layout { 
  display: grid; 
  grid-template-columns: 1fr 400px; 
  gap: 40px; 
  padding: 48px 0 96px; 
}
.form-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 
}
.field { 
  display: grid; 
  gap: 8px; 
  font-weight: 600; 
  font-size: 0.88rem;
  color: var(--navy); 
}
.field.full { 
  grid-column: 1 / -1; 
}
.field input, .field textarea, .field select { 
  width: 100%; 
  min-height: 48px; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  background: var(--cream); 
  padding: 12px 16px; 
  color: var(--text); 
  box-shadow: inset 0 2px 4px rgba(15,23,42,0.01);
  transition: var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(179, 93, 56, 0.1);
}
.field textarea { 
  min-height: 120px; 
  resize: vertical; 
}

.summary-line, .summary-total { 
  display: flex; 
  justify-content: space-between; 
  gap: 20px; 
  padding: 16px 0; 
  border-bottom: 1px solid var(--line); 
  align-items: center;
}
.summary-total { 
  font-size: 1.25rem; 
  font-weight: 600;
  border-bottom: 0; 
  color: var(--navy);
}
.summary-line--editable {
  align-items: start;
}
.summary-line--editable > div {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.summary-line--editable span {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.summary-line--editable small {
  color: var(--muted);
  font-size: .8rem;
}
.summary-line--editable strong {
  white-space: nowrap;
  font-size: 0.95rem;
}
.checkout-qty {
  margin-top: 4px;
  transform: scale(.94);
  transform-origin: left center;
}

/* ==========================================================================
   Brand Proof / UGC Dynamic Panel
   ========================================================================== */
.brand-proof-section {
  background:
    linear-gradient(90deg, rgba(179,93,56,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(179,93,56,.04) 1px, transparent 1px),
    var(--white);
  background-size: 80px 80px;
}
.brand-proof-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}
.brand-proof-card {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.brand-proof-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: inherit;
  pointer-events: none;
}
.brand-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}
.brand-proof-card:hover img { 
  transform: scale(1.03); 
}
.brand-proof-card.is-large {
  grid-row: span 2;
  grid-template-rows: minmax(440px, 1fr) auto;
}

.proof-content {
  position: relative;
  padding: 32px;
  background: rgba(250, 248, 245, .97);
}
.proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.brand-proof-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 500;
}
.brand-proof-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
}

.proof-meter {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(15,23,42,0.06);
  margin-bottom: 20px;
}
.proof-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--terracotta));
  animation: proofFill 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.proof-stats, .proof-tags, .mini-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.proof-stats strong, .proof-tags span, .mini-timeline span, .trust-stack a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}
.mini-timeline {
  position: relative;
  justify-content: space-between;
  padding-top: 20px;
}
.mini-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--terracotta));
}
.text-link {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand-proof-card.is-dark {
  min-height: auto;
  grid-template-rows: 1fr;
  background:
    linear-gradient(135deg, rgba(179,93,56,.15), transparent 45%),
    var(--navy);
  color: var(--white);
}
.brand-proof-card.is-dark .proof-content {
  display: grid;
  align-content: center;
  background: transparent;
}
.brand-proof-card.is-dark h3,
.brand-proof-card.is-dark p { 
  color: var(--white); 
}
.brand-proof-card.is-dark .proof-kicker { 
  color: #f7d8c8; 
}
.brand-proof-card.is-dark .proof-kicker::before { 
  background: #f7d8c8; 
}

/* About Atelier Section */
.about-atelier { 
  background: var(--cream); 
}
.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.atelier-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.atelier-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.atelier-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.atelier-grid span,
.atelier-grid strong {
  display: block;
  padding: 0 24px;
}
.atelier-grid span {
  margin-top: 24px;
  color: var(--terracotta);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.atelier-grid strong {
  padding-bottom: 24px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.trust-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trust-stack a {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-radius: var(--radius-sm);
  justify-content: center;
  text-align: center;
}
.trust-stack a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   Premium Cart Drawer & Overlay Backdrops
   ========================================================================== */
/* ── Wishlist Drawer ─────────────────────────────────── */
.wishlist-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.wishlist-open .wishlist-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.wishlist-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 110;
  width: min(420px, 96vw);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wishlist-open .wishlist-drawer {
  transform: translate3d(0, 0, 0);
}
.wishlist-items {
  flex: 1;
  padding: 0 24px 32px;
  overflow-y: auto;
}
.wishlist-empty {
  padding: 48px 0;
  text-align: center;
  color: var(--stone);
  font-family: var(--body);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.wishlist-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen);
}
.wishlist-item__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.wishlist-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.wishlist-item__img:hover img {
  transform: scale(1.04);
}
.wishlist-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.wishlist-item__name {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
}
.wishlist-item__price {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.wishlist-item__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.70rem;
  letter-spacing: 0.1em;
}
.wishlist-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--stone);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}
.wishlist-item__remove:hover {
  color: var(--terracotta);
}

.cart-backdrop, .modal-backdrop { 
  position: fixed; 
  inset: 0; 
  z-index: 100; 
  background: rgba(15, 23, 42, 0.4); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.4s ease; 
}
.cart-drawer { 
  position: fixed; 
  inset: 0 0 0 auto; 
  z-index: 110; 
  width: min(480px, 100vw); 
  display: grid; 
  grid-template-rows: auto 1fr auto; 
  background: var(--cream); 
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
  transform: translate3d(100%, 0, 0); 
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}
.cart-open .cart-backdrop, .customer-open .modal-backdrop, .lightbox-open .modal-backdrop { 
  opacity: 1; 
  pointer-events: auto; 
}
.cart-open .cart-drawer { 
  transform: translate3d(0, 0, 0); 
}

.drawer-head, .drawer-foot { 
  padding: 24px; 
  background: var(--white);
}
.drawer-head {
  border-bottom: 1px solid var(--line); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.drawer-head strong {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 500;
}
.drawer-head button { 
  border: 0; 
  background: none; 
  color: var(--navy); 
}
.drawer-head button:hover {
  color: var(--terracotta);
}

.drawer-foot {
  border-top: 1px solid var(--line);
}
.drawer-foot .field { 
  gap: 6px; 
  font-size: 0.95rem; 
  font-weight: 600; 
  margin-bottom: 12px;
}
.drawer-foot .field input { 
  min-height: 48px; 
  font-size: 0.95rem; 
  padding: 10px 16px; 
  border-radius: var(--radius-sm); 
}
.drawer-foot .field textarea { 
  min-height: 80px; 
  font-size: 0.92rem; 
  padding: 10px 16px; 
  resize: vertical; 
  border-radius: var(--radius-sm); 
}
.drawer-foot .mini-upsell { 
  margin-top: 8px; 
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.drawer-foot .mini-upsell .eyebrow { 
  font-size: 0.68rem; 
  margin-bottom: 8px; 
}
.drawer-foot strong {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 16px 0;
  font-weight: 600;
}

.cart-items { 
  padding: 24px; 
  overflow-y: auto; 
}
.cart-line {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(15,23,42,0.02);
  transition: var(--transition);
}
.cart-line:hover {
  border-color: rgba(15,23,42,0.14);
}
.cart-line img {
  width: 80px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  background: var(--soft);
}
.cart-line__info {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 4px;
}
.cart-line__tag {
  color: var(--terracotta);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-line__info strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}
.cart-line__meta {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
}
.cart-line__price {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 4px;
  min-width: 80px;
}
.cart-line__price strong {
  color: var(--text);
  font-size: 0.9rem;
  white-space: nowrap;
}
.cart-line__price small {
  color: var(--muted);
  font-size: .72rem;
  white-space: nowrap;
}
.cart-line [data-remove] {
  border: 0;
  background: none;
  color: var(--terracotta);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
  margin-top: 8px;
}
.cart-line [data-remove]:hover {
  color: var(--navy);
}

.qty {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--cream);
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.85rem;
}
.qty button {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(15,23,42,0.05);
}
.qty button:hover {
  background: var(--navy);
  color: var(--white);
}

.progress { 
  height: 6px; 
  background: var(--line); 
  border-radius: 99px; 
  overflow: hidden; 
  margin: 12px 0; 
}
.progress span { 
  display: block; 
  height: 100%; 
  background: linear-gradient(90deg, var(--navy), var(--terracotta)); 
  width: 0; 
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Upsell Card */
.upsell-card { 
  display: grid; 
  grid-template-columns: 80px 1fr; 
  gap: 0; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  overflow: hidden; 
  background: var(--white); 
}
.upsell-card img { 
  width: 80px; 
  aspect-ratio: 3/4; 
  object-fit: cover; 
  display: block; 
}
.upsell-card__info { 
  padding: 12px; 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}
.upsell-card__info strong { 
  font-family: var(--display); 
  font-size: 0.9rem; 
  color: var(--navy); 
  line-height: 1.2; 
  font-weight: 500;
}
.upsell-card__info .tag-row { 
  gap: 6px; 
  font-size: 0.65rem; 
}
.upsell-card__info .price { 
  font-size: 0.8rem; 
  margin: 4px 0;
}
.upsell-card__info .btn { 
  margin-top: 6px; 
  padding: 0 16px;
  min-height: 36px;
  font-size: 0.72rem; 
  letter-spacing: 0.04em; 
}

/* ==========================================================================
   Modals & Popups
   ========================================================================== */
.customer-modal, .lightbox-panel { 
  position: fixed; 
  inset: 50% auto auto 50%; 
  z-index: 120; 
  width: min(640px, calc(100vw - 32px)); 
  max-height: calc(100vh - 40px); 
  overflow-y: auto; 
  transform: translate(-50%, -46%) scale(.96); 
  opacity: 0; 
  pointer-events: none; 
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); 
  background: var(--white); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-hover); 
  padding: 36px; 
}
.customer-modal h2 {
  font-size: 1.80rem;
  margin-bottom: 8px;
}
.customer-modal p {
  margin-top: 0;
  margin-bottom: 24px;
}
.customer-open .customer-modal, .lightbox-open .lightbox-panel { 
  transform: translate(-50%, -50%) scale(1); 
  opacity: 1; 
  pointer-events: auto; 
}
.lightbox-panel { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 32px; 
  width: min(840px, calc(100vw - 32px));
}
.lightbox-panel img { 
  width: 100%; 
  max-height: 70vh; 
  object-fit: contain; 
  background: var(--soft); 
  border-radius: var(--radius-sm);
}
.lightbox-panel aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.lightbox-panel aside h2 {
  margin: 0;
  font-size: 1.8rem;
}
.lightbox-panel aside p {
  color: var(--muted);
  line-height: 1.6;
}

.whatsapp-float { 
  position: fixed; 
  right: 24px; 
  bottom: 24px; 
  z-index: 70; 
  width: 56px; 
  height: 56px; 
  display: grid; 
  place-items: center; 
  border-radius: 50%; 
  background: #25d366; 
  color: var(--white); 
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); 
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 150;
  display: grid;
  gap: 10px;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast svg {
  color: var(--terracotta);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { 
  background: var(--navy); 
  color: var(--white); 
  padding: 80px 0 40px; 
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 1.35fr repeat(3, 1fr); 
  gap: 40px; 
}
.footer-grid img { 
  width: 142px; 
  filter: brightness(0) invert(1); 
  margin-bottom: 16px;
}
.footer-grid h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}
.footer-grid a, .footer-grid p { 
  display: block; 
  color: rgba(250, 248, 245, 0.72); 
  margin: 10px 0; 
  font-size: 0.92rem;
}
.footer-grid a:hover {
  color: var(--terracotta);
}
.footer-bottom { 
  margin-top: 48px; 
  padding-top: 24px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  color: rgba(250, 248, 245, 0.5); 
  font-size: .85rem; 
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes ticker { 
  to { 
    transform: translateX(-50%); 
  } 
}
@keyframes promiseDrift {
  0%, 12% { transform: translateX(0); }
  88%, 100% { transform: translateX(min(0px, calc(100vw - 1440px))); }
}
@keyframes offerPulse { 
  from { opacity: .62; } 
  to { opacity: 1; } 
}
@keyframes proofFill { 
  from { width: 0; } 
}
@keyframes badgePop {
  from { transform: absolute scale(0.6); opacity: 0; }
  to { transform: absolute scale(1); opacity: 1; }
}
@keyframes imageReveal {
  from { transform: scale(1.06); opacity: 0.8; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes textReveal {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Media Queries (Responsive Styling)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 20px; }
  .nav-links { 
    position: fixed; 
    inset: 80px 0 auto 0; 
    display: none; 
    padding: 24px; 
    background: var(--cream); 
    border-bottom: 1px solid var(--line); 
    box-shadow: var(--shadow);
    grid-template-columns: 1fr;
    gap: 16px;
    z-index: 90;
  }
  .menu-open .nav-links { 
    display: grid; 
  }
  .menu-btn { 
    display: inline-grid; 
    place-items: center; 
  }
  .hide-mobile { 
    display: none; 
  }
  .pdp, .shop-layout, .split, .checkout-layout, .lightbox-panel { 
    grid-template-columns: 1fr; 
  }
  .brand-proof-grid { 
    grid-template-columns: 1fr; 
  }
  .brand-proof-card.is-large { 
    grid-row: auto; 
  }
  .hero, .hero-slide { 
    min-height: auto; 
  }
  .hero-slide img { height: auto; min-height: 0; }
  .pdp-info, .filters { 
    position: static; 
  }
  .product-grid { 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
  }
  .promise-ribbon__inner {
    display: flex;
    min-width: max-content;
    animation: ticker 32s linear infinite;
  }
  .promise-item { 
    width: 280px; 
  }
  .intent-grid, .footer-grid, .story-grid-home, .quality-panel, .atelier-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .testimonial-row { 
    grid-template-columns: 1fr; 
  }
  .lightbox-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container { 
    width: min(100% - 32px, 1280px); 
  }
  .logo img { 
    height: 64px;
    width: auto; 
  }
  .nav { 
    min-height: 72px; 
    gap: 8px; 
  }
  .hero-slide img { height: auto; min-height: 0; }
  .hero-slide > div { 
    padding: 36px 16px 48px; 
  }
  h1 { 
    font-size: clamp(2.4rem, 11vw, 3.8rem); 
  }
  h2 { 
    font-size: clamp(1.8rem, 8vw, 2.6rem); 
  }
  .section { 
    padding: 64px 0; 
  }
  .section-head { 
    display: block; 
  }
  .section-head p {
    margin-top: 10px;
  }
  .intent-grid, .product-grid, .ugc-grid, .policy-grid, .blog-grid, .form-grid, .footer-grid, .story-grid-home, .quality-panel, .atelier-grid { 
    grid-template-columns: 1fr; 
  }
  .calendar-scroll { 
    grid-auto-columns: 82vw; 
  }
  .trust-stack { 
    grid-template-columns: 1fr; 
  }
  .brand-proof-card, .brand-proof-card.is-large { 
    grid-template-rows: 240px auto; 
  }
  .lookbook-scroll { 
    grid-auto-columns: 72vw; 
  }
  .shop-toolbar { 
    align-items: start; 
    flex-direction: column; 
    gap: 12px;
  }
  .pdp-gallery > div { 
    grid-template-columns: repeat(4, 1fr); 
  }
  .size-picker, .trust-mini { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .email-capture { 
    grid-template-columns: 1fr; 
  }
  .cart-line {
    grid-template-columns: 80px 1fr;
  }
  .cart-line__price {
    grid-column: 2;
    justify-items: start;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 12px;
  }
  .cart-line__price small { 
    display: none; 
  }
}

/* ==========================================================================
   Codex editorial redesign overrides
   ========================================================================== */
h1, h2, h3 {
  color: var(--ink);
  letter-spacing: 0.02em;
}
h1 {
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.1;
}
h2 {
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  letter-spacing: 0.02em;
}
h3 {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  font-family: var(--body);
}
.section { padding: 160px 0; }
.section.compact { padding: 100px 0; }
.section-head { margin-bottom: 80px; }
.site-header {
  background: rgba(253, 250, 245, 0.92);
  border-bottom: 1px solid var(--linen);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav { min-height: 96px; gap: 40px; }
.logo img { height: 90px; width: auto; object-fit: contain; }
.nav-links {
  gap: 40px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  font-weight: 400;
}
.nav-links li a::after { display: none; }
.nav-links li a:hover { color: var(--terracotta); }
.nav-actions { gap: 10px; }
.icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: var(--ink);
  box-shadow: none;
}
.icon-btn:hover {
  color: var(--terracotta);
  transform: none;
  box-shadow: none;
}
.customer-chip { display: none; }
.ticker {
  background: var(--ink);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  font-weight: 400;
  padding: 7px 0;
}
.ticker div {
  gap: 80px;
  padding: 0;
  animation-duration: 48s;
}
.ticker span::after { margin-left: 80px; }
.btn {
  min-height: 44px;
  padding: 0 36px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--body);
  box-shadow: none;
}
.btn:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: none;
  box-shadow: none;
}
.btn-primary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-primary:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost {
  border-color: var(--linen);
  color: var(--stone);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-text {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--body);
}
.btn-text:hover { color: var(--terracotta); }
/* Mid-file hero overrides — neutralised. Canonical styles in premium-hero section. */
.hero-slide h1 { }
.hero-slide p:not(.eyebrow) { }
.hero-slide .eyebrow { }
.hero-actions .btn-primary:hover {
  background: transparent;
  color: var(--white);
}
.hero-stats { display: none; }
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.editorial-copy { padding: 40px 0; }
.editorial-copy .lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone);
  margin: 24px 0 40px;
  max-width: 44ch;
}
.section-linen { background: var(--linen); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink h2 { color: var(--white); }
.section-ink .eyebrow { color: rgba(255,255,255,0.5); }
.product-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.philosophy-band { text-align: center; padding: 200px 0; }
.philosophy-quote p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: 0.01em;
}
.philosophy-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}
.email-capture {
  display: flex;
  gap: 0;
  max-width: 480px;
}
.email-capture input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  padding: 0 20px;
  height: 52px;
  font-size: 0.85rem;
  outline: none;
  border-radius: 0;
}
.email-capture input::placeholder { color: rgba(255,255,255,0.4); }
.email-capture input:focus { border-color: rgba(255,255,255,0.6); }
.email-capture .btn {
  height: 52px;
  border-radius: 0;
  border-left: none;
  white-space: nowrap;
}
.section-ink .email-capture .btn {
  border-color: var(--white);
  color: var(--white);
}
.section-ink .email-capture .btn:hover {
  background: var(--white);
  color: var(--ink);
}
.product-card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.product-card:hover {
  transform: none;
  box-shadow: none;
}
.product-media {
  background: var(--linen);
  overflow: hidden;
}
.product-media img {
  border-radius: 0;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.product-body { padding: 16px 0 0; }
.product-body .tag-row { display: none; }
.product-body h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.product-body .rating {
  font-size: 0.68rem;
  color: var(--stone);
  margin: 4px 0 8px;
}
.price em { display: none; }
.price strong {
  font-weight: 400;
  font-size: 0.9rem;
  font-family: var(--body);
}
.price s {
  color: var(--stone);
  font-size: 0.8rem;
}
.badge {
  background: rgba(253,250,245,0.9);
  color: var(--ink);
  border-radius: 0;
}
.add-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  margin-top: 12px;
}
.product-card:hover .add-btn {
  opacity: 1;
  transform: translateY(0);
}
.cart-drawer {
  width: min(460px, 100vw);
  background: var(--ivory);
  border-left: 1px solid var(--linen);
  box-shadow: none;
}
.drawer-head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--linen);
  background: var(--ivory);
}
.drawer-head strong {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.drawer-foot {
  padding: 24px 32px;
  border-top: 1px solid var(--linen);
  background: var(--ivory);
}
.cart-line {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--linen);
  align-items: start;
}
.cart-line img {
  width: 100px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}
.cart-line__tag { display: none; }
.cart-line__info strong {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}
.cart-line__meta {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.08em;
}
.cart-line__size-edit {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-size-select {
  border: 1px solid var(--linen);
  background: none;
  font-size: 0.75rem;
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 0;
  cursor: pointer;
  outline: none;
}
.cart-size-select:focus { border-color: var(--ink); }
.qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.qty button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--linen);
  background: none;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: var(--ink);
}
.qty button:hover { border-color: var(--ink); }
.qty span {
  font-size: 0.85rem;
  min-width: 20px;
  text-align: center;
}
.cart-line__price strong {
  font-size: 0.9rem;
  font-weight: 400;
}
.cart-line__price button {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  margin-top: 8px;
}
.cart-line__price button:hover { color: var(--terracotta); }
.drawer-foot > strong {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--linen);
}
.drawer-foot .btn-primary {
  width: 100%;
  height: 52px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}
.drawer-foot .muted {
  font-size: 0.65rem;
  text-align: center;
  color: var(--stone);
  margin-top: 12px;
}
.cart-tax-note {
  display: block;
  font-size: 0.65rem;
  color: var(--stone);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-align: right;
}
.cart-empty {
  padding: 60px 32px;
  text-align: center;
}
.cart-empty p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--stone);
  margin-bottom: 24px;
}
.pdp-divider {
  border: none;
  border-top: 1px solid var(--linen);
  margin: 24px 0;
}
.pdp-color-label {
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.rating-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 4px;
  display: block;
  margin-bottom: 20px;
}
.price-large strong {
  font-size: 1.4rem;
  font-weight: 400;
}
.price-large s {
  color: var(--stone);
  font-size: 1rem;
}
.price-large em { display: none; }
.size-picker-modal {
  position: fixed;
  inset: 0;
  background: rgba(28,25,23,0.6);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.size-picker-modal.is-open { opacity: 1; }
.spm-inner {
  background: var(--ivory);
  width: min(480px, 100%);
  padding: 40px 32px 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.size-picker-modal.is-open .spm-inner { transform: translateY(0); }
.spm-inner h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.3rem;
  margin: 8px 0 24px;
}
.spm-sizes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.spm-size {
  border: 1px solid var(--linen);
  background: none;
  padding: 10px 4px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.spm-size:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.spm-size small {
  display: block;
  font-size: 0.55rem;
  color: var(--terracotta);
  margin-top: 3px;
}
.spm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero-slide > div { bottom: 6%; }
  .hero-slide h1 { font-size: 2.2rem; }
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-image { order: -1; }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .philosophy-band { padding: 100px 0; }
  .philosophy-quote p { font-size: 1.6rem; }
  .cart-drawer { width: 100vw; }
  .section { padding: 100px 0; }
  .add-btn { opacity: 1; transform: none; }
  .email-capture { display: grid; grid-template-columns: 1fr; width: 100%; }
  .email-capture .btn { border-left: 1px solid currentColor; }
  .cart-line { grid-template-columns: 86px 1fr; padding: 20px; }
  .cart-line img { width: 86px; }
  .cart-line__price { grid-column: 2; justify-items: start; }
}

/* ==========================================================================
   Part 2: font, hero, shop, and collection refinements
   ========================================================================== */
body {
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: 0.02em;
}
h1 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
}
h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 3.5rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav-links {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.btn {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}
.logo img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-header.is-transparent {
  background: rgba(253, 250, 245, 0.92);
  border-bottom-color: var(--linen);
  box-shadow: none;
}
.site-header.is-transparent .logo img {
  filter: none;
}
.site-header.has-bg .logo img {
  filter: none;
}
.site-header.is-transparent .nav-links li a,
.site-header.is-transparent .icon-btn {
  color: var(--ink);
}
/* ── Premium split-screen hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #f5f0e8;
  overflow: hidden;
  position: relative;
}
.hero::after { display: none; }

.hero-slide {
  min-height: 100vh;
  display: none;
  grid-template-columns: 44fr 56fr;
  align-items: stretch;
}
.hero-slide.is-active { display: grid; }
.hero-slide::after { display: none; }

/* Left — editorial text panel */
.hero-content {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 136px) clamp(36px, 5.5vw, 88px);
  background: #f5f0e8;
  color: var(--ink);
  max-width: none;
  gap: 0;
}

.hero-collection-tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy, #1b1f3b);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-content .eyebrow {
  color: var(--terracotta, #b5613a);
  margin-bottom: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
}

.hero-content h1 {
  color: var(--navy, #1b1f3b);
  text-shadow: none;
  margin: 0 0 20px;
  line-height: 1.0;
  font-size: clamp(3.4rem, 5.8vw, 6.2rem);
}

.hero-lead {
  color: #6b6259;
  font-size: 1.0rem;
  line-height: 1.85;
  max-width: 38ch;
  margin-bottom: 36px !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-cta-primary {
  background: var(--navy, #1b1f3b);
  color: #fff;
  border-color: var(--navy, #1b1f3b);
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  padding: 0 28px;
  min-height: 50px;
  transition: background 0.25s, color 0.25s;
}
.hero-cta-primary:hover {
  background: #2d3160;
  border-color: #2d3160;
  color: #fff;
}

.hero-cta-ghost {
  background: transparent;
  color: var(--navy, #1b1f3b);
  border-color: rgba(27,31,59,0.35);
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  padding: 0 24px;
  min-height: 50px;
  transition: border-color 0.25s, background 0.25s;
}
.hero-cta-ghost:hover {
  border-color: var(--navy, #1b1f3b);
  background: rgba(27,31,59,0.05);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b8e84;
}
.hero-meta-dot { opacity: 0.4; }

/* Right — full-height image panel */
.hero-image-panel {
  position: relative;
  overflow: hidden;
  background: #e8e0d5;
}

.hero-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 6s ease;
}

.hero-image-panel:hover img {
  transform: scale(1.03);
}

.hero-image-badge {
  position: absolute;
  bottom: 36px;
  left: 32px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 20px;
  border-radius: 2px;
}
.hero-image-badge span {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy, #1b1f3b);
}

/* Legacy overrides — neutralise old .hero-slide img rules */
.hero-cta { display: none; }
.hero-image-panel img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: top center !important;
  animation: none !important;
  display: block !important;
}
.philosophy-band {
  padding: 220px 0;
  text-align: center;
  background: var(--ivory);
}
.philosophy-quote p {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1.2;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 28px;
  letter-spacing: 0.02em;
}
.philosophy-quote cite {
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
  font-weight: 400;
}
.shop-header {
  padding: 0;
  border-bottom: 1px solid var(--linen);
  overflow: hidden;
}
.shop-header__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 400px;
  align-items: stretch;
}
.shop-header__text {
  padding: 72px 60px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-header h1 {
  font-style: italic;
  margin-top: 12px;
  margin-bottom: 0;
}
.shop-subhead {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-top: 16px;
}
.shop-header__image {
  overflow: hidden;
}
.shop-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.shop-header__image:hover img {
  transform: scale(1.03);
}
/* ── Filter Sidebar ─────────────────────────────────── */
.filter-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  padding-top: 8px;
}
.filter-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 0;
}
.filter-sidebar__label {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.filter-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen);
}
.filter-block h3 {
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  margin-bottom: 14px;
}
.filter-block button,
.filter-block .chip-grid button {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  text-align: left;
  position: relative;
  transition: color 0.2s ease;
  width: 100%;
  display: block;
}
.filter-block button:hover,
.filter-block .chip-grid button:hover {
  color: var(--ink);
}
.filter-block button.is-active,
.filter-block .chip-grid button.is-active {
  color: var(--ink);
  font-weight: 500;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.chip-grid button.is-active {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.filter-block button.is-active::before,
.filter-block .chip-grid button.is-active::before {
  content: '—';
  font-size: 0.6rem;
  color: var(--terracotta);
  margin-right: 8px;
  letter-spacing: 0;
}
/* Size chips stay inline in sidebar */
.filter-block .chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-block .chip-grid button {
  width: auto;
  padding: 5px 10px;
  border: 1px solid var(--linen);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.filter-block .chip-grid button:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-block .chip-grid button.is-active {
  border-color: var(--ink) !important;
  color: var(--ink) !important;
}
.filter-block .chip-grid button.is-active::before {
  display: none;
}

/* ── Shop grid top bar ───────────────────────────────── */
.shop-grid-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--linen);
  margin-bottom: 0;
  min-height: 44px;
}
.shop-grid-top__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.sort-select {
  border: none;
  background: none;
  font-family: var(--body);
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  color: var(--stone);
  padding: 0;
  cursor: pointer;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 16px;
}
.sort-select:focus { color: var(--ink); }
.product-count {
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--stone);
  white-space: nowrap;
}
/* Shop header mobile */
@media (max-width: 768px) {
  .shop-header__inner { grid-template-columns: 1fr; min-height: auto; }
  .shop-header__text { padding: 48px 0 36px; }
  .shop-header__image { height: 280px; }
}

/* Mood nav strip */
.mood-nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--linen);
  padding: 14px 0;
}
.mood-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mood-nav__link {
  font-family: var(--body);
  font-size: 0.70rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s ease;
  text-decoration: none;
}
.mood-nav__link:hover { color: var(--terracotta); }
.mood-nav__sep {
  color: var(--linen);
  font-size: 0.8rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding-top: 60px;
  align-items: start;
}
.shop-grid-area { width: 100%; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
  padding: 32px 0 60px;
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--linen);
  padding: 4px 10px;
  border-radius: 0;
}
.badge--new { border-color: var(--ink); }
.collection-hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--linen);
}
.collection-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: stretch;
}
.collection-hero__text {
  padding: 100px 80px 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collection-hero h1 {
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 0;
}
.collection-hero__sub {
  font-size: 0.95rem;
  color: var(--stone);
  max-width: 44ch;
  margin-top: 20px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.collection-hero__image {
  overflow: hidden;
}
.collection-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}
.collection-hero:hover .collection-hero__image img {
  transform: scale(1.03);
}
.mood-strip {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.mood-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mood-story--reverse { direction: rtl; }
.mood-story--reverse > * { direction: ltr; }
.mood-story__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.mood-story__copy { padding: 40px 0; }
.mood-story__copy h2 {
  font-style: italic;
  margin: 12px 0 20px;
}
.mood-story__copy p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--stone);
  max-width: 40ch;
  margin-bottom: 32px;
}
.whatsapp-float {
  width: 48px;
  height: 48px;
  right: 22px;
  bottom: 22px;
  opacity: 0.6;
}
.whatsapp-float:hover { opacity: 1; }
.brand-story p {
  color: var(--stone);
  font-size: 0.98rem;
  line-height: 1.9;
  max-width: 54ch;
}
.brand-story .brand-statement {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-style: italic;
  color: var(--ink);
  margin-top: 28px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-logo-feature {
  width: 100%;
  max-width: 320px;
  opacity: 0.9;
}
.about-photo-feature {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-top: 40px;
}
.brand-name-origin {
  margin-top: 28px;
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 32ch;
}
.about-copy p:not(.eyebrow) {
  color: var(--stone);
  font-size: 0.98rem;
  line-height: 1.9;
}
.about-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--stone);
  border-left: 2px solid var(--linen);
  padding-left: 20px;
  margin-top: 32px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.value-item h3 {
  font-style: italic;
  font-weight: 300;
  margin: 12px 0 16px;
}
.value-item p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--stone);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .filter-groups { gap: 20px; overflow-x: auto; }
  .filter-bar__inner { align-items: flex-start; }
}
@media (max-width: 768px) {
  .logo img { height: 72px; width: auto; }
  .mood-story { grid-template-columns: 1fr; gap: 32px; }
  .mood-story--reverse { direction: ltr; }
  .mood-strip { gap: 80px; }
  .collection-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .collection-hero__text { padding: 56px 0 40px; order: 1; }
  .collection-hero__image { height: 340px; order: 2; }
  .shop-layout { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .filter-sidebar { position: static; display: flex; flex-direction: row; flex-wrap: wrap; gap: 0; border: 1px solid var(--linen); padding: 16px; }
  .filter-sidebar__head { width: 100%; padding-bottom: 12px; margin-bottom: 12px; }
  .filter-block { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px; border-bottom: none; padding: 6px 0; width: 100%; }
  .filter-block h3 { margin-bottom: 0; margin-right: 8px; flex-shrink: 0; }
  .filter-block button { width: auto; padding: 4px 10px; }
  .filter-block .chip-grid { flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-feature { max-width: 220px; margin: 0 auto; }
  .about-photo-feature { margin-top: 28px; }
  .brand-name-origin { text-align: center; margin-left: auto; margin-right: auto; }
  .about-values { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Sakhi by Saiyaara - Partner Program Page
   ========================================================================== */
.text-center { text-align: center; }
.nav-active { color: var(--terracotta) !important; }
.nav-active::after { width: 100% !important; }
.sakhi-hero { padding: 0; border-bottom: 1px solid var(--linen); overflow: hidden; }
.sakhi-hero__inner { display: grid; grid-template-columns: 55fr 45fr; min-height: 560px; align-items: stretch; }
.sakhi-hero__text { padding: 80px 60px 80px 0; display: flex; flex-direction: column; justify-content: center; }
.sakhi-hero__tagline { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--terracotta); margin-top: 20px; line-height: 1.5; }
.sakhi-hero__sub, .sakhi-body-copy { font-family: var(--body); font-size: 0.95rem; color: var(--stone); line-height: 1.9; margin-top: 20px; max-width: 48ch; }
.sakhi-cta { margin-top: 32px; align-self: flex-start; }
.sakhi-hero__note, .sakhi-form-note { font-family: var(--body); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--stone); margin-top: 12px; text-transform: uppercase; }
.sakhi-form-note { text-align: center; margin-bottom: 40px; }
.sakhi-hero__image { overflow: hidden; }
.sakhi-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.8s ease; }
.sakhi-hero:hover .sakhi-hero__image img { transform: scale(1.03); }
.sakhi-section-title { text-align: center; font-style: italic; margin-top: 12px; margin-bottom: 60px; }
.sakhi-inline-title { font-style: italic; margin-top: 12px; }
.sakhi-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.sakhi-pillar { padding: 40px 36px; background: var(--ivory); border: 1px solid var(--linen); border-top: 3px solid var(--terracotta); }
.sakhi-pillar__icon { font-size: 1.2rem; color: var(--terracotta); margin-bottom: 20px; }
.sakhi-pillar h3 { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.sakhi-pillar__hindi { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--terracotta); margin-bottom: 16px; }
.sakhi-pillar p { font-size: 0.9rem; color: var(--stone); line-height: 1.8; margin-bottom: 20px; }
.sakhi-pillar__list { list-style: none; padding: 0; margin: 0; }
.sakhi-pillar__list li { font-family: var(--body); font-size: 0.78rem; color: var(--stone); letter-spacing: 0.04em; padding: 6px 0; border-bottom: 1px solid var(--linen); }
.sakhi-pillar__list li::before { content: '- '; color: var(--terracotta); }
.sakhi-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.sakhi-steps::before { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px; background: var(--linen); z-index: 0; }
.sakhi-step { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.sakhi-step__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--terracotta); font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.12em; color: var(--terracotta); margin-bottom: 20px; }
.sakhi-step h3 { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.1rem; margin-bottom: 12px; }
.sakhi-step p { font-size: 0.85rem; color: var(--stone); line-height: 1.8; }
.sakhi-eligibility__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sakhi-checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.sakhi-checklist li { font-family: var(--body); font-size: 0.88rem; color: var(--stone); padding: 10px 0; border-bottom: 1px solid var(--linen); display: flex; align-items: center; gap: 12px; }
.sakhi-checklist li::before { content: '✓'; color: var(--terracotta); font-size: 0.8rem; flex-shrink: 0; }
.sakhi-eligibility__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--linen); border: 1px solid var(--linen); }
.sakhi-stat { background: var(--ivory); padding: 36px 28px; display: flex; flex-direction: column; gap: 8px; }
.sakhi-stat__number { font-family: var(--display); font-size: 2.2rem; font-weight: 300; color: var(--terracotta); line-height: 1; }
.sakhi-stat__label { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.sakhi-form-wrap { max-width: 760px; margin: 0 auto; }
.sakhi-form select { width: 100%; padding: 12px 16px; border: 1px solid var(--line); background: var(--white); font-family: var(--body); font-size: 0.88rem; color: var(--ink); border-radius: 0; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.sakhi-form select:focus { border-color: var(--ink); }
.sakhi-submit-row { grid-column: 1 / -1; text-align: center; margin-top: 8px; }
.sakhi-submit-row .btn { min-width: 220px; }
.sakhi-submit-row p, .sakhi-status { margin-top: 16px; font-size: 0.72rem; color: var(--stone); letter-spacing: 0.06em; }
.sakhi-status { grid-column: 1 / -1; text-align: center; }
.sakhi-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.sakhi-faq__item { border-bottom: 1px solid var(--linen); padding: 0; }
.sakhi-faq__item summary { font-family: var(--body); font-size: 0.88rem; letter-spacing: 0.03em; color: var(--ink); padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.sakhi-faq__item summary::-webkit-details-marker { display: none; }
.sakhi-faq__item summary::after { content: '+'; font-size: 1.2rem; color: var(--terracotta); flex-shrink: 0; }
.sakhi-faq__item[open] summary::after { content: '-'; }
.sakhi-faq__item p { font-size: 0.85rem; color: var(--stone); line-height: 1.9; padding: 0 0 20px; }

@media (max-width: 768px) {
  .sakhi-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .sakhi-hero__text { padding: 56px 0 40px; }
  .sakhi-hero__image { height: 320px; }
  .sakhi-pillars__grid { grid-template-columns: 1fr; gap: 24px; }
  .sakhi-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sakhi-steps::before { display: none; }
  .sakhi-eligibility__inner { grid-template-columns: 1fr; gap: 40px; }
  .sakhi-eligibility__stats { grid-template-columns: 1fr 1fr; }
  .sakhi-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .sakhi-steps,
  .sakhi-eligibility__stats { grid-template-columns: 1fr; }
}
