/* ============================================================
   DRAVYAA · ECOMMERCE STYLESHEET
   cloth with meaning · Mumbai 2026
   ============================================================ */

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

/* ── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --cream:      #F5EFE3;
  --ink:        #2E2319;
  --terracotta: #B0543E;
  --olive:      #6B7348;
  --warm-grey:  #6B5D4F;
  --gold:       #A0875A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Poppins', sans-serif;

  --max-width:   1240px;
  --section-pad: 100px;
  --gutter:      48px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-serif);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.t-display {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.t-h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.t-h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.25;
}
.t-h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.35;
}
.t-body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
}
.t-body-sm {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-grey);
}
.t-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.t-price {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap   { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }

/* ── ORNAMENT ───────────────────────────────────────────── */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); font-size: 18px;
  letter-spacing: 0.4em; margin: 40px 0; user-select: none;
}
.ornament::before, .ornament::after {
  content: ''; flex: 0 0 56px; height: 1px;
  background: var(--gold); opacity: 0.45;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--cream); height: 83px;
  border-bottom: 1px solid rgba(46,35,25,0.09);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 var(--gutter);
  transition: box-shadow 0.35s ease;
}
.nav-logo { justify-self: start; }
.nav-links { justify-self: center; }
.nav-right { justify-self: end; }
.nav.scrolled { box-shadow: 0 2px 28px rgba(46,35,25,0.07); }

/* Transparent variant — index.html hero overlay */
.nav-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.nav-transparent .nav-logo-devanagari,
.nav-transparent .nav-links a,
.nav-transparent .nav-icon-btn { color: var(--cream); }
.nav-transparent .nav-links a:hover,
.nav-transparent .nav-icon-btn:hover { opacity: 0.65; }
.nav-transparent .nav-links a.active { border-bottom-color: var(--cream); }
.nav-transparent.scrolled {
  background: rgba(46,35,25,0.90);
  border-bottom-color: transparent;
  box-shadow: none;
}

.nav-logo {
  display: flex; align-items: baseline; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-devanagari {
  font-family: var(--font-serif); font-size: 48px;
  color: var(--ink); line-height: 1;
}
.nav-logo-en {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink);
}

.nav-links {
  display: flex; gap: 50px; list-style: none;
}
.nav-links a {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-icon-btn {
  background: none; border: none; padding: 4px;
  color: var(--ink); transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.nav-icon-btn:hover { color: var(--terracotta); }
.nav-icon-btn svg { width: 23px; height: 23px; }

.nav-cart-badge {
  font-family: var(--font-sans); font-size: 10px;
  color: var(--warm-grey); margin-left: -4px;
}

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: all 0.3s ease;
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 200;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 52px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-serif); font-style: italic;
  font-size: 38px; color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-menu-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: none; color: var(--cream);
  font-family: var(--font-serif); font-size: 32px; line-height: 1;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,rgba(46,35,25,0.28) 0%,rgba(46,35,25,0.58) 100%);
}
.hero-content {
  position: relative; text-align: center;
  color: var(--cream); padding: 0 24px;
  animation: fadeUp 1.2s var(--ease-smooth) 0.2s both;
}
.hero-headline {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.06em; opacity: 0.82; margin-bottom: 72px;
}
.hero-scroll {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; cursor: pointer;
}
.hero-scroll-line {
  width: 1px; height: 52px; background: rgba(245,239,227,0.6);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll-label {
  font-family: var(--font-sans); font-size: 9.5px;
  letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.55;
}

/* ── INTRO TEXT BAND ────────────────────────────────────── */
.intro-band {
  padding: 62px 0;
  text-align: center;
}
.intro-band p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(15px, 2.15vw, 21px);
  line-height: 1.7; color: var(--warm-grey);
  max-width: 680px; margin: 0 auto;
}
.intro-band p em { color: var(--ink); font-style: normal; }
.intro-band-tagline {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(13px, 1.55vw, 17px);
  letter-spacing: 0.12em; color: var(--ink);
  margin-top: 14px; white-space: nowrap;
}

/* ── FABRIC PANEL ────────────────────────────────────────── */
.fabric-panel {
  background: var(--ink); padding: var(--section-pad) 0;
}
.fabric-intro {
  text-align: center; margin-bottom: 64px;
}
.fabric-intro .t-h2 { color: var(--cream); max-width: 560px; margin: 0 auto; }
.fabric-intro .t-label { color: rgba(245,239,227,0.4); margin-bottom: 14px; }

.fabric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fabric-card { position: relative; }
.fabric-card-img-wrap {
  overflow: hidden; aspect-ratio: 3/4; background: #3a2e22;
}
.fabric-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-smooth), filter 0.4s;
  filter: brightness(0.75) saturate(0.9);
}
.fabric-card:hover .fabric-card-img { transform: scale(1.05); filter: brightness(0.6); }

