/* DecorAI — AI Interior Design App — styles */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F3EDE4;
  --bg-soft: #EFE8DC;
  --bg-card: #FFFFFF;
  --ink: #2B2A28;
  --ink-soft: #4A4742;
  --mute: #6F6B64;
  --line: #E8E1D5;
  --line-strong: #D9CFBD;
  --sage: #7A8F6A;
  --sage-dark: #5D7051;
  --clay: #B88A63;
  --taupe: #A99B85;
  --stone: #D6CBBA;
  --shadow-sm: 0 1px 2px rgba(43, 42, 40, 0.05);
  --shadow: 0 8px 30px rgba(43, 42, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(43, 42, 40, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1200px;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 5.5vw, 68px); line-height: 1.06; font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 500; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(17px, 1.3vw, 20px); color: var(--ink-soft); line-height: 1.6; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

/* Header / navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand-name { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .badge-link img { height: 40px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    inset: 72px 24px auto 24px;
    background: var(--bg-card);
    padding: 18px;
    border-radius: var(--radius);
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
}

/* Badge links */
.badge-link { display: inline-flex; transition: transform 0.18s ease, opacity 0.18s ease; }
.badge-link:hover { transform: translateY(-2px); opacity: 0.92; }
.badge-link img { height: 56px; width: auto; }

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.badges.sm .badge-link img { height: 48px; }

/* Hero */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(122, 143, 106, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.hero h1 .serif-i { font-style: italic; color: var(--sage-dark); font-weight: 400; }
.hero .lead { max-width: 520px; margin: 18px 0 30px; }
.hero-meta {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  flex-wrap: wrap;
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.stars .star { color: #D6A352; font-size: 16px; letter-spacing: 2px; }
.trust-note { font-size: 13px; color: var(--mute); display: inline-flex; align-items: center; gap: 8px; }
.trust-dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; display: inline-block; }

/* Before/After slider */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  user-select: none;
  background: var(--bg-soft);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(43, 42, 40, 0.15), 0 6px 20px rgba(43, 42, 40, 0.15);
  transform: translateX(-1px);
  cursor: ew-resize;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(43, 42, 40, 0.18);
}
.ba-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.05em;
}
.ba-tag {
  position: absolute;
  top: 18px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.ba-tag.left { left: 18px; }
.ba-tag.right { right: 18px; }

/* Sections */
section { padding: 90px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 0 auto; max-width: 620px; }

/* Showcase grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.showcase-card {
  position: relative;
  grid-column: span 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.showcase-card.tall { grid-column: span 2; }
.showcase-card.wide { grid-column: span 4; }
.showcase-card .ba-slider { border-radius: 0; border: none; box-shadow: none; aspect-ratio: 4/3; }
.showcase-card.tall .ba-slider { aspect-ratio: 3/4; }
.showcase-card-meta {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.showcase-card h3 { margin: 0; font-size: 20px; }
.showcase-card .room-tag { font-size: 12px; color: var(--sage-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card, .showcase-card.tall, .showcase-card.wide { grid-column: span 1; }
}

/* Feature grid */
.features {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--sage-dark);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: 15px; }
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 44px;
  color: var(--sage);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step p { font-size: 15px; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* SEO blocks (split) */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.seo-split.reverse { direction: rtl; }
.seo-split.reverse > * { direction: ltr; }
.seo-split .seo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.seo-split img { width: 100%; height: 100%; object-fit: cover; }
.seo-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.seo-bullets li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.seo-bullets li:last-child { border-bottom: 0; }
.seo-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  background-image: linear-gradient(135deg, var(--sage), var(--sage-dark));
}
.seo-bullets li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 10px;
  color: #fff; font-size: 12px; font-weight: 700;
}
@media (max-width: 900px) {
  .seo-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Styles grid */
.styles {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.style-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.style-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.style-card:hover img { transform: scale(1.04); }
.style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 42, 40, 0.55), transparent 55%);
}
.style-card h3 {
  position: absolute;
  bottom: 16px; left: 20px;
  color: #fff;
  font-size: 20px;
  margin: 0;
  z-index: 1;
  font-weight: 500;
}
@media (max-width: 900px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.room-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.room-card.tall { grid-column: span 4; }
.room-card.tall img { aspect-ratio: 3/4; }
.room-card.wide { grid-column: span 8; }
.room-card.med { grid-column: span 6; }
.room-card.sm { grid-column: span 4; }
.room-caption {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.room-caption h3 { margin: 0; font-size: 19px; }
.room-caption span { font-size: 13px; color: var(--mute); }
@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card.tall, .room-card.wide, .room-card.med, .room-card.sm { grid-column: span 1; }
}

/* Use cases */
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.use-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.use-card .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--clay);
}
.use-card h3 { font-size: 18px; margin-bottom: 6px; }
.use-card p { font-size: 15px; margin: 0; }
@media (max-width: 900px) { .use-cases { grid-template-columns: 1fr; } }

