/* ReviewMate Marketing Design System — v2 */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Core palette — deep forest meets warm amber */
  --forest:    #0C3B2E;
  --forest-m:  #1A5C46;
  --pine:      #2D7A5E;
  --sage:      #5FAD8A;
  --mist:      #B8DDD0;

  --amber:     #D4930A;
  --amber-l:   #F5B430;
  --amber-w:   #FEF3C7;

  --cream:     #FDFCF7;
  --cream-d:   #F4F0E6;
  --cream-dd:  #E8E1D2;

  --charcoal:  #1C1917;
  --ink:       #2D2926;
  --stone:     #6B6560;
  --muted:     #A39E98;
  --rule:      #E2DDD6;

  --white:     #FFFFFF;
  --red:       #C0392B;
  --blue:      #1E6FA3;

  /* Type */
  --serif:     'DM Serif Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;

  /* Spacing */
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Shadows */
  --s1: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --s2: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --s3: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --s-glow: 0 0 0 3px rgba(45,122,94,.20);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
.serif { font-family: var(--serif); }

h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.28; color: var(--charcoal); }

.display-1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); letter-spacing: -0.01em; }
.display-2 { font-size: clamp(1.75rem, 3.2vw, 2.8rem); letter-spacing: 0; }
.display-3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: 0; }
.h4 { font-size: 1.25rem; }

.lead { font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.7; color: var(--stone); }
.body { font-size: 1rem; line-height: 1.7; }
.small { font-size: 0.875rem; }
.xs { font-size: 0.8rem; }

.text-forest { color: var(--forest); }
.text-pine   { color: var(--pine); }
.text-amber  { color: var(--amber); }
.text-stone  { color: var(--stone); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-italic { font-style: italic; }

a { color: var(--pine); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.wrap      { max-width: 1160px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.wrap-sm   { max-width: 720px;  margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.wrap-xs   { max-width: 560px;  margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

.section         { padding: clamp(56px, 8vw, 112px) 0; }
.section-sm      { padding: clamp(40px, 5vw, 72px) 0; }
.section-cream   { background: var(--cream); }
.section-cream-d { background: var(--cream-d); }
.section-forest  { background: var(--forest); }
.section-forest-m { background: var(--forest-m); }
.section-white   { background: var(--white); }

/* ── Navigation ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(12,59,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.04em;
  word-spacing: 0;
  display: flex; align-items: center; gap: 0;
}
.nav-logo em { color: var(--amber-l); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links .nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500;
  border-radius: var(--r-sm);
  transition: all 0.15s;
}
.nav-links .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { background: none; border: none; cursor: pointer; font-family: var(--sans); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--s3); border: 1px solid var(--rule);
  padding: 8px; min-width: 260px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 300;
}
.dropdown-menu.dropdown-open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-sm);
  color: var(--charcoal); font-size: 0.875rem; font-weight: 500;
  transition: background 0.12s; white-space: nowrap;
}
.dropdown-item:hover { background: var(--cream-d); text-decoration: none; color: var(--forest); }
.dropdown-item .di-icon { font-size: 1.1rem; width: 24px; text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  border-radius: var(--r); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-forest { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-forest:hover { background: var(--forest-m); border-color: var(--forest-m); color: var(--white); }

.btn-amber { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-l); border-color: var(--amber-l); color: var(--charcoal); }

.btn-amber-l { background: var(--amber-l); color: var(--charcoal); border-color: var(--amber-l); }
.btn-amber-l:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.7); }

.btn-outline-forest { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline-forest:hover { background: var(--forest); color: var(--white); }

.btn-white { background: var(--white); color: var(--forest); border-color: var(--white); }
.btn-white:hover { background: var(--cream); color: var(--forest); }

.btn-lg  { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--r-lg); }
.btn-sm  { padding: 8px 16px;  font-size: 0.85rem; }
.btn-xl  { padding: 18px 40px; font-size: 1.1rem;  border-radius: var(--r-xl); }
.btn-block { width: 100%; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--s1);
}
.card-hover { transition: all 0.2s ease; }
.card-hover:hover { box-shadow: var(--s2); transform: translateY(-2px); border-color: var(--mist); }

/* ── Feature / Proof items ── */
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
  background: var(--cream-d); flex-shrink: 0;
}
.feature-icon-forest { background: var(--forest); }
.feature-icon-amber  { background: var(--amber-w); }

/* ── Testimonial card ── */
.testimonial-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-xl); padding: 28px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--serif); font-size: 4rem; line-height: 1;
  color: var(--mist); position: absolute; top: 12px; left: 24px;
}
.testimonial-text { font-size: 1rem; line-height: 1.75; color: var(--ink); padding-top: 20px; }
.testimonial-author { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-d); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--forest); font-size: 0.875rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--stone); }
.stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 8px; }

