/* ===========================================================
   LUXE LANE PREMIUM — DESIGN SYSTEM
   Palette: near-black, warm cream, gold accent
   Type: Archivo Black (display) + Inter (body)
   =========================================================== */

:root {
  --ink: #111111;
  --ink-2: #1A1A1A;
  --accent: #E8A93B;
  --accent-dark: #b98713;
  --cream: #F7F3EC;
  --white: #FFFFFF;
  --muted: #6E6A63;
  --line: #E5E0D5;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius: 8px;

  --ff-display: "Archivo Black", "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(17,17,17,.05), 0 4px 12px rgba(17,17,17,.04);
  --shadow-md: 0 8px 30px rgba(17,17,17,.08);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--ff-display); letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container.narrow { max-width: 880px; }
.container.center { text-align: center; }

.center { text-align: center; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ---------- Section Title (large editorial) ---------- */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 6.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}
.section-title.big {
  font-size: clamp(46px, 9vw, 96px);
  line-height: .98;
}
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.section-sub.light { color: rgba(255,255,255,.72); }

/* accent styles — fill or outline */
.accent-fill { color: var(--accent); }
.accent-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
}
@media (max-width: 600px) {
  .accent-outline { -webkit-text-stroke-width: 1.4px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  background: var(--ink);
  color: var(--cream);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

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

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

.btn-block { width: 100%; }

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,243,236,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar.scrolled { background: rgba(247,243,236,.98); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); letter-spacing: .04em; font-size: 14px;
  color: var(--ink);
}
.nav-logo .nav-mark { display: inline-flex; color: var(--accent); }
.nav-logo.light { color: var(--cream); }
.nav-logo.light .nav-mark { color: var(--accent); }

.nav-menu {
  display: flex; align-items: center; justify-content: center; gap: 30px;
}
.nav-menu a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav-menu a:hover { color: var(--accent-dark); }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { padding: 12px 22px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink); color: var(--cream);
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  flex: 1;
  display: flex; flex-direction: column; padding: 24px var(--gutter);
}
.mobile-close {
  align-self: flex-end;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--cream); margin-bottom: 24px;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 20px;
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(28px, 8vw, 44px);
  letter-spacing: -.01em;
  margin: 12px 0 36px;
}
.mobile-nav a { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-cta { margin-top: auto; }

/* ===========================================================
   SECTION 1 — HERO
   =========================================================== */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy { position: relative; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(46px, 8vw, 96px);
  line-height: .96;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--ink);
  letter-spacing: -.03em;
}
.hero-title .line { display: block; }
.hero-sub {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 460px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  position: absolute; top: -10px; right: 38%;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--accent); color: var(--ink);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-sm);
}
.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}

/* ===========================================================
   SECTION 2 — PRESS STRIP
   =========================================================== */
.press-strip {
  padding: 36px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.press-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.press-logos {
  display: flex; align-items: center; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap;
}
.press-logo {
  font-family: var(--ff-display);
  font-size: clamp(13px, 1.4vw, 18px);
  color: var(--muted);
  opacity: .55;
  letter-spacing: .12em;
}

/* ===========================================================
   SECTION 3 — ABOUT + STATS
   =========================================================== */
.about {
  padding: clamp(70px, 10vw, 130px) 0 0;
  background: var(--cream);
}
.about .section-title {
  margin-bottom: 30px;
}
.about .narrow { padding-bottom: 64px; }
.stats-bar {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(36px, 6vw, 64px) 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,243,236,.72);
}

/* ===========================================================
   SECTION 4 — IMPACT (RESULTS)
   =========================================================== */
.results {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--cream);
}
.results .container + .container { margin-top: 36px; }
.results-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: stretch;
}
.results-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.results-media img { width: 100%; height: 100%; object-fit: cover; }
.results-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.result-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.result-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 50%;
  margin-bottom: 6px;
}
.result-card h3 {
  font-family: var(--ff-body);
  font-size: 18px; font-weight: 700; letter-spacing: -.01em;
}
.result-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ===========================================================
   SECTION 5 — CHOOSE US
   =========================================================== */
.choose {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--white);
}
.choose .container + .container { margin-top: 36px; }
.choose-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: start;
}
.choose-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky; top: 90px;
  box-shadow: var(--shadow-md);
}
.choose-media img { width: 100%; height: 100%; object-fit: cover; }
.choose-copy .lead {
  font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 0 28px;
}