.fabric-card-body { padding: 28px 0 0; }
.fabric-card-category {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.fabric-card-name {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; font-size: 28px; color: var(--cream); margin-bottom: 12px;
}
.fabric-card-desc {
  font-family: var(--font-serif); font-size: 15px;
  color: rgba(245,239,227,0.58); line-height: 1.8; margin-bottom: 24px;
}
.link-gold {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.25s ease;
}
.link-gold::after { content: '→'; font-size: 14px; }
.link-gold:hover { gap: 14px; }

/* ── PRODUCT GRID SECTION ───────────────────────────────── */
.pieces-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 52px;
}
.pieces-header .t-label { margin-bottom: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px 24px; }
.product-card { cursor: pointer; }
.product-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: #E6DDD2; margin-bottom: 16px;
}
.product-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-smooth);
}
.product-card:hover .product-card-img { transform: scale(1.04); }

.product-card-fav {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; background: rgba(245,239,227,0.9);
  border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  opacity: 0; transition: opacity 0.25s, transform 0.18s;
}
.product-card-fav svg { width: 15px; height: 15px; stroke: var(--ink); transition: fill 0.2s, stroke 0.2s; }
.product-card:hover .product-card-fav { opacity: 1; }
.product-card-fav.active { opacity: 1; }
.product-card-fav.active svg { fill: var(--terracotta); stroke: var(--terracotta); }
.product-card-fav:hover { transform: scale(1.12); }

.nav-wishlist-badge {
  font-family: var(--font-sans); font-size: 10px;
  color: var(--warm-grey); margin-left: -4px;
}

.product-card-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-sans); font-weight: 300;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 10px; background: var(--cream);
}
.product-card-badge.heritage { border-left: 2px solid var(--terracotta); }
.product-card-badge.essentials { border-left: 2px solid var(--olive); }

.product-card-name {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 19px; margin-bottom: 4px;
}
.product-card-fabric {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--warm-grey); margin-bottom: 12px;
}
.product-card-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price { font-family: var(--font-serif); font-size: 18px; }
.product-card-status {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-grey);
}

.see-all-wrap { text-align: center; margin-top: 60px; }
.link-inline {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(46,35,25,0.3); padding-bottom: 2px;
  transition: gap 0.25s, border-color 0.2s;
}
.link-inline::after { content: '→'; }
.link-inline:hover { gap: 14px; border-color: var(--terracotta); color: var(--terracotta); }

/* ── MAKERS FEATURE ─────────────────────────────────────── */
.makers-feature {
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(46,35,25,0.08);
}
.makers-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.makers-img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.makers-text .t-label { margin-bottom: 14px; }
.makers-text .t-h2 { margin-bottom: 20px; }
.makers-text .t-body { color: var(--warm-grey); margin-bottom: 36px; }

/* ── PROMISE PANEL ───────────────────────────────────────── */
.promise-panel { background: var(--terracotta); padding: var(--section-pad) 0; }
.promise-panel .t-h2 { color: var(--cream); text-align: center; margin-bottom: 52px; }
.promise-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 20px; max-width: 580px; margin: 0 auto;
}
.promise-list li {
  font-family: var(--font-serif); font-size: 17px;
  color: rgba(245,239,227,0.9); line-height: 1.7;
  display: flex; gap: 14px;
}
.promise-list li::before { content: '—'; opacity: 0.55; flex-shrink: 0; }

/* ── JOURNAL SECTION ────────────────────────────────────── */
.journal-section { padding: var(--section-pad) 0; }
.journal-header { margin-bottom: 44px; }
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.journal-card { cursor: pointer; }
.journal-card-img-wrap { overflow: hidden; aspect-ratio: 16/10; margin-bottom: 22px; }
.journal-card-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88); transition: filter 0.35s, transform 0.7s var(--ease-smooth);
}
.journal-card:hover .journal-card-img { filter: brightness(0.75); transform: scale(1.04); }
.journal-card .t-label { margin-bottom: 10px; }
.journal-card-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 21px; line-height: 1.35; margin-bottom: 10px;
}
.journal-card-excerpt {
  font-family: var(--font-serif); font-size: 15px;
  color: var(--warm-grey); line-height: 1.75; margin-bottom: 18px;
}

/* ── EMAIL CAPTURE ───────────────────────────────────────── */
.email-band {
  background: #EDE6D8; padding: 72px 0; text-align: center;
  border-top: 1px solid rgba(46,35,25,0.07);
}
.email-band .t-h3 { margin-bottom: 8px; }
.email-band p {
  font-family: var(--font-serif); font-style: italic;
  color: var(--warm-grey); font-size: 16px; margin-bottom: 32px;
}
.email-form { display: flex; gap: 0; justify-content: center; max-width: 440px; margin: 0 auto; }
.email-input {
  flex: 1; padding: 14px 18px;
  border: 1px solid rgba(46,35,25,0.2); background: var(--cream);
  font-family: var(--font-serif); font-size: 15px; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--ink); }
.email-input::placeholder { color: var(--warm-grey); }
.email-submit {
  padding: 14px 24px; background: var(--ink); color: var(--cream);
  border: none; font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.25s;
}
.email-submit:hover { background: var(--terracotta); }