/* ── Stat callouts ── */
.stat-callout { text-align: center; }
.stat-callout .num {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest); line-height: 1.1;
  display: block;
}
.stat-callout .num em { color: var(--amber); font-style: normal; }
.stat-callout .label { font-size: 0.875rem; font-weight: 500; color: var(--stone); margin-top: 4px; }

/* ── Process steps ── */
.step-line { display: flex; gap: 16px; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-family: var(--serif); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.step-content { padding-bottom: 36px; border-left: 2px solid var(--rule); margin-left: 20px; padding-left: 24px; }
.step-line:last-child .step-content { border-left: 2px solid transparent; }

/* ── Pricing ── */
.pricing-card {
  background: var(--white); border: 2px solid var(--rule);
  border-radius: var(--r-xl); padding: 40px;
  position: relative; overflow: hidden;
}
.pricing-card.featured { border-color: var(--forest); }
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute; top: 20px; right: -28px;
  background: var(--amber); color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 4px 40px;
  transform: rotate(45deg); letter-spacing: 0.05em;
}
.price-amount {
  font-family: var(--serif);
  font-size: 3rem; line-height: 1;
  color: var(--forest);
}
.price-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: 12px; display: inline-block; }
.price-period { font-size: 1rem; color: var(--stone); margin-left: 4px; }

/* ── Check list ── */
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list .check { color: var(--pine); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Badges / Tags ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }
.badge-green   { background: #D1FAE5; color: #065F46; }
.badge-amber   { background: var(--amber-w); color: #92400E; }
.badge-forest  { background: var(--forest); color: var(--white); }
.badge-mist    { background: var(--mist); color: var(--forest); }
.badge-outline { border: 1.5px solid var(--rule); color: var(--stone); }

/* ── Industry pill nav ── */
.industry-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.industry-pill {
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--rule); background: var(--white);
  font-size: 0.875rem; font-weight: 500; color: var(--stone);
  cursor: pointer; transition: all 0.15s; text-decoration: none;
}
.industry-pill:hover, .industry-pill.active {
  border-color: var(--pine); background: var(--forest); color: var(--white);
  text-decoration: none;
}

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { font-weight: 700; font-size: 0.875rem; padding: 12px 16px; border-bottom: 2px solid var(--rule); text-align: left; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--rule); font-size: 0.9rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--pine); font-weight: 700; }
.compare-table .no  { color: var(--muted); }
.compare-table .highlight-col { background: rgba(12,59,46,.04); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-family: var(--sans);
  font-size: 1rem; font-weight: 600; color: var(--charcoal);
  text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--forest); }
.faq-chevron { font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--stone); line-height: 1.75; font-size: 0.95rem; }
.faq-item.open .faq-a { display: block; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--cream-d); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 48px); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--stone); }
.trust-item .ti-icon { font-size: 1rem; }

/* ── Gradient pill (hero tag) ── */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--amber-l);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px;
}