/* accordion (shared) */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  background: transparent; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(16px, 1.6vw, 22px); letter-spacing: -.005em;
  color: var(--ink);
  text-align: left;
}
.acc-trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.acc-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  font-size: 18px; font-family: var(--ff-body); line-height: 1;
  background: var(--cream); color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.acc-item.open .acc-icon { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.acc-body { display: none; padding: 0 4px 22px; color: var(--muted); }
.acc-body p { margin: 0; }
.acc-item.open .acc-body { display: block; }

/* ===========================================================
   SECTION 6 — COLLECTIONS (numbered)
   =========================================================== */
.collections {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--cream);
}
.collections .center { margin-bottom: 56px; }
.coll-list { display: flex; flex-direction: column; gap: clamp(28px, 5vw, 56px); }
.coll-row {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.coll-row.reverse { grid-template-columns: 1fr 1.05fr; direction: rtl; }
.coll-row.reverse > * { direction: ltr; }
.coll-img { aspect-ratio: 4/3; overflow: hidden; }
.coll-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.coll-row:hover .coll-img img { transform: scale(1.04); }
.coll-text { padding: clamp(24px, 4vw, 48px); }
.coll-num {
  display: inline-block; font-family: var(--ff-display); font-size: 14px;
  color: var(--accent); letter-spacing: .12em; margin-bottom: 14px;
  border: 1px solid var(--accent); padding: 4px 10px; border-radius: 20px;
}
.coll-text h3 {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(26px, 3vw, 36px); letter-spacing: -.01em; margin: 0 0 12px;
}
.coll-text p { color: var(--muted); max-width: 460px; }
.coll-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.coll-bullets li {
  background: var(--cream); border: 1px solid var(--line); border-radius: 30px;
  padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--ink);
}

/* ===========================================================
   SECTION 7 — MEMBER PLANS (dark)
   =========================================================== */
.pricing {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.pricing .section-title { color: var(--cream); }
.pricing .container.center { margin-bottom: 40px; }

.plan-tabs {
  display: inline-flex; gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px; border-radius: 40px;
  margin-top: 8px;
}
.plan-tab {
  background: transparent; color: var(--cream);
  border: 0; padding: 10px 22px; border-radius: 30px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.plan-tab:hover { color: var(--accent); }
.plan-tab.active { background: var(--accent); color: var(--ink); }

.plan-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: stretch;
  margin-top: 36px;
}
.plan-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
}
.plan-tier {
  font-family: var(--ff-display); font-size: 13px; letter-spacing: .22em;
  color: var(--accent-dark);
}
.plan-price {
  display: flex; align-items: flex-end; gap: 4px; line-height: 1;
  font-family: var(--ff-display); color: var(--ink);
}
.plan-price .currency { font-size: clamp(20px, 2vw, 28px); padding-bottom: 12px; }
.plan-price .amount { font-size: clamp(64px, 7vw, 96px); }
.plan-price .per { font-size: 14px; color: var(--muted); font-weight: 500; padding-bottom: 14px; }
.plan-tag { color: var(--muted); font-size: 15px; margin: 0; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 8px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink);
}
.plan-features svg { color: var(--accent-dark); flex-shrink: 0; }
.plan-media {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
}
.plan-media img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================================
   SECTION 8 — STYLE JOURNAL (image collage / masonry)
   =========================================================== */
.journal {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--cream);
}
.journal .container { margin-bottom: 28px; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.journal-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.journal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
  opacity: .96;
}
.journal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17,17,17,.55));
  opacity: 0; transition: opacity .3s var(--ease);
}
.journal-item:hover img { transform: scale(1.06); }
.journal-item:hover::after { opacity: 1; }
.journal-item.tall { grid-row: span 2; }

/* ===========================================================
   SECTION 9 — REVIEWS
   =========================================================== */
.reviews {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--white);
}
.reviews .container.center { margin-bottom: 40px; }

.reviews-wrap {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr 56px;
  align-items: center; gap: 16px;
}
.rev-arrow {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.rev-arrow:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.rev-arrow:disabled { opacity: .4; cursor: not-allowed; }

.reviews-viewport {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc(50% - 12px);
  gap: 24px; overflow: hidden; scroll-behavior: smooth;
}
.review-card {
  background: var(--cream); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--line);
  position: relative;
}
.quote-mark {
  font-family: var(--ff-display); font-size: 64px; line-height: .6;
  color: var(--accent);
}
.review-card p {
  font-size: 18px; line-height: 1.55; color: var(--ink); margin: 0;
}
.reviewer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.reviewer img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 15px; }
.reviewer span { display: block; font-size: 13px; color: var(--muted); }

/* ===========================================================
   SECTION 10 — STYLE QUERIES (FAQ SPLIT)
   =========================================================== */