.email-consent {
  max-width: 440px; margin: 18px auto 0; text-align: left;
}
.email-consent-label {
  display: flex; gap: 10px; align-items: flex-start; cursor: pointer;
}
.email-consent-check {
  margin-top: 4px; flex-shrink: 0; accent-color: var(--ink);
  width: 14px; height: 14px;
}
.email-consent-label span {
  font-family: var(--font-serif); font-size: 12px;
  color: var(--warm-grey); line-height: 1.7;
}
.email-consent-note {
  font-family: var(--font-serif); font-size: 11.5px; font-style: normal;
  color: var(--warm-grey); line-height: 1.75; margin-top: 10px;
  padding-left: 24px; opacity: 0.72;
}

/* ── COMBINED FOOTER (index.html) ───────────────────────── */
.footer-combined {
  background: var(--cream);
  border-top: 1px solid rgba(46,35,25,0.1);
}
.footer-combined .wrap { max-width: 100%; }
.footer-combined-main {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 96px; padding: 77px 4%;
}
.ftr-email-heading {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 24px;
}
.ftr-email-row {
  display: flex; border: 1px solid rgba(46,35,25,0.28); margin-bottom: 22px;
}
.ftr-email-input {
  flex: 1; padding: 16px 19px; border: none; background: transparent;
  font-family: var(--font-sans); font-weight: 300;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); outline: none;
}
.ftr-email-input::placeholder { color: var(--warm-grey); }
.ftr-email-btn {
  padding: 16px 24px; background: none; border: none;
  border-left: 1px solid rgba(46,35,25,0.28);
  font-family: var(--font-sans); font-weight: 300;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); transition: color 0.2s; white-space: nowrap;
}
.ftr-email-btn:hover { color: var(--terracotta); }
.ftr-consent { max-width: 408px; }
.ftr-consent-label {
  display: flex; gap: 10px; align-items: flex-start; cursor: pointer;
}
.ftr-consent-check { margin-top: 3px; flex-shrink: 0; accent-color: var(--ink); }
.ftr-consent-label span {
  font-family: var(--font-serif); font-size: 14px;
  color: var(--warm-grey); line-height: 1.7;
}
.ftr-consent-note {
  font-family: var(--font-serif); font-size: 13px; font-style: normal;
  color: var(--warm-grey); line-height: 1.75; margin-top: 12px;
  padding-left: 26px; opacity: 0.7;
}
.ftr-nav-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  padding-top: 4px; padding-left: 15%;
}
.ftr-col-title {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 22px;
}
.ftr-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ftr-col-links a {
  font-family: var(--font-serif); font-size: 17px;
  color: var(--warm-grey); transition: color 0.2s;
}
.ftr-col-links a:hover { color: var(--ink); }
.footer-combined-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 4%;
  border-top: 1px solid rgba(46,35,25,0.08);
  font-family: var(--font-sans); font-weight: 300;
  font-size: 12px; letter-spacing: 0.12em; color: var(--warm-grey);
}

/* ── FOOTER ──────────────────────────────────────────────── */
/* ── FOOTER INFO (shop page) ───────────────────────────── */
.footer-info {
  background: var(--cream);
  border-top: 1px solid rgba(46,35,25,0.1);
  margin-top: 80px;
}
.fi-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 72px; padding: 64px 4% 52px;
}
.fi-col-heading {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 22px;
}
.fi-col-contact p {
  font-family: var(--font-sans); font-size: 13px; color: var(--ink);
  line-height: 1.75; margin-bottom: 10px;
}
.fi-col-contact p strong { font-weight: 600; }
.fi-col-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.fi-col-links a {
  font-family: var(--font-sans); font-size: 13px; color: var(--ink);
  text-decoration: none; transition: color 0.2s;
}
.fi-col-links a:hover { color: var(--terracotta); }
.fi-social { display: inline-flex; margin-top: 24px; color: var(--ink); transition: color 0.2s; }
.fi-social:hover { color: var(--terracotta); }
.fi-social svg { width: 20px; height: 20px; }
.fi-bottom {
  border-top: 1px solid rgba(46,35,25,0.1);
  padding: 18px 4%;
  display: flex; align-items: center; justify-content: center;
}
.fi-copy {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 0.08em; color: var(--warm-grey);
}

.footer { background: var(--ink); padding: 80px 0 44px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,239,227,0.08);
}
.footer-brand .nav-logo-devanagari { color: var(--cream); font-size: 34px; }
.footer-brand .nav-logo-en { color: rgba(245,239,227,0.4); }
.footer-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: rgba(245,239,227,0.38); margin: 6px 0 24px;
}
.footer-contact {
  font-family: var(--font-serif); font-size: 14px;
  color: rgba(245,239,227,0.42); line-height: 2.1;
}
.footer-contact a { color: rgba(245,239,227,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--terracotta); }

.footer-col-title {
  font-family: var(--font-sans); font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,239,227,0.28); margin-bottom: 20px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  font-family: var(--font-serif); font-size: 15px;
  color: rgba(245,239,227,0.5); transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.1em; color: rgba(245,239,227,0.2);
}
.footer-location {
  font-family: var(--font-serif); font-style: italic;
  font-size: 13px; color: rgba(245,239,227,0.2);
}