/* Benefits row */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.benefit {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 14px;
  align-items: center;
}
.benefit .ico { color: var(--sage-dark); width: 22px; height: 22px; flex-shrink: 0; }
.benefit strong { font-weight: 600; color: var(--ink); }
.benefit p { margin: 0; font-size: 15px; }
@media (max-width: 900px) { .benefits-row { grid-template-columns: 1fr; } }

/* Inspiration gallery */
.inspiration {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.insp-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.insp-item img { width: 100%; height: 100%; object-fit: cover; }
.insp-item.lg { grid-column: span 3; grid-row: span 2; }
.insp-item.md { grid-column: span 2; grid-row: span 2; }
.insp-item.sm { grid-column: span 2; }
.insp-item.xs { grid-column: span 1; }
@media (max-width: 900px) {
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .insp-item, .insp-item.lg, .insp-item.md, .insp-item.sm, .insp-item.xs { grid-column: span 1; grid-row: span 1; }
}

/* Comparison table */
.compare {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-top: 1px solid var(--line);
}
.compare-row:first-child { border-top: none; background: var(--bg-alt); }
.compare-row > div {
  padding: 18px 22px;
  font-size: 15px;
}
.compare-row .h { font-weight: 600; font-family: var(--serif); font-size: 16px; }
.compare-row .app { background: rgba(122, 143, 106, 0.05); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.compare-row:first-child .app { background: var(--sage-dark); color: #fff; font-weight: 600; }
.compare-row:first-child .other { background: var(--bg-alt); font-weight: 600; }
.compare .yes { color: var(--sage-dark); font-weight: 600; }
.compare .no { color: var(--mute); }
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { border-top: 1px solid var(--line); }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card .stars .star { color: #D6A352; font-size: 18px; letter-spacing: 2px; }
.review-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--taupe));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.review-name { font-size: 14px; font-weight: 500; }
.review-loc { font-size: 13px; color: var(--mute); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 8px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.faq-q .chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-q .chev { transform: rotate(45deg); background: var(--sage); color: #fff; }
.faq-a {
  padding: 0 0 22px;
  color: var(--ink-soft);
  max-width: 720px;
  font-size: 16px;
}
.faq-a p { margin: 0 0 0.7em; }
.faq-a p:last-child { margin-bottom: 0; }

/* Download section */
.download {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute;
  right: -20%;
  top: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 138, 99, 0.12), transparent 70%);
}
.download-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.download-copy h2 { margin-bottom: 16px; }
.download-copy .brand-mini { display: inline-flex; gap: 10px; align-items: center; margin-bottom: 20px; }
.download-copy .brand-mini img { width: 44px; height: 44px; border-radius: 11px; }
.download-copy .brand-mini span { font-family: var(--serif); font-size: 22px; }
.download-badges { margin-top: 28px; }
.download-meta {
  display: flex;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--mute);
}
.download-meta div strong { display: block; color: var(--ink); font-size: 15px; }

/* iPhone frame */
.iphone {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  background: #1b1a18;
  border-radius: 50px;
  padding: 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 0 0 2px #2a2826,
    0 30px 80px rgba(43, 42, 40, 0.28),
    0 10px 20px rgba(43, 42, 40, 0.12);
}
.iphone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0b0b0a;
  border-radius: 20px;
  z-index: 2;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .iphone { max-width: 300px; }
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 120px 0 110px;
  position: relative;
  background-image: url('/public/images/gallery/final-cta-room.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 20, 0.55), rgba(26, 24, 20, 0.78));
}
.final-cta .container { position: relative; }
.final-cta h2 { color: #fff; max-width: 820px; margin: 0 auto 20px; }
.final-cta .lead { color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0 auto 36px; }
.final-cta .badges { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { width: 44px; height: 44px; border-radius: 11px; margin-bottom: 14px; }
.footer-brand h4 { color: #fff; font-family: var(--serif); font-size: 24px; margin-bottom: 10px; font-weight: 500; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.72); transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-badges { display: flex; gap: 10px; margin-top: 20px; }
.footer-badges img { height: 44px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Utility */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-760 { max-width: 760px; }

/* Fade-up motion */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Legal pages */
.legal {
  padding: 80px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 { font-size: 44px; margin-bottom: 8px; }
.legal .meta { color: var(--mute); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 26px; margin-top: 44px; margin-bottom: 14px; }
.legal h3 { font-size: 20px; margin-top: 26px; margin-bottom: 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--sage-dark); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.legal th, .legal td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal th { background: var(--bg-alt); font-weight: 600; color: var(--ink); }