.faq {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--cream);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: stretch;
}
.faq-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.faq-media img { width: 100%; height: 100%; object-fit: cover; }
.faq-overlay-card {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(247,243,236,.95); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--line);
}
.faq-overlay-card h4 {
  font-family: var(--ff-display); text-transform: uppercase; font-size: 18px; margin: 0;
}
.faq-overlay-card p { color: var(--muted); font-size: 14px; margin: 0 0 6px; }
.faq-copy .section-title { margin-top: 8px; }
.faq-copy .section-sub { margin: 0 0 24px; max-width: 520px; }
.faq-copy .btn { margin-top: 22px; }
.faq-acc { margin-bottom: 22px; }

/* ===========================================================
   SECTION 11 — MARQUEE + NEWSLETTER
   =========================================================== */
.marquee-section {
  position: relative;
  background: var(--ink);
  padding: clamp(72px, 10vw, 120px) 0 clamp(96px, 14vw, 160px);
  overflow: hidden;
}
.marquee {
  position: relative;
  white-space: nowrap;
  display: flex;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 56px;
  animation: marquee 36s linear infinite;
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(72px, 14vw, 200px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  letter-spacing: -.02em;
  padding-right: 56px;
}
.marquee-track .dot {
  -webkit-text-stroke: 2px var(--accent);
  color: var(--accent);
  font-size: .5em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 90s; }
}

.newsletter {
  position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
  width: min(620px, calc(100% - var(--gutter)*2));
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  background: var(--cream); padding: 10px; border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.newsletter input {
  border: 0; outline: 0; background: transparent;
  padding: 14px 18px; font-family: inherit; font-size: 15px; color: var(--ink);
  border-radius: 30px;
}
.newsletter input::placeholder { color: var(--muted); }

/* ===========================================================
   SECTION 12 — CONTACT SPLIT
   =========================================================== */
.contact {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--cream);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
.contact-form .section-title { margin-bottom: 28px; }
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius); padding: 14px 16px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,169,59,.18);
}
.contact-form button { align-self: flex-start; margin-top: 6px; }
.form-status { font-size: 14px; color: var(--accent-dark); margin-top: 4px; }
.form-status.error { color: #b22d2d; }

.contact-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-card {
  position: absolute; right: 24px; top: 24px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(247,243,236,.96); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px;
}
.contact-card-photo {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.contact-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-card strong { display: block; font-size: 15px; font-family: var(--ff-display); letter-spacing: .02em; }
.contact-card span { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-card a { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.contact-card a:hover { color: var(--accent-dark); }

/* ===========================================================
   SECTION 13 — FOOTER
   =========================================================== */
.footer {
  background: var(--ink); color: rgba(247,243,236,.78);
  padding: clamp(60px, 8vw, 96px) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { max-width: 320px; color: rgba(247,243,236,.7); font-size: 14px; }
.footer h5 {
  font-family: var(--ff-body); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream); margin: 0 0 18px; font-weight: 600;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a, .footer ul span { font-size: 14px; color: rgba(247,243,236,.7); }
.footer ul a:hover { color: var(--accent); }

.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: var(--cream);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.socials a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding: 24px 0;
}
.footer-bottom .footer-legal, .footer-bottom .footer-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.footer-bottom a { font-size: 13px; color: rgba(247,243,236,.6); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom span { font-size: 12px; color: rgba(247,243,236,.4); }
.footer-copy { text-align: center; padding: 18px 0 32px; font-size: 12px; color: rgba(247,243,236,.45); border-top: 1px solid rgba(255,255,255,.06); margin-top: 12px; }

.footer-giant {
  font-family: var(--ff-display);
  font-size: clamp(110px, 22vw, 320px);
  line-height: .85;
  text-transform: uppercase;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247,243,236,.22);
  text-align: center;
  padding: 24px 16px 0;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: 1fr auto; }

  .hero-grid,
  .results-grid,
  .choose-grid,
  .faq-grid,
  .contact-grid,
  .plan-grid { grid-template-columns: 1fr; }
  .choose-media { position: relative; top: auto; }
  .coll-row, .coll-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-viewport { grid-auto-columns: 100%; }
}

@media (max-width: 768px) {
  .hero-badge { right: 8%; top: -8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .journal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .journal-item.tall { grid-row: span 1; }
  .reviews-wrap { grid-template-columns: 44px 1fr 44px; }
  .rev-arrow { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .hero-title { letter-spacing: -.02em; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .plan-tabs { width: 100%; justify-content: space-between; }
  .plan-tab { flex: 1; padding: 10px 8px; }
  .newsletter { grid-template-columns: 1fr; padding: 12px; border-radius: 22px; bottom: 18px; }
  .newsletter input { padding: 10px 12px; text-align: center; }
  .newsletter .btn { width: 100%; }
  .contact-card { left: 16px; right: 16px; top: auto; bottom: 16px; }
  .result-card { padding: 22px; }
}