/* ── SHOP PAGE ───────────────────────────────────────────── */
.page-header {
  padding: 140px 0 54px; text-align: center;
  border-bottom: 1px solid rgba(46,35,25,0.08);
}
.page-header .t-label { margin-bottom: 14px; }
.page-header .t-h1 { margin-bottom: 12px; font-size: clamp(45px, 6.25vw, 75px); }
.page-header p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; color: var(--warm-grey);
}

.filters {
  display: flex; align-items: center; justify-content: center;
  gap: 45px; padding: 16px 0 0;
}
.filter-btn {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; background: none; border: none;
  color: var(--warm-grey); padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--ink); border-bottom-color: var(--ink);
}

.shop-grid-wrap { padding: 34px 0 100px; }
.shop-grid-wrap .wrap { max-width: 100%; padding: 0 3%; }

/* Shop layout: sidebar + main */
.shop-layout { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; align-items: start; }
.shop-main { min-width: 0; }

/* Sidebar */
.shop-sidebar { position: sticky; top: 104px; }
.sf-group { margin-bottom: 28px; }
.sf-group-title {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 10px; border-bottom: 1px solid rgba(46,35,25,0.12); margin-bottom: 14px;
}
.sf-options { display: flex; flex-direction: column; gap: 10px; }
.sf-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.sf-check input[type="checkbox"] {
  width: 14px; height: 14px; accent-color: var(--ink);
  cursor: pointer; flex-shrink: 0; border-radius: 2px;
}
.sf-check span { font-family: var(--font-sans); font-size: 13px; color: var(--ink); line-height: 1; }
.sf-check:hover span { color: var(--terracotta); }
.sf-show-more {
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--warm-grey); background: none; border: none;
  padding: 0; cursor: pointer; display: block; margin-bottom: 24px;
}
.sf-show-more:hover { color: var(--ink); }
.sf-extra { display: none; }
.sf-extra.open { display: block; }

.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px 24px; }

/* ── PRODUCT DETAIL PAGE ─────────────────────────────────── */
.product-page { padding: 110px 0 60px; }
.breadcrumb {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 48px;
  display: flex; gap: 10px; align-items: center;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span { opacity: 0.35; }

.product-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; }

/* Gallery */
.product-gallery { position: sticky; top: 82px; }
.main-img-wrap {
  overflow: hidden; aspect-ratio: 4/5; background: #E6DDD2; margin-bottom: 12px; cursor: zoom-in;
}
.main-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.main-img:hover { transform: scale(1.05); }
.thumb-strip { display: flex; gap: 8px; }
.thumb {
  flex: 0 0 calc(20% - 7px); aspect-ratio: 1; object-fit: cover;
  background: #E6DDD2; opacity: 0.5;
  transition: opacity 0.2s; cursor: pointer;
}
.thumb.active, .thumb:hover { opacity: 1; }

/* Info panel */
.product-info { padding-top: 4px; }
.product-info .t-label { margin-bottom: 14px; }
.product-info .t-h1 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 6px; }
.product-subtitle {
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; color: var(--warm-grey); margin-bottom: 32px;
}
.product-price-row { margin-bottom: 6px; }
.product-shipping-note {
  font-family: var(--font-serif); font-size: 13px;
  color: var(--warm-grey); margin-bottom: 32px;
}
.divider { height: 1px; background: rgba(46,35,25,0.09); margin: 26px 0; }
.product-lead {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.9; margin-bottom: 32px;
}

/* Size selector */
.size-label { margin-bottom: 14px; }
.sizes { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.size-btn {
  width: 46px; height: 46px; border: 1px solid rgba(46,35,25,0.2);
  background: transparent; font-family: var(--font-sans);
  font-weight: 300; font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.size-btn:hover, .size-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.size-guide-trigger {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--warm-grey); text-decoration: underline;
  text-underline-offset: 3px; background: none; border: none;
  transition: color 0.2s;
}
.size-guide-trigger:hover { color: var(--ink); }

/* CTA */
.cta-btn {
  width: 100%; padding: 18px; background: var(--ink); color: var(--cream);
  font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.07em;
  border: none; margin-top: 28px; margin-bottom: 14px;
  transition: background 0.28s ease;
}
.cta-btn:hover { background: var(--terracotta); }
.made-to-order-note {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--warm-grey);
  line-height: 1.7; text-align: center;
}

