/* ============================================================
   Baan Vintage — บ้านวินเทจ
   Vintage / retro aesthetic. Palette drawn from logo + banner.
   ============================================================ */

:root {
  /* Paper / cream (from logo + banner background) */
  --paper:      #ece1cd;
  --paper-2:    #f4ecdd;
  --paper-3:    #e3d6bf;
  /* Ink (logo lettering) */
  --ink:        #1c1a16;
  --ink-soft:   #423b30;
  --ink-mute:   #6f6757;
  /* Ochre gold (logo accent) */
  --gold:       #b8975a;
  --gold-2:     #cdad6c;
  --gold-deep:  #8f7038;
  /* Terracotta / rust (logo stars + banner tee) */
  --rust:       #9c4a2f;
  --rust-2:     #b85c3c;
  /* Deep forest (banner frame) — dark sections */
  --forest:     #1e2d27;
  --forest-2:   #263a31;

  --maxw: 1180px;
  --ff-display: "Oswald", "Kanit", system-ui, sans-serif;
  --ff-thai-display: "Kanit", "Oswald", sans-serif;
  --ff-body: "IBM Plex Sans Thai", "Inter", system-ui, -apple-system, sans-serif;

  --shadow: 0 18px 50px -22px rgba(28,26,22,0.55);
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

/* Paper grain texture overlay (subtle, SVG noise) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
:lang(th), .th { font-family: var(--ff-body); letter-spacing: 0; text-transform: none; }
h2.section-title { font-size: clamp(2rem, 5vw, 3.4rem); }
.eyebrow {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  display: inline-block;
  margin-bottom: 14px;
}
.eyebrow::before { content: "— "; color: var(--gold); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.lead-th { font-size: 1.18rem; color: var(--ink); }
.lead-en {
  font-size: 0.92rem; color: var(--ink-mute);
  font-style: italic; letter-spacing: 0.3px; margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600; font-size: 0.92rem;
  padding: 15px 30px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-line {
  background: #06C755; color: #fff; border-color: #06C755;
  box-shadow: 0 10px 24px -10px rgba(6,199,85,0.7);
}
.btn-line:hover { background: #05b14c; box-shadow: 0 14px 28px -10px rgba(6,199,85,0.85); }
.btn-ghost { background: transparent; color: var(--paper-2); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper-2); border-color: var(--ink); }
.btn-ink:hover { background: var(--rust); border-color: var(--rust); }
.line-glyph { font-weight: 700; letter-spacing: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(236,225,205,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(28,26,22,0.12);
}
.brand-mark { display: flex; align-items: center; gap: 11px; }
.brand-mark img { width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow); }
.brand-mark .name {
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; font-size: 1.05rem; color: var(--paper-2);
  transition: color .3s ease;
}
.site-header.scrolled .brand-mark .name { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: 0.82rem; letter-spacing: 1.5px; color: var(--paper-2);
  font-weight: 500; transition: color .2s ease; position: relative;
}
.site-header.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--rust); transition: width .2s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { padding: 9px 20px; font-size: 0.78rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto;
  background: var(--paper-2); transition: .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--paper-2);
  padding: 120px 24px 60px;
  background: var(--forest);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  object-fit: cover; width: 100%; height: 100%;
  filter: saturate(0.85) brightness(0.62) contrast(1.05);
}
.hero::after { /* warm vintage vignette + tone */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(30,45,39,0.25) 0%, rgba(20,28,24,0.82) 100%),
    linear-gradient(180deg, rgba(28,26,22,0.55) 0%, rgba(28,26,22,0.15) 35%, rgba(28,26,22,0.85) 100%);
  mix-blend-mode: multiply;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-logo {
  width: 116px; height: 116px; border-radius: 50%;
  margin: 0 auto 28px; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.7);
  border: 3px solid rgba(244,236,221,0.25);
}
.hero h1 {
  font-size: clamp(3rem, 11vw, 6.5rem); line-height: 0.92;
  letter-spacing: 2px; margin-bottom: 6px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.5);
}
.hero .tagline {
  font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 6px; font-size: clamp(0.8rem, 2.4vw, 1.15rem);
  color: var(--gold-2); margin-bottom: 26px; font-weight: 500;
}
.hero .hero-desc-th { font-size: 1.12rem; color: var(--paper); margin-bottom: 4px; }
.hero .hero-desc-en {
  font-size: 0.92rem; color: rgba(244,236,221,0.72);
  font-style: italic; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--gold-2); font-family: var(--ff-display);
  letter-spacing: 3px; font-size: 0.7rem; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--ink); color: var(--paper); overflow: hidden;
  padding: 16px 0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0; will-change: transform;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 3px; font-size: 0.95rem; padding: 0 26px; font-weight: 500;
}
.marquee span::after { content: "✦"; color: var(--rust); margin-left: 52px; }
@keyframes scroll-x { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---------- Story ---------- */
.story { background: var(--paper-2); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.story-copy h2 { margin-bottom: 22px; }
.story-copy p { margin-bottom: 16px; max-width: 46ch; }
.story-copy .baan-accent { color: var(--rust); font-weight: 700; }
.story-figure { position: relative; }
.story-figure img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 6px solid var(--paper); width: 100%;
}
.story-figure .stamp {
  position: absolute; right: -14px; top: -22px;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--rust); color: var(--paper-2);
  display: grid; place-content: center; text-align: center;
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: 0.74rem; letter-spacing: 1.5px; line-height: 1.3;
  transform: rotate(-12deg); box-shadow: var(--shadow);
  border: 2px dashed rgba(244,236,221,0.6);
}
.story-figure .stamp b { font-size: 1.5rem; display: block; }