/* ── Alert / Flash ── */
.alert { padding: 12px 16px; border-radius: var(--r); margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.alert-info    { background: #DBEAFE; color: #1E40AF; border: 1px solid #93C5FD; }

/* ── Forms ── */
.form-group  { margin-bottom: 20px; }
.form-label  { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--rule); border-radius: var(--r);
  font-family: var(--sans); font-size: 0.95rem; color: var(--charcoal);
  background: var(--white); transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus { outline: none; border-color: var(--pine); box-shadow: var(--s-glow); }
.form-hint   { font-size: 0.8rem; color: var(--stone); margin-top: 5px; }

/* ── Dashboard (keep minimal here — separate styles in styles.css) ── */

/* ── Hero section variants ── */
.hero-dark {
  background: var(--forest);
  color: var(--white);
  padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 100px);
  position: relative; overflow: hidden;
}
.hero-dark::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 110% -20%, rgba(212,147,10,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at -10% 120%, rgba(45,122,94,0.3) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-vertical {
  background: var(--forest-m);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
.hero-vertical::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(212,147,10,0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Stripe / band elements ── */
.stripe-amber { background: var(--amber); }
.stripe-mist  { background: var(--mist); }

/* ── Highlight ── */
.highlight { background: linear-gradient(120deg, var(--amber-w) 0%, var(--amber-w) 100%); padding: 2px 4px; border-radius: 3px; }

/* ── Blockquote-style stat ── */
.big-quote {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic; color: var(--forest);
  border-left: 4px solid var(--amber);
  padding: 16px 24px; margin: 0;
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

@media (max-width: 900px)  { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Flex helpers ── */
.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; } .gap-3 { gap: 24px; } .gap-4 { gap: 32px; } .gap-1 { gap: 8px; }

/* ── Spacing ── */
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 64px; }
.mb-1 { margin-bottom: 8px; }  .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }

/* ── Footer ── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-logo { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.footer-logo em { color: var(--amber-l); font-style: normal; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-heading { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Responsive nav ── */
/* ── Mobile nav right slot (lang pill + CTA + hamburger) ── */
.nav-mobile-right { display: none; align-items: center; gap: 8px; }
.nav-mobile-cta { display: none; }
.nav-lang-drawer-btn {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r);
  color: var(--white);
  font-size: 0.95rem; font-weight: 700;
  padding: 13px 16px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
  margin-bottom: 4px;
}
.nav-lang-drawer-btn:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: var(--white); }
.nav-mobile-toggle {
  background: none; border: none; cursor: pointer; padding: 8px 6px;
  display: flex; flex-direction: column; gap: 5px; justify-content: center;
}
.hamburger-bar {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-open .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-right { display: flex; }
  .nav-mobile-cta { display: inline-flex; }
  .hero-dark { padding: 56px 0 48px; }
  .hero-content { text-align: center; }
}

/* ── Misc ── */
.w-full { width: 100%; }
.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
img { max-width: 100%; }
.rounded { border-radius: var(--r); }
.rounded-lg { border-radius: var(--r-xl); }
.shadow { box-shadow: var(--s2); }
.border { border: 1px solid var(--rule); }

/* ── Pill number ── */
.pill-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}

/* ── Sticky CTA bar (mobile) ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--forest); padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
@media (max-width: 640px) { .sticky-cta { display: flex; gap: 12px; align-items: center; justify-content: space-between; } }

/* Hero two-column responsive */
.hero-mockup { display: block; }
@media (max-width: 960px) {
  .hero-mockup { display: none !important; }
  .hero-grid { grid-template-columns: 1fr !important; }
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(10,50,38,0.98);
  padding: 8px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-drawer.nav-drawer-open { display: flex; }
.nav-mobile-link {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-mobile-link-sm {
  font-size: 0.9rem;
  padding: 11px 0;
  color: rgba(255,255,255,0.65);
}
.nav-mobile-link:hover { color: var(--white); text-decoration: none; }
.nav-mobile-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 6px 0; }

/* ── Legal pages ── */
.legal-page { background: var(--cream); min-height: 80vh; }
.legal-wrap {
  max-width: 760px; margin: 0 auto; padding: 64px 24px 80px;
}
.legal-wrap h1 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--forest); margin-bottom: 6px;
}
.legal-wrap h2 {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 700;
  color: var(--forest); margin: 40px 0 12px; padding-bottom: 6px;
  border-bottom: 2px solid var(--rule);
}
.legal-wrap h3 {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  color: var(--forest); margin: 24px 0 8px;
}
.legal-date { font-size: 0.85rem; color: var(--muted); margin-bottom: 32px; }
.legal-wrap p { margin-bottom: 16px; line-height: 1.75; }
.legal-wrap ul, .legal-wrap ol { margin: 0 0 16px 0; padding-left: 24px; }
.legal-wrap li { margin-bottom: 8px; line-height: 1.7; }
.legal-wrap a { color: var(--forest); text-decoration: underline; }
.legal-wrap a:hover { color: var(--amber); }
.legal-table {
  width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 14px;
  border: 1px solid var(--rule); vertical-align: top;
}
.legal-table th { background: var(--forest); color: var(--white); font-weight: 600; }
.legal-table tr:nth-child(even) td { background: rgba(0,0,0,0.03); }
.legal-disclaimer {
  margin-top: 48px; padding: 16px 20px; border-radius: var(--r);
  background: rgba(0,0,0,0.04); font-size: 0.85rem; color: var(--muted);
  border-left: 3px solid var(--amber);
}
.casl-callout {
  background: var(--forest); color: var(--white); padding: 16px 20px;
  border-radius: var(--r); margin: 24px 0; font-size: 0.95rem; line-height: 1.65;
}