/* Deep desc */
.product-deep { padding: 80px 0; border-top: 1px solid rgba(46,35,25,0.08); }
.deep-block { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(46,35,25,0.07); }
.deep-block:last-child { border-bottom: none; margin-bottom: 0; }
.deep-block .t-label { margin-bottom: 18px; }
.deep-block p {
  font-family: var(--font-serif); font-size: 16px; line-height: 1.9; margin-bottom: 14px;
}
.deep-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.deep-list li {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.7; display: flex; gap: 12px;
}
.deep-list li::before { content: '—'; opacity: 0.35; flex-shrink: 0; }
.deep-maker-img {
  float: right; width: 200px; aspect-ratio: 3/4;
  object-fit: cover; margin: 0 0 24px 36px;
  background: #E6DDD2;
}
.honest-block {
  background: rgba(176,84,62,0.06);
  padding: 36px 40px; border-left: 3px solid var(--terracotta);
}
.honest-block .t-label { color: var(--terracotta); margin-bottom: 18px; }
.product-sign-off {
  text-align: center; font-family: var(--font-serif);
  font-style: italic; font-size: 18px; color: var(--warm-grey); margin-top: 56px;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-hero-img {
  width: 100%; height: 50vh; min-height: 340px;
  object-fit: cover; filter: brightness(0.85);
  margin-top: 66px;
}
.about-content {
  max-width: 700px; margin: 0 auto;
  padding: 72px var(--gutter) 100px;
}
.about-content p {
  font-family: var(--font-serif); font-size: 17px;
  line-height: 1.95; margin-bottom: 28px;
}
.about-content h2 {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; font-size: 28px;
  margin: 52px 0 20px; color: var(--ink);
}
.about-inline-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  margin: 48px 0; filter: brightness(0.88);
}
.about-promise-list {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin: 0 0 28px;
}
.about-promise-list li {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.7; display: flex; gap: 12px;
}
.about-promise-list li::before { content: '—'; opacity: 0.4; flex-shrink: 0; }
.about-sign-off {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--warm-grey);
  margin-top: 56px; text-align: center;
}

/* ── CLOTH PAGE ──────────────────────────────────────────── */
.cloth-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 80px 0;
  border-bottom: 1px solid rgba(46,35,25,0.07);
}
.cloth-section:last-of-type { border-bottom: none; }
.cloth-section.reverse { direction: rtl; }
.cloth-section.reverse > * { direction: ltr; }
.cloth-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #E6DDD2; }
.cloth-text .t-label { margin-bottom: 12px; }
.cloth-text h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 34px; margin-bottom: 20px;
}
.cloth-text p {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.9; margin-bottom: 18px;
}
.cloth-honest {
  background: rgba(46,35,25,0.04); padding: 24px 28px;
  border-left: 2px solid rgba(107,93,79,0.4); margin-top: 24px;
}
.cloth-honest p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px; color: var(--warm-grey); margin: 0;
}

/* ── MAKERS PAGE ─────────────────────────────────────────── */
.maker-entry {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 72px; align-items: center; padding: 80px 0;
  border-bottom: 1px solid rgba(46,35,25,0.07);
}
.maker-entry:last-child { border-bottom: none; }
.maker-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: #E6DDD2; }
.maker-body .t-label { margin-bottom: 12px; }
.maker-body .t-h3 { font-size: 32px; margin-bottom: 6px; }
.maker-role { margin-bottom: 24px; }
.maker-body p {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.9; margin-bottom: 18px;
}
.maker-products-ref {
  font-family: var(--font-sans); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey);
}
.maker-products-ref a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* ── CART DRAWER ─────────────────────────────────────────── */
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(46,35,25,0.45);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.cart-backdrop.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 92vw; background: var(--cream);
  z-index: 301; transform: translateX(100%);
  transition: transform 0.42s var(--ease-smooth);
  display: flex; flex-direction: column; padding: 0;
}
.cart-backdrop.open .cart-drawer { transform: translateX(0); }

.cart-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 28px 22px; border-bottom: 1px solid rgba(46,35,25,0.08);
}
.cart-drawer-title { font-family: var(--font-serif); font-weight: 400; font-size: 24px; }
.cart-close-btn {
  background: none; border: none; font-size: 26px; font-family: var(--font-serif);
  color: var(--ink); line-height: 1;
}

.cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 14px; margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(46,35,25,0.06);
}
.cart-item-img { width: 80px; height: 100px; object-fit: cover; background: #E6DDD2; }
.cart-item-name { font-family: var(--font-serif); font-size: 16px; margin-bottom: 4px; }
.cart-item-detail { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: var(--warm-grey); margin-bottom: 8px; }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: var(--font-serif); font-size: 16px; }
.remove-btn { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; background: none; border: none; color: var(--warm-grey); transition: color 0.2s; }
.remove-btn:hover { color: var(--terracotta); }

.cart-bottom { padding: 20px 28px 28px; border-top: 1px solid rgba(46,35,25,0.08); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.cart-subtotal-label { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey); }
.cart-subtotal-amount { font-family: var(--font-serif); font-size: 22px; }
.cart-note {
  font-family: var(--font-serif); font-style: italic;
  font-size: 13px; color: var(--warm-grey); line-height: 1.65;
  margin: 18px 0;
}
.checkout-btn {
  width: 100%; padding: 17px; background: var(--ink); color: var(--cream);
  font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.06em;
  border: none; transition: background 0.25s; margin-bottom: 12px;
}
.checkout-btn:hover { background: var(--terracotta); }
.continue-shopping {
  width: 100%; background: none; border: none;
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-grey); transition: color 0.2s;
}
.continue-shopping:hover { color: var(--ink); }