/* ---------- The Look ---------- */
.look { background: var(--forest); color: var(--paper); }
.look .eyebrow { color: var(--gold-2); }
.look .eyebrow::before { color: var(--rust-2); }
.look-head { text-align: center; margin-bottom: 56px; }
.look-head h2 { color: var(--paper-2); }
.look-head p { color: rgba(244,236,221,0.7); max-width: 54ch; margin: 14px auto 0; }
.look-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.look-card {
  background: var(--forest-2); border: 1px solid rgba(184,151,90,0.28);
  border-radius: var(--radius); padding: 38px 30px; transition: transform .25s ease, border-color .25s ease;
}
.look-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.look-card .num {
  font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 18px;
}
.look-card h3 { font-size: 1.5rem; color: var(--paper-2); margin-bottom: 12px; letter-spacing: 1px; }
.look-card p.th { color: var(--paper); font-size: 1.02rem; }
.look-card p.en { color: rgba(244,236,221,0.6); font-size: 0.85rem; font-style: italic; margin-top: 6px; }

/* ---------- Categories ---------- */
.cats { background: var(--paper); }
.cats-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.cats-head p { color: var(--ink-mute); max-width: 40ch; }
.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cat {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: var(--radius); background: var(--forest);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; color: var(--paper-2); isolation: isolate;
  border: 1px solid rgba(28,26,22,0.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat::before { /* tonal gradient unique-ish per card via nth */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, var(--forest-2), var(--ink));
}
.cat::after { /* grain darken at bottom for legibility */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
}
.cat:nth-child(4n+1)::before { background: linear-gradient(160deg, #2c3a2e, #161d18); }
.cat:nth-child(4n+2)::before { background: linear-gradient(160deg, #5a3322, #241410); }
.cat:nth-child(4n+3)::before { background: linear-gradient(160deg, #4a4327, #1f1c12); }
.cat:nth-child(4n+4)::before { background: linear-gradient(160deg, #3a2f3d, #16121a); }
.cat .cat-num {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--ff-display); font-size: 0.78rem; letter-spacing: 2px;
  color: var(--gold-2); opacity: 0.9;
}
.cat .cat-name {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: 1.18rem; line-height: 1.05; letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.cat .cat-sub { font-size: 0.78rem; color: var(--gold-2); margin-top: 6px; font-style: italic; }
.cats-grid:not(.expanded) .cat:nth-child(n+9) { display: none; }
.cats-toggle-wrap { text-align: center; margin-top: 32px; }
.cats-toggle { cursor: pointer; }
.cats-note { margin-top: 18px; font-size: 0.85rem; color: var(--ink-mute); font-style: italic; }

/* ---------- Meet the Artists ---------- */
.artists { background: var(--forest); color: var(--paper); }
.artists .eyebrow { color: var(--gold-2); }
.artists .eyebrow::before { color: var(--rust-2); }
.artists-head { text-align: center; margin-bottom: 52px; }
.artists-head h2 { color: var(--paper-2); }
.artists-head p { color: rgba(244,236,221,0.72); max-width: 58ch; margin: 14px auto 0; }
.artists-head .lead-en { color: rgba(244,236,221,0.55); }
.artists-fold { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.artists-fold details {
  background: rgba(244,236,221,0.06);
  border: 1px solid rgba(184,151,90,0.35);
  border-radius: var(--radius);
}
.artists-fold details[open] { border-color: var(--gold); }
.artists-fold summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.artists-fold summary::-webkit-details-marker { display: none; }
.artists-fold .af-no {
  font-family: var(--ff-display); font-size: 0.9rem; letter-spacing: 2px;
  color: var(--gold-2); flex: 0 0 auto;
}
.artists-fold .af-title {
  flex: 1; font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 0.5px; font-size: 1.05rem; color: var(--paper-2);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.artists-fold .soon {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.62rem; color: var(--paper-2); background: var(--rust);
  padding: 4px 11px; border-radius: 50px;
}
.artists-fold .plus {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-content: center; background: var(--gold); color: var(--ink);
  font-family: var(--ff-display); font-size: 1.35rem; line-height: 1;
  transition: transform .25s ease;
}
.artists-fold details[open] .plus { transform: rotate(45deg); }
.artists-fold .af-body { padding: 0 20px 20px 56px; color: rgba(244,236,221,0.8); }
.artists-fold .af-body .af-en { display: block; margin-top: 6px; font-size: 0.85rem; color: rgba(244,236,221,0.5); font-style: italic; }
.artists-note { text-align: center; margin-top: 28px; font-size: 0.85rem; color: rgba(244,236,221,0.5); font-style: italic; }

/* ---------- Lookbook ---------- */
.lookbook { background: var(--paper-3); }
.lookbook-head { text-align: center; margin-bottom: 48px; }
.lookbook-head p { color: var(--ink-mute); max-width: 50ch; margin: 12px auto 0; }
.lookbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot {
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background: repeating-linear-gradient(45deg, #d8cab1, #d8cab1 14px, #d2c3a8 14px, #d2c3a8 28px);
  border: 1px solid rgba(28,26,22,0.16);
  display: grid; place-content: center; text-align: center; color: var(--ink-soft);
  position: relative;
}
.shot.tall { aspect-ratio: 4 / 5; }
.shot .ph {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.82rem; color: var(--ink-soft);
}
.shot .ph small { display:block; font-family: var(--ff-body); text-transform:none; letter-spacing:0; font-style:italic; color: var(--ink-mute); margin-top:6px; font-size:0.78rem;}
.shot .frame-icon { font-size: 1.8rem; color: var(--gold-deep); margin-bottom: 8px; }

/* ---------- How to order ---------- */
.order { background: var(--ink); color: var(--paper); }
.order .eyebrow { color: var(--gold-2); }
.order .eyebrow::before { color: var(--rust-2); }
.order-head { text-align: center; margin-bottom: 56px; }
.order-head h2 { color: var(--paper-2); }
.order-head p { color: rgba(244,236,221,0.7); max-width: 52ch; margin: 14px auto 0; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { text-align: left; position: relative; padding-top: 14px; }
.step .step-num {
  font-family: var(--ff-display); font-size: 2.6rem; color: var(--gold);
  line-height: 1; margin-bottom: 12px; display: block;
}
.step h3 { font-size: 1.05rem; color: var(--paper-2); margin-bottom: 8px; letter-spacing: 0.5px; }
.step p.th { font-size: 0.96rem; color: var(--paper); }
.step p.en { font-size: 0.8rem; color: rgba(244,236,221,0.6); font-style: italic; margin-top: 5px; }
.order-cta { text-align: center; margin-top: 56px; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(28,26,22,0.16); padding: 6px 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 1.05rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-en { font-family: var(--ff-body); text-transform: none; letter-spacing: 0; font-style: italic; font-size: 0.82rem; color: var(--ink-mute); display:block; margin-top:3px; font-weight: 400;}
.faq summary .q-th { display:block; }
.faq .plus { flex: 0 0 auto; font-family: var(--ff-display); font-size: 1.6rem; color: var(--rust); transition: transform .25s ease; }
.faq details[open] .plus { transform: rotate(45deg); }
.faq .answer { padding: 0 4px 22px; color: var(--ink-soft); }
.faq .answer .a-en { display:block; margin-top: 6px; font-size: 0.85rem; color: var(--ink-mute); font-style: italic; }

/* ---------- Final CTA + Footer ---------- */
.cta-band {
  background: var(--rust); color: var(--paper-2); text-align: center;
  padding: clamp(56px, 8vw, 96px) 24px;
}
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); color: var(--paper-2); margin-bottom: 14px; }
.cta-band p { color: rgba(244,236,221,0.85); margin-bottom: 30px; font-size: 1.05rem; }
.cta-band .btn-line { box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4); }

/* ---------- Thank-you (last word — blended dark section) ---------- */
.thanks { background: var(--forest); color: var(--paper); text-align: center; padding: clamp(64px, 9vw, 110px) 24px clamp(8px, 3vw, 28px); }
.thanks-inner { max-width: 640px; }
.thanks .eyebrow { color: var(--gold-2); }
.thanks .eyebrow::before { color: var(--rust-2); }
.tc-head-th { font-family: var(--ff-thai-display); text-transform: none; letter-spacing: 0; color: var(--paper-2); margin-bottom: 20px; }
.tc-body-th { color: rgba(244,236,221,0.78); font-size: 1.05rem; max-width: 48ch; margin: 0 auto 24px; }
.tc-points { list-style: none; margin: 0; padding: 0; }
.tc-points li { color: var(--paper-2); font-weight: 500; font-size: 1.12rem; line-height: 2; }
.tc-points li::before { content: "\2014 "; color: var(--gold-2); }
.tc-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px auto; color: var(--gold-2); }
.tc-divider::before, .tc-divider::after { content: ""; height: 1px; width: 60px; background: rgba(184,151,90,0.4); }
.tc-body-en { color: rgba(244,236,221,0.6); font-size: 0.95rem; font-style: italic; max-width: 46ch; margin: 0 auto 18px; }
.tc-italic { color: var(--gold-2); font-style: italic; font-size: 1.12rem; line-height: 1.8; }

/* 3-column closing band: brand · mission · contact (same level) */
.thanks-row { max-width: var(--maxw); margin: 30px auto 0; display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 30px 48px; }
.thanks-row .tr-left { text-align: left; }
.thanks-row .tr-center { text-align: center; }
.thanks-row .tr-right { text-align: right; }
.thanks-row .tr-center .tc-divider { margin-top: 0; }
.thanks-row .tr-center .tc-italic { margin-bottom: 0; }
.tr-tagline { color: rgba(244,236,221,0.72); font-size: 0.92rem; max-width: 34ch; }
@media (max-width: 900px) {
  .thanks-row { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .thanks-row .tr-left, .thanks-row .tr-right { text-align: center; }
  .thanks-row .footer-brand { justify-content: center; }
  .thanks-row .tr-tagline { margin-left: auto; margin-right: auto; }
}

footer.site-footer { background: var(--forest); color: rgba(244,236,221,0.72); padding: 0 24px 36px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand .name { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px; color: var(--paper-2); font-size: 1.2rem; }
.footer-col h4 { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px; color: var(--gold-2); font-size: 0.82rem; margin-bottom: 14px; }
.footer-col a { display: block; margin-bottom: 9px; transition: color .2s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 22px; border-top: 1px solid rgba(244,236,221,0.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(244,236,221,0.5); }
.footer-tag { font-family: var(--ff-display); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ---------- Floating LINE button ---------- */
.float-line {
  position: fixed; right: 20px; bottom: 20px; z-index: 1000;
  display: inline-flex; align-items: center; gap: 9px;
  background: #06C755; color: #fff; padding: 13px 20px; border-radius: 50px;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 12px 28px -8px rgba(6,199,85,0.7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-line:hover { transform: translateY(-3px) scale(1.03); }
.float-line .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }

/* ---------- Social icons ---------- */
.socials { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.socials.center { justify-content: center; }
.soc {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.soc svg { width: 21px; height: 21px; fill: currentColor; }
.soc:hover { transform: translateY(-3px); }
/* On the rust CTA band */
.cta-band .social-label {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 3px;
  font-size: 0.74rem; color: rgba(244,236,221,0.8); margin: 34px 0 14px;
}
.cta-band .soc { background: rgba(20,16,12,0.22); color: var(--paper-2); border-color: rgba(244,236,221,0.35); }
.cta-band .soc:hover { background: var(--paper-2); color: var(--rust); border-color: var(--paper-2); }
/* In the footer */
.site-footer .soc { background: rgba(244,236,221,0.07); color: var(--paper-2); border-color: rgba(184,151,90,0.35); }
.site-footer .soc:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-col .socials { margin-top: 16px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .look-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-figure { order: -1; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--forest); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 22px; padding: 40px; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--paper-2) !important; font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid:not(.expanded) .cat:nth-child(n+7) { display: none; }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .float-line span.label { display: none; }
  .float-line { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