/* ── SIZE GUIDE MODAL ────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(46,35,25,0.45);
  z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--cream); max-width: 560px; width: 90%;
  padding: 48px; transform: translateY(20px); transition: transform 0.35s var(--ease-smooth);
}
.modal-backdrop.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.modal-header .t-h3 { font-style: italic; }
.modal-close { background: none; border: none; font-family: var(--font-serif); font-size: 28px; color: var(--ink); line-height: 1; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th, .size-table td {
  font-family: var(--font-serif); font-size: 14px; padding: 10px 14px;
  text-align: left; border-bottom: 1px solid rgba(46,35,25,0.07);
}
.size-table th { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey); background: rgba(46,35,25,0.03); }
.modal-note { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--warm-grey); margin-top: 20px; line-height: 1.65; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; background: var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90; box-shadow: 0 4px 20px rgba(46,35,25,0.25);
  text-decoration: none; transition: background 0.25s, transform 0.2s;
}
.wa-float:hover { background: var(--terracotta); transform: scale(1.08); }
.wa-float svg { width: 22px; height: 22px; fill: var(--cream); }

/* ── ANIMATIONS & REVEAL ─────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes heroZoom { from { transform:scale(1.0); } to { transform:scale(1.06); } }
@keyframes scrollPulse {
  0%,100% { opacity:.4; transform:scaleY(1); }
  50% { opacity:.75; transform:scaleY(1.3); }
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── JOURNAL PAGE ────────────────────────────────────────── */
.journal-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid rgba(46,35,25,0.08);
}
.journal-featured-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.85);
}
.journal-featured-label { margin-bottom: 16px; }
.journal-featured-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(26px, 3.5vw, 42px); line-height: 1.2;
  margin-bottom: 18px;
}
.journal-featured-excerpt {
  font-family: var(--font-serif); font-size: 16px;
  color: var(--warm-grey); line-height: 1.9; margin-bottom: 28px;
}
.journal-all-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 60px 0 40px;
}
.journal-all-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 56px 40px; padding-bottom: 100px;
}

/* ── NEW LAUNCH PAGE ─────────────────────────────────────── */
.launch-hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
  padding-bottom: 80px; margin-bottom: 0;
}
.launch-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.launch-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,35,25,0.82) 25%, rgba(46,35,25,0.12) 100%);
}
.launch-hero-content {
  position: relative; color: var(--cream);
  padding: 0 var(--gutter); max-width: var(--max-width);
  width: 100%; margin: 0 auto;
  animation: fadeUp 1.2s var(--ease-smooth) 0.2s both;
}
.launch-hero-tag {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.launch-hero-title {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 20px;
}
.launch-hero-sub {
  font-family: var(--font-serif); font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(245,239,227,0.65); letter-spacing: 0.04em;
}
.launch-reveal {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; padding: 100px 0;
  border-bottom: 1px solid rgba(46,35,25,0.08);
}
.launch-reveal-text .t-label { margin-bottom: 16px; }
.launch-reveal-text h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; margin-bottom: 24px;
}
.launch-reveal-text p {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.95; color: var(--warm-grey); margin-bottom: 18px;
}
.launch-reveal-text p em { color: var(--ink); font-style: normal; }
.launch-product-card {
  position: sticky; top: 88px;
}
.launch-product-img-wrap {
  overflow: hidden; aspect-ratio: 3/4; background: #E6DDD2; margin-bottom: 18px;
}
.launch-product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-smooth);
}
.launch-product-card:hover .launch-product-img { transform: scale(1.04); }
.launch-product-name {
  font-family: var(--font-serif); font-size: 22px; margin-bottom: 4px;
}
.launch-product-fabric {
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px; color: var(--warm-grey); margin-bottom: 14px;
}
.launch-product-price {
  font-family: var(--font-serif); font-size: 22px; margin-bottom: 24px;
}
.launch-specs {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding: 22px 0; border-top: 1px solid rgba(46,35,25,0.08);
  border-bottom: 1px solid rgba(46,35,25,0.08); margin-bottom: 24px;
}
.launch-specs li {
  font-family: var(--font-serif); font-size: 14px;
  color: var(--warm-grey); display: flex; gap: 10px; line-height: 1.6;
}
.launch-specs li::before { content: '—'; opacity: 0.4; flex-shrink: 0; }

/* ── ACCOUNT MODAL ───────────────────────────────────────── */
.account-backdrop {
  position: fixed; inset: 0; background: rgba(46,35,25,0.45);
  z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.account-backdrop.open { opacity: 1; pointer-events: all; }

.account-modal {
  background: var(--cream); width: 420px; max-width: 92vw;
  padding: 40px; transform: translateY(20px);
  transition: transform 0.35s var(--ease-smooth);
}
.account-backdrop.open .account-modal { transform: translateY(0); }

.account-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.account-modal-title { font-family: var(--font-serif); font-weight: 400; font-size: 24px; }
.account-modal-close {
  background: none; border: none; font-family: var(--font-serif);
  font-size: 26px; color: var(--ink); line-height: 1;
}

.account-tabs {
  display: flex; margin-bottom: 28px;
  border-bottom: 1px solid rgba(46,35,25,0.1);
}
.account-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--warm-grey);
  padding: 0 0 12px; margin-right: 24px; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.account-tab.active { color: var(--ink); border-bottom-color: var(--ink); }

.account-field { margin-bottom: 18px; }
.account-label {
  display: block; font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-grey);
  margin-bottom: 7px;
}
.account-input {
  width: 100%; border: 1px solid rgba(46,35,25,0.2); background: transparent;
  padding: 13px 14px; font-family: var(--font-serif); font-size: 15px;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.account-input:focus { border-color: var(--ink); }
.account-input::placeholder { color: var(--warm-grey); opacity: 0.6; }

.account-submit {
  width: 100%; padding: 16px; background: var(--ink); color: var(--cream);
  font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.06em;
  border: none; margin-top: 8px; transition: background 0.25s;
}
.account-submit:hover { background: var(--terracotta); }

.account-switch-note {
  font-family: var(--font-serif); font-style: italic; font-size: 13px;
  color: var(--warm-grey); text-align: center; margin-top: 16px; line-height: 1.7;
}
.account-switch-link { color: var(--terracotta); cursor: pointer; }
.account-switch-link:hover { text-decoration: underline; }

.account-error {
  font-family: var(--font-serif); font-size: 13px; color: var(--terracotta);
  margin-top: 10px; text-align: center; min-height: 20px;
  opacity: 0; transition: opacity 0.2s;
}
.account-error.show { opacity: 1; }

.account-loggedin { text-align: center; padding: 16px 0 8px; }
.account-welcome {
  font-family: var(--font-serif); font-style: italic; font-size: 22px; margin-bottom: 8px;
}
.account-email-display {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em;
  color: var(--warm-grey); margin-bottom: 32px;
}
.account-signout {
  background: none; border: 1px solid rgba(46,35,25,0.2);
  font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--warm-grey); padding: 10px 22px;
  transition: all 0.2s;
}
.account-signout:hover { border-color: var(--ink); color: var(--ink); }
.account-profile-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 16px;
}
.account-profile-link:hover { color: var(--ink); }

.hidden { display: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; --gutter: 32px; }
  .product-grid, .shop-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .product-layout { gap: 52px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --section-pad: 56px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-headline { font-size: 68px; }
  .fabric-grid { grid-template-columns: 1fr; }
  .product-grid, .shop-grid { grid-template-columns: 1fr; }
  .makers-grid, .cloth-section, .cloth-section.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .deep-maker-img { float: none; width: 100%; margin: 0 0 24px; }
  .maker-entry { grid-template-columns: 1fr; gap: 36px; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .pieces-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .email-form { flex-direction: column; }
  .modal-box { padding: 32px 24px; }
  .about-content { padding: 52px var(--gutter) 72px; }
  .journal-featured, .launch-reveal { grid-template-columns: 1fr; gap: 36px; }
  .journal-all-grid { grid-template-columns: 1fr; }
  .launch-product-card { position: static; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(46,35,25,0.12); padding: 28px 0; }
  .trust-item:nth-child(odd) { padding-right: 0; }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .ps-measure-grid { grid-template-columns: 1fr 1fr; }
  .ps-body-types { gap: 10px; }
  .ps-body-btn { min-width: 60px; }
  .ps-help-grid { grid-template-columns: 1fr 1fr; }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar-wrap {
  background: #f0ece4;
  border-top: 1px solid rgba(46,35,25,0.1);
  border-bottom: 1px solid rgba(46,35,25,0.1);
}
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 0 3%;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 40px 36px 40px;
  border-right: 1px solid rgba(46,35,25,0.12);
}
.trust-item:first-child { padding-left: 24px; }
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--ink);
  opacity: 0.75;
  margin-top: 2px;
}
.trust-text-heading {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.trust-text-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.6;
}

/* ── PROFILE SETUP PAGE ─────────────────────────────────── */
.ps-body { background: var(--cream); }

.ps-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 48px 100px;
}

.ps-header { margin-bottom: 52px; text-align: center; }
.ps-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--ink);
  margin: 8px 0 24px;
  letter-spacing: -0.01em;
}
.ps-microcopy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ps-chip {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--warm-grey);
  border: 1px solid rgba(46,35,25,0.2);
  border-radius: 100px;
  padding: 5px 14px;
}

.ps-form { display: flex; flex-direction: column; gap: 56px; }

.ps-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(46,35,25,0.12);
}
.ps-section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.ps-section-note {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.6;
  margin-top: -12px;
}

.ps-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.ps-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--warm-grey);
  font-size: 11px;
}
.ps-unit-hint {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--warm-grey);
}

.ps-field { display: flex; flex-direction: column; }

/* Toggle buttons (Men/Women/Unisex) */
.ps-toggle-group { display: flex; gap: 0; border: 1px solid rgba(46,35,25,0.25); border-radius: 4px; overflow: hidden; width: fit-content; }
.ps-toggle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 10px 28px;
  cursor: pointer;
  border-right: 1px solid rgba(46,35,25,0.15);
  transition: background 0.18s, color 0.18s;
}
.ps-toggle:last-child { border-right: none; }
.ps-toggle.active { background: var(--ink); color: var(--cream); }

/* Select */
.ps-select {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(46,35,25,0.25);
  border-radius: 4px;
  padding: 11px 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E2319' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  max-width: 260px;
}

/* Input */
.ps-input {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(46,35,25,0.25);
  border-radius: 4px;
  padding: 11px 16px;
  width: 100%;
  transition: border-color 0.18s;
}
.ps-input:focus { outline: none; border-color: var(--ink); }
.ps-input::placeholder { color: rgba(46,35,25,0.35); }

/* Unit row (input + cm/ft toggle) */
.ps-unit-row { display: flex; gap: 12px; align-items: stretch; max-width: 320px; }
.ps-unit-row .ps-input { flex: 1; }
.ps-unit-toggle { display: flex; border: 1px solid rgba(46,35,25,0.25); border-radius: 4px; overflow: hidden; }
.ps-unit-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  border-right: 1px solid rgba(46,35,25,0.15);
  transition: background 0.15s, color 0.15s;
}
.ps-unit-btn:last-child { border-right: none; }
.ps-unit-btn.active { background: var(--ink); color: var(--cream); }

/* Body type cards */
.ps-body-types { display: flex; gap: 14px; flex-wrap: wrap; }
.ps-body-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(46,35,25,0.2);
  border-radius: 8px;
  padding: 16px 18px 12px;
  cursor: pointer;
  min-width: 80px;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s;
}
.ps-body-btn span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.ps-body-btn.active {
  border-color: var(--terracotta);
  background: rgba(176,84,62,0.06);
  color: var(--terracotta);
}
.ps-body-icon { width: 40px; height: 56px; }
.ps-body-icon svg { width: 100%; height: 100%; }

/* Help button */
.ps-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--terracotta);
  background: transparent;
  border: 1px solid rgba(176,84,62,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.18s;
}
.ps-help-btn:hover, .ps-help-btn.active { background: rgba(176,84,62,0.07); }

/* Help panel */
.ps-help-panel {
  display: none;
  background: rgba(46,35,25,0.04);
  border-radius: 8px;
  padding: 28px;
  margin-top: -8px;
}
.ps-help-panel.open { display: block; }
.ps-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}
.ps-help-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.ps-help-icon { width: 60px; height: 80px; color: var(--ink); opacity: 0.7; }
.ps-help-icon svg { width: 100%; height: 100%; }
.ps-help-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.ps-help-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.6;
}

/* Measurement grid */
.ps-measure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}
.ps-measure-field { display: flex; flex-direction: column; gap: 0; }
.ps-measure-visual {
  width: 52px;
  height: 64px;
  margin-bottom: 12px;
}
.ps-measure-svg { width: 100%; height: 100%; color: var(--ink); opacity: 0.65; }

/* Checkboxes */
.ps-check-group { display: flex; flex-direction: column; gap: 20px; }
.ps-check-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}
.ps-checkbox { display: none; }
.ps-check-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(46,35,25,0.35);
  border-radius: 3px;
  margin-top: 2px;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.ps-checkbox:checked + .ps-check-custom {
  background: var(--ink);
  border-color: var(--ink);
}
.ps-checkbox:checked + .ps-check-custom::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--cream);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.ps-check-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
}
.ps-check-sub {
  font-size: 12px;
  color: var(--warm-grey);
  font-weight: 300;
}

/* Photo upload */
.ps-upload-wrap { display: flex; flex-direction: column; gap: 10px; }
.ps-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px dashed rgba(46,35,25,0.25);
  border-radius: 8px;
  padding: 36px 24px;
  cursor: pointer;
  color: var(--warm-grey);
  transition: border-color 0.18s, background 0.18s;
  text-align: center;
}
.ps-upload-area:hover { border-color: var(--ink); background: rgba(46,35,25,0.03); }
.ps-upload-input { display: none; }
.ps-upload-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
}
.ps-upload-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}
.ps-upload-note {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--warm-grey);
  font-weight: 300;
}

/* Submit */
.ps-submit-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 12px; }
.ps-submit-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  border-radius: 4px;
  padding: 16px 52px;
  cursor: pointer;
  transition: background 0.2s;
}
.ps-submit-btn:hover { background: var(--terracotta); }
.ps-skip-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.ps-skip-link:hover { color: var(--ink); }

/* ── FAQ PAGE ───────────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; padding-bottom: 80px; }

.faq-section { margin-bottom: 64px; }
.faq-section-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(46,35,25,0.1);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(46,35,25,0.1); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.faq-q:hover { color: var(--terracotta); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--warm-grey);
  transition: transform 0.25s var(--ease-smooth);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--terracotta); }

.faq-a {
  display: none;
  padding: 0 0 24px;
  flex-direction: column;
  gap: 12px;
}
.faq-item.open .faq-a { display: flex; }

.faq-a p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.8;
}
.faq-a p strong { font-weight: 400; color: var(--ink); }
.faq-a p a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.faq-a p a:hover { color: var(--terracotta); }
