/* ================================================================
   STELLENBOSCH COMMUNITY — styles.css
   Warm winelands palette. Less black. Premium local character.
   ================================================================ */

/* ── FONTS ─────────────────────────────────────────────────────── */
/* Fraunces (display) + Manrope (body) — loaded in HTML */

/* ── TOKENS ────────────────────────────────────────────────────── */
:root {
  /* Stellenbosch-inspired palette */
  --oak:        #3d2b1f;       /* Dark oak / rich brown (replaces heavy black) */
  --vine:       #5c3d2e;       /* Warm deep vine */
  --stone:      #8c7b6b;       /* Weathered sandstone mid-tone */
  --straw:      #f5efe6;       /* Sun-dried straw – warm off-white bg */
  --cream:      #faf7f2;       /* Lighter cream for sections */
  --white:      #ffffff;
  --wheat:      #e8d9c4;       /* Wheat / parchment */
  --gold:       #c9943a;       /* Cape gold accent */
  --gold-light: #f0d89e;       /* Pale gold highlight */
  --sage:       #7a8c6e;       /* Fynbos sage */
  --sage-light: #e8eee4;       /* Light sage background */
  --terracotta: #c0614a;       /* Terracotta / Cape architecture */
  --sky:        #b8d4e8;       /* Simonsberg sky blue */
  --sky-deep:   #2e5e7a;       /* Deep mountain water */
  --lime:       #c8e640;       /* Bright accent (from brand) */

  /* Semantic aliases */
  --text-primary:   var(--oak);
  --text-secondary: var(--vine);
  --text-muted:     var(--stone);
  --bg-main:        var(--cream);
  --bg-soft:        var(--straw);
  --bg-warm:        var(--wheat);
  --accent:         var(--gold);
  --accent-dark:    #a07828;
  --border-color:   rgba(61,43,31,0.15);
  --border-strong:  rgba(61,43,31,0.35);

  /* Spacing rhythm */
  --section-pad: clamp(3rem, 6vw, 5.5rem);
  --container:   min(1240px, 100% - 3rem);

  /* Shadows — warm toned */
  --shadow-sm: 0 2px 8px rgba(61,43,31,0.1);
  --shadow:    0 4px 20px rgba(61,43,31,0.12);
  --shadow-lg: 0 8px 40px rgba(61,43,31,0.16);
  --shadow-card: 0 2px 12px rgba(61,43,31,0.08), 0 1px 3px rgba(61,43,31,0.06);

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

  /* Type scale */
  --fs-xs:  0.75rem;
  --fs-sm:  0.875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.5rem;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.15; font-weight: 700; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,148,58,0); }
  50%       { box-shadow: 0 0 0 10px rgba(201,148,58,0.15); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────────── */
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding-block: var(--section-pad);
}
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-sage { background: var(--sage-light); }
.section-dark {
  background: var(--vine);
  color: var(--straw);
}
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark p { color: var(--wheat); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.stack { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── PAGE SHELL ─────────────────────────────────────────────────── */
.page-shell { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ── TOPBAR ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--oak);
  color: var(--wheat);
  padding: 0.55rem 1.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topbar-inner {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: center;
}
.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
}
.topbar-pill::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── SITE HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: var(--fs-sm); font-weight: 800; color: var(--oak); }
.brand-copy span { font-size: var(--fs-xs); color: var(--stone); font-weight: 500; }
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--wheat); color: var(--oak); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle {
  display: flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  color: var(--oak);
  transition: background 0.2s;
}
.menu-toggle:hover { background: var(--wheat); }
.menu-toggle svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.5rem 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--border-color);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu a:last-child {
  margin-top: 0.75rem;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  border-radius: var(--r-sm);
  padding: 0.8rem;
  border: none;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0.8rem 1.6rem;
  border-radius: var(--r-md);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.button-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(201,148,58,0.4);
  transform: translateY(-1px);
}
.button-secondary {
  background: transparent;
  color: var(--oak);
  border-color: var(--border-strong);
}
.button-secondary:hover {
  background: var(--wheat);
  border-color: var(--gold);
}
.button-lg {
  font-size: var(--fs-md);
  padding: 1rem 2rem;
}
.button-apply {
  animation: pulse-gold 3s ease-in-out infinite;
}

/* ── EYEBROW / SECTION LABELS ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── SECTION HEADING ────────────────────────────────────────────── */
.section-heading {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-heading h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-5xl));
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--oak);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.section-heading p {
  font-size: var(--fs-lg);
  color: var(--stone);
  line-height: 1.7;
  max-width: 600px;
}
.section-dark .section-heading h2 { color: var(--white); }
.section-dark .section-heading p { color: var(--wheat); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  background: var(--bg-soft);
  padding-block: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* Subtle winelands texture background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,148,58,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(122,140,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.hero-copy { display: flex; flex-direction: column; gap: 0; }
.hero-copy h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.1rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--oak);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero-copy .lead {
  font-size: clamp(var(--fs-md), 1.8vw, var(--fs-lg));
  color: var(--vine);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--vine);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.trust-chip svg { width: 13px; height: 13px; color: var(--gold); }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.75rem;
}
.hero-meta .metric-card {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}
.hero-meta .metric-card strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 0.35rem;
}
.hero-meta .metric-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--oak);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-meta .metric-label { font-size: 11px; color: var(--stone); line-height: 1.4; }

/* ── HERO PANEL (right side) ────────────────────────────────────── */
.hero-panel { position: relative; }
.proof-stack { display: flex; flex-direction: column; gap: 1rem; }
.dashboard-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.dashboard-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.dashboard-title strong {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--oak);
  display: block;
}
.status-text {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-light);
  padding: 0.3rem 0.6rem;
  border-radius: 99px;
  white-space: nowrap;
}
.status-text svg { width: 12px; height: 12px; }
.dashboard-card > p {
  font-size: var(--fs-sm);
  color: var(--stone);
  margin-bottom: 1.25rem;
}
.audience-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.audience-bars > div { display: flex; flex-direction: column; gap: 0.4rem; }
.audience-bars > div > span {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--vine);
}
.bar-track {
  height: 8px;
  border-radius: 99px;
  background: var(--wheat);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--accent-dark));
  transition: width 1s ease;
}
.mini-panel {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.mini-panel h3 {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--oak);
  margin-bottom: 0.4rem;
}
.mini-panel p {
  font-size: var(--fs-sm);
  color: var(--stone);
  line-height: 1.6;
}

/* ── METRIC CARDS ───────────────────────────────────────────────── */
.metric-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.metric-card strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.metric-card .metric-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--oak);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-card p {
  font-size: var(--fs-sm);
  color: var(--stone);
  line-height: 1.5;
}

/* ── PROOF GRID ─────────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .proof-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── SOCIAL PROOF — TWO PROMINENT STAT CARDS ───────────────────── */
.social-proof-section {
  padding-block: var(--section-pad);
  background: var(--bg-soft);
}

/* Top row: headline + supporting copy + 3 stat chips */
.proof-editorial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .proof-editorial-row {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }
}

.proof-chips-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .proof-chips-row { grid-template-columns: repeat(4, 1fr); }
}

.proof-chip {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.proof-chip-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--oak);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.proof-chip-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--stone);
}
.proof-chip-growth {
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  margin-top: 0.3rem;
}

/* The two BIG stat feature cards */
.proof-big-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .proof-big-stats { grid-template-columns: 1fr 1fr; }
}

.proof-stat-card {
  border-radius: var(--r-xl);
  padding: 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 220px;
  box-shadow: var(--shadow);
}

/* Reactions card — warm gold/terracotta */
.proof-stat-card.reactions {
  background: linear-gradient(135deg, var(--oak) 0%, var(--vine) 100%);
  color: var(--white);
}
.proof-stat-card.reactions::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,148,58,0.15);
}
.proof-stat-card.reactions::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,148,58,0.1);
}

/* Comments card — sage / winelands green */
.proof-stat-card.comments {
  background: linear-gradient(135deg, var(--sky-deep) 0%, #1a3d52 100%);
  color: var(--white);
}
.proof-stat-card.comments::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(184,212,232,0.15);
}
.proof-stat-card.comments::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(184,212,232,0.1);
}

.psc-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.psc-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.psc-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 0.3rem 0.8rem;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.psc-growth svg { width: 14px; height: 14px; }
.psc-desc {
  font-size: var(--fs-sm);
  opacity: 0.8;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
}

/* Proof disclaimer */
.proof-disclaimer {
  margin-top: 1.5rem;
  padding: 0.85rem 1.1rem;
  background: rgba(61,43,31,0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.proof-disclaimer svg { width: 14px; height: 14px; color: var(--stone); flex-shrink: 0; margin-top: 2px; }
.proof-disclaimer p {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.6;
}

/* ── CARDS ──────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.section-dark .card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: var(--wheat); }

.danger-card { border-left: 3px solid var(--terracotta); }
.card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--wheat);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.card-icon svg { width: 20px; height: 20px; }
.section-dark .card-icon { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.danger-card .card-icon { background: rgba(192,97,74,0.1); color: var(--terracotta); }
.card h3 {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--oak);
  margin-bottom: 0.5rem;
}
.card p { font-size: var(--fs-sm); color: var(--stone); line-height: 1.65; }

/* ── SOLUTION SECTION ───────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .solution-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.quote-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 2rem 2.25rem;
  position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.quote-card blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote-card > p { font-size: var(--fs-sm); color: var(--wheat); }

/* ── STEPS ──────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-count {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-card h3 { font-size: var(--fs-md); font-weight: 800; color: var(--oak); margin-bottom: 0.5rem; }
.step-card p { font-size: var(--fs-sm); color: var(--stone); line-height: 1.65; }

/* ── PLAN GRID ──────────────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plan-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.recommended {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow);
}
.pricing-card.featured-dark {
  background: var(--oak);
  border-color: var(--oak);
  color: var(--straw);
}
.pricing-card.featured-dark h3 { color: var(--white); }
.pricing-card.featured-dark .price { color: var(--gold-light); }
.pricing-card.featured-dark .price span { color: rgba(255,255,255,0.5); }
.pricing-card.featured-dark p { color: var(--wheat); }
.pricing-card.featured-dark .feature-list li { color: var(--wheat); }
.plan-badge {
  position: absolute;
  top: -1px; right: 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.plan-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--stone);
  display: block;
  margin-bottom: 0.4rem;
}
.pricing-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--oak);
  margin-bottom: 0.75rem;
}
.price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--oak);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.price span { font-size: var(--fs-md); font-weight: 500; color: var(--stone); }
.pricing-card > p {
  font-size: var(--fs-sm);
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.feature-list li {
  font-size: var(--fs-sm);
  color: var(--vine);
  padding-left: 1.25rem;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── FAQ / TRUST ────────────────────────────────────────────────── */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .trust-layout { grid-template-columns: 1fr 1.5fr; align-items: start; }
}
.trust-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(201,148,58,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-card h3 { font-size: var(--fs-md); font-weight: 800; color: var(--white); margin-bottom: 0.35rem; }
.trust-card p { font-size: var(--fs-sm); color: var(--wheat); line-height: 1.6; }

.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item summary {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--white);
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item summary:hover { background: rgba(255,255,255,0.06); }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.6;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.35rem 1.25rem;
  font-size: var(--fs-sm);
  color: var(--wheat);
  line-height: 1.7;
}

/* ── APPLY SECTION ──────────────────────────────────────────────── */
.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 58rem;
}
@media (min-width: 1024px) {
  .form-layout { grid-template-columns: 1fr; gap: 3rem; align-items: start; }
}
.form-panel { display: flex; flex-direction: column; gap: 0; }
.form-panel h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--oak);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.form-panel > p { font-size: var(--fs-md); color: var(--stone); line-height: 1.7; margin-bottom: 1.75rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--vine);
}
.field input, .field select, .field textarea {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--r-md);
  padding: 0.7rem 0.9rem;
  font-size: var(--fs-sm);
  color: var(--oak);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,58,0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  margin-block: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--vine);
  line-height: 1.55;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.trust-note {
  margin-top: 0.85rem;
  font-size: var(--fs-xs);
  color: var(--stone);
  text-align: center;
}
.aside-panel { display: flex; flex-direction: column; gap: 1.25rem; }
.aside-panel .eyebrow { color: var(--gold); }
.aside-panel h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--oak);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.aside-panel > p { font-size: var(--fs-md); color: var(--stone); line-height: 1.7; }
.sidebar-list { display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-list li {
  font-size: var(--fs-sm);
  color: var(--vine);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.sidebar-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.fine-note { font-size: var(--fs-xs); color: var(--stone); }
.fine-note a { color: var(--gold); text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--oak);
  color: var(--wheat);
  padding-block: 3.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand-copy strong { color: var(--gold-light); }
.footer-brand .brand-copy span   { color: var(--wheat); opacity: 0.7; }
.footer-brand .brand-mark { background: rgba(201,148,58,0.3); }
.footer > .footer-inner > .footer-grid > div > p,
.footer-grid > div > p {
  font-size: var(--fs-sm);
  color: var(--wheat);
  line-height: 1.7;
  margin-top: 1rem;
  opacity: 0.85;
}
.footer h4 {
  font-size: var(--fs-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer ul li a {
  font-size: var(--fs-sm);
  color: var(--wheat);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.footer ul li a:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  color: var(--wheat);
  opacity: 0.6;
}

/* ── STELLENBOSCH STRIPE ────────────────────────────────────────── */
/* A warm decorative separator evoking oak-lined streets */
.stell-stripe {
  height: 4px;
  background: linear-gradient(90deg,
    var(--terracotta) 0%,
    var(--gold) 30%,
    var(--sage) 65%,
    var(--sky) 100%
  );
}

/* ── MOBILE REFINEMENTS ─────────────────────────────────────────── */
@media (max-width: 639px) {
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .proof-stat-card { min-height: 180px; padding: 1.5rem; }
  .psc-number { font-size: clamp(2.4rem, 11vw, 3.5rem); }
}

/* ================================================================
   STELLENBOSCH EDITORIAL REDIRECTION
   Fresh mountain air, vineyards, Cape white, wine-red CTAs.
   ================================================================ */
:root {
  --mountain-navy: #102A43;
  --vineyard-green: #2F5D3A;
  --fresh-vine: #6FA24A;
  --cape-white: #FFFDF7;
  --wine-red: #7B1E2B;
  --pinot: #A73E4C;
  --sunset-gold: #E6A93B;
  --coffee: #6B4226;
  --sky-blue: #BFDFF2;
  --stone: #D8C7AE;
  --text: #172018;
  --oak: var(--text);
  --vine: var(--vineyard-green);
  --straw: #F7F4EC;
  --cream: var(--cape-white);
  --wheat: #EFE5D4;
  --gold: var(--sunset-gold);
  --gold-light: #F4D58D;
  --sage: #7FA46A;
  --sage-light: #EEF4E9;
  --terracotta: var(--pinot);
  --sky: var(--sky-blue);
  --sky-deep: var(--mountain-navy);
  --text-primary: var(--text);
  --text-secondary: var(--vineyard-green);
  --text-muted: #647061;
  --bg-main: var(--cape-white);
  --bg-soft: #F4F7EF;
  --bg-warm: #F8EEDC;
  --accent: var(--sunset-gold);
  --accent-dark: #B87619;
  --border-color: rgba(23,32,24,0.12);
  --border-strong: rgba(47,93,58,0.32);
  --section-pad: clamp(3rem, 5vw, 4.75rem);
  --shadow-sm: 0 8px 22px rgba(16,42,67,0.08);
  --shadow: 0 18px 45px rgba(16,42,67,0.13);
  --shadow-lg: 0 28px 80px rgba(16,42,67,0.2);
  --shadow-card: 0 12px 34px rgba(16,42,67,0.09);
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

body {
  background:
    radial-gradient(circle at 9% 4%, rgba(191,223,242,0.48), transparent 27rem),
    linear-gradient(180deg, var(--cape-white), #F6F2E9 56%, var(--cape-white));
}

.topbar {
  background: linear-gradient(90deg, var(--mountain-navy), var(--vineyard-green));
  color: rgba(255,253,247,0.92);
}

.topbar-pill::before { background: var(--sunset-gold); }

.site-header {
  background: rgba(255,253,247,0.88);
  border-bottom: 1px solid rgba(47,93,58,0.14);
}

.brand-mark {
  background: linear-gradient(135deg, var(--vineyard-green), var(--fresh-vine));
  color: var(--cape-white);
}

.nav-links a { color: var(--mountain-navy); }
.nav-links a:hover { background: rgba(111,162,74,0.12); color: var(--vineyard-green); }

.button {
  border-radius: 999px;
  border-width: 1px;
  letter-spacing: -0.01em;
}

.button-primary {
  background: linear-gradient(135deg, var(--wine-red), var(--pinot));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(123,30,43,0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, #651722, var(--pinot));
  border-color: transparent;
  box-shadow: 0 24px 55px rgba(123,30,43,0.36);
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255,253,247,0.12);
  color: var(--mountain-navy);
  border-color: rgba(47,93,58,0.34);
}

.hero .button-secondary {
  color: var(--cape-white);
  border-color: rgba(255,253,247,0.5);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(230,169,59,0.18);
  border-color: var(--sunset-gold);
}

.button-apply { animation: none; }

.eyebrow {
  color: var(--wine-red);
  letter-spacing: 0.12em;
}

.section-heading { margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }

.section-heading h2,
.form-panel h2,
.aside-panel h3 {
  color: var(--mountain-navy);
}

.section-heading p,
.form-panel > p,
.aside-panel > p,
.card p,
.step-card p,
.pricing-card > p {
  color: #5E685D;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(191,223,242,0.34), transparent 46%),
    var(--bg-soft);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(16,42,67,0.92), rgba(47,93,58,0.94)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center / cover;
  color: var(--cape-white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,42,67,0.08), rgba(16,42,67,0.3));
  pointer-events: none;
}

.section-dark > .container { position: relative; z-index: 1; }

.section-dark .eyebrow { color: var(--gold-light); }
.section-dark p { color: rgba(255,253,247,0.78); }

.hero {
  min-height: auto;
  padding-block: clamp(3.25rem, 6vw, 5.25rem);
  background:
    linear-gradient(105deg, rgba(16,42,67,0.92) 0%, rgba(16,42,67,0.76) 42%, rgba(47,93,58,0.42) 100%),
    url('https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=2200&q=85') center / cover;
  border-bottom: 0;
  color: var(--cape-white);
}

.hero::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(230,169,59,0.28), transparent 16rem),
    linear-gradient(180deg, transparent 72%, rgba(255,253,247,0.96));
}

.hero-grid { align-items: center; }

.hero-copy h1 {
  max-width: 780px;
  color: var(--cape-white);
  text-shadow: 0 18px 42px rgba(0,0,0,0.24);
}

.hero-copy .lead {
  max-width: 670px;
  color: rgba(255,253,247,0.88);
}

.hero .eyebrow {
  color: var(--gold-light);
  background: rgba(255,253,247,0.12);
  border: 1px solid rgba(255,253,247,0.18);
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  width: fit-content;
  backdrop-filter: blur(16px);
}

.hero-trust { margin-bottom: 1.5rem; }

.trust-chip {
  background: rgba(255,253,247,0.13);
  color: var(--cape-white);
  border: 1px solid rgba(255,253,247,0.22);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.trust-chip svg { color: var(--gold-light); }

.hero-meta {
  border-top: 1px solid rgba(255,253,247,0.22);
  max-width: 720px;
}

.hero-meta .metric-card {
  background: rgba(255,253,247,0.09);
  border: 1px solid rgba(255,253,247,0.16);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(16px);
}

.hero-meta .metric-card strong,
.hero-meta .metric-label {
  color: rgba(255,253,247,0.72);
}

.hero-meta .metric-value { color: var(--cape-white); }

.hero-photo-card {
  min-height: 500px;
  border: 1px solid rgba(255,253,247,0.24);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(16,42,67,0.05), rgba(16,42,67,0.7)),
    url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1400&q=85') center / cover;
}

.hero-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(230,169,59,0.24), transparent 12rem),
    linear-gradient(135deg, rgba(47,93,58,0.28), transparent 55%);
}

.scene-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  color: var(--cape-white);
  background: rgba(16,42,67,0.38);
  border: 1px solid rgba(255,253,247,0.26);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-glass-card {
  position: absolute;
  z-index: 1;
  background: rgba(255,253,247,0.14);
  border: 1px solid rgba(255,253,247,0.24);
  color: var(--cape-white);
  border-radius: 24px;
  padding: 1.25rem;
  backdrop-filter: blur(18px);
}

.hero-glass-main {
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
}

.hero-glass-small {
  right: 1.25rem;
  top: 7rem;
  max-width: 240px;
}

.hero-glass-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.hero-glass-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-glass-card p {
  max-width: 430px;
  color: rgba(255,253,247,0.82);
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
}

.stell-stripe {
  height: 8px;
  background: linear-gradient(90deg, var(--mountain-navy), var(--vineyard-green), var(--fresh-vine), var(--sunset-gold), var(--wine-red));
}

.local-place-section {
  background:
    linear-gradient(180deg, var(--cape-white), #F6F9F0);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.place-card {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.place-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16,42,67,0.08), rgba(16,42,67,0.78));
}

.place-card div {
  color: var(--cape-white);
}

.place-card span {
  display: inline-flex;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.place-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
  max-width: 11em;
}

.place-coffee {
  background-image: url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=900&q=80');
}

.place-vineyard {
  background-image: url('https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=900&q=80');
}

.place-mountain {
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80');
}

.place-town {
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=900&q=80');
}

.social-proof-section {
  background:
    linear-gradient(135deg, rgba(191,223,242,0.44), transparent 34%),
    linear-gradient(180deg, #F7F9F1, var(--cape-white));
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  inset: auto -5% 0 -5%;
  height: 220px;
  opacity: 0.08;
  background:
    linear-gradient(140deg, transparent 48%, var(--mountain-navy) 49%, transparent 50%),
    linear-gradient(160deg, transparent 48%, var(--vineyard-green) 49%, transparent 50%);
  background-size: 190px 100%, 260px 100%;
  pointer-events: none;
}

.social-proof-section > .container { position: relative; z-index: 1; }

.proof-editorial-row h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--mountain-navy);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.proof-editorial-row p {
  max-width: 660px;
  color: #5E685D;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.proof-context-card {
  background:
    linear-gradient(135deg, rgba(47,93,58,0.95), rgba(16,42,67,0.94)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80') center / cover;
  color: var(--cape-white);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.proof-context-card span,
.proof-number-card span {
  display: block;
  color: var(--sunset-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.proof-context-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.proof-context-card p {
  color: rgba(255,253,247,0.8);
  font-size: var(--fs-sm);
}

.proof-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,253,247,0.82);
  border: 1px solid rgba(47,93,58,0.14);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.proof-number-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  position: relative;
  min-height: 180px;
}

.proof-number-card + .proof-number-card {
  border-left: 1px solid rgba(47,93,58,0.14);
}

.proof-number-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  color: var(--mountain-navy);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.proof-number-card p {
  color: var(--vineyard-green);
  font-size: var(--fs-sm);
  font-weight: 800;
  margin-top: 0.7rem;
}

.proof-disclaimer {
  background: rgba(255,253,247,0.66);
  border-color: rgba(47,93,58,0.14);
  max-width: 980px;
  margin-inline: auto;
}

.proof-disclaimer svg,
.proof-disclaimer i {
  width: 14px;
  height: 14px;
  color: var(--vineyard-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.proof-disclaimer p { color: #687066; }

.card,
.step-card,
.pricing-card,
.form-panel,
.aside-panel .metric-card {
  background: rgba(255,253,247,0.86);
  border: 1px solid rgba(47,93,58,0.14);
  box-shadow: var(--shadow-card);
}

.danger-card {
  border-left: 0;
  border-top: 4px solid var(--pinot);
}

.card-icon,
.step-count {
  color: var(--vineyard-green);
}

.card-icon {
  background: rgba(111,162,74,0.13);
  border-radius: 999px;
}

.section-dark .card,
.trust-card,
.faq-item,
.quote-card {
  background: rgba(255,253,247,0.1);
  border-color: rgba(255,253,247,0.18);
  backdrop-filter: blur(12px);
}

#plans {
  background:
    linear-gradient(120deg, rgba(216,199,174,0.36), transparent 40%),
    linear-gradient(180deg, var(--cape-white), #F7F4EC);
}

.pricing-card {
  border-radius: 28px;
}

.pricing-card h3,
.price {
  color: var(--vineyard-green);
}

.pricing-card.recommended {
  border-color: var(--sunset-gold);
  box-shadow: 0 0 0 1px var(--sunset-gold), var(--shadow);
}

.pricing-card.featured-dark {
  background:
    linear-gradient(145deg, rgba(16,42,67,0.95), rgba(47,93,58,0.96)),
    url('https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=900&q=80') center / cover;
  border-color: rgba(255,253,247,0.16);
  color: var(--cape-white);
}

.pricing-card.featured-dark .price,
.pricing-card.featured-dark h3 {
  color: var(--cape-white);
}

.plan-badge {
  background: linear-gradient(135deg, var(--sunset-gold), #F2C66C);
  color: var(--mountain-navy);
  border-radius: 0 0 12px 12px;
}

.feature-list li { color: #435844; }
.feature-list li::before { color: var(--wine-red); }

#apply {
  background:
    linear-gradient(115deg, rgba(255,253,247,0.96), rgba(255,253,247,0.78)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.form-panel {
  border-radius: 30px;
  padding: clamp(1.25rem, 3vw, 2.3rem);
}

.field label { color: var(--vineyard-green); }

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(47,93,58,0.18);
  color: var(--text);
  background: var(--cape-white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--fresh-vine);
  box-shadow: 0 0 0 4px rgba(111,162,74,0.16);
}

.checkbox-row,
.sidebar-list li {
  color: #435844;
}

.sidebar-list li::before { color: var(--wine-red); }

.footer {
  background:
    linear-gradient(135deg, var(--mountain-navy), #0A1C2C 62%, var(--vineyard-green));
  color: rgba(255,253,247,0.84);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .place-card:nth-child(2) {
    transform: translateY(2rem);
  }

  .place-card:nth-child(3) {
    transform: translateY(-1rem);
  }
}

/* ================================================================
   READABILITY PASS
   Essence Sans Light needs more tracking and stronger colour contrast.
   ================================================================ */
body,
p,
li,
a,
label,
input,
select,
textarea,
button,
.lead,
.metric-label,
.feature-list li,
.sidebar-list li,
.faq-item p,
.trust-note,
.fine-note {
  letter-spacing: 0.018em;
}

h1,
h2,
h3,
.metric-value,
.price,
.proof-number-card strong,
.hero-glass-card strong {
  letter-spacing: -0.018em !important;
}

.eyebrow,
.topbar-pill,
.trust-chip,
.plan-kicker,
.plan-badge,
.proof-context-card span,
.proof-number-card span,
.place-card span,
.field label,
.metric-card strong,
.hero-meta .metric-card strong {
  letter-spacing: 0.14em !important;
}

body {
  color: #0A1712;
}

.section-heading p,
.form-panel > p,
.aside-panel > p,
.card p,
.step-card p,
.pricing-card > p,
.metric-card p,
.proof-editorial-row p,
.checkbox-row,
.sidebar-list li,
.feature-list li,
.fine-note,
.trust-note {
  color: #243229 !important;
}

.brand-copy span,
.plan-kicker,
.proof-chip-label,
.metric-card strong,
.hero-meta .metric-label,
.price span {
  color: #435044 !important;
}

.hero-copy .lead,
.trust-chip,
.hero-meta .metric-label,
.hero-glass-card p,
.section-dark p,
.section-dark .card p,
.quote-card > p,
.trust-card p,
.faq-item p,
.pricing-card.featured-dark p,
.pricing-card.featured-dark .feature-list li {
  color: rgba(255,252,245,0.9) !important;
}

.hero-meta .metric-card strong,
.hero-glass-card span,
.scene-label,
.section-dark .eyebrow,
.social-proof-section .eyebrow,
.proof-context-card span,
.proof-number-card span,
.place-card span {
  color: #FCE9AE !important;
}

.proof-editorial-row p,
.proof-disclaimer p,
.proof-context-card p {
  color: rgba(255,252,245,0.84) !important;
}

.proof-number-card p {
  color: #F3D88F !important;
}

.proof-disclaimer {
  background: rgba(255,252,245,0.14) !important;
}

.form-panel,
.field input,
.field select,
.field textarea {
  color: #07140F !important;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #5D675E !important;
  opacity: 1;
}

.field input,
.field select,
.field textarea {
  background: #FFFCF5 !important;
  border-color: rgba(7,20,15,0.28) !important;
}

.footer,
.footer p,
.footer ul li a,
.footer-bottom,
body#app-root footer,
body#app-root footer a,
body#app-root footer p {
  color: rgba(255,252,245,0.86) !important;
}

.footer h4,
.footer-brand .brand-copy strong,
body#app-root footer h4,
body#app-root footer span {
  color: #FFFCF5 !important;
}

.footer-brand .brand-copy span {
  color: rgba(255,252,245,0.78) !important;
}

body#app-root main p,
body#app-root main li,
body#app-root main label,
body#app-root main span,
body#app-root main div {
  letter-spacing: 0.018em;
}

body#app-root main p,
body#app-root main [style*="color:#888"],
body#app-root main [style*="color:#555"],
body#app-root main [style*="color:#444"],
body#app-root main [style*="color:#333"],
body#app-root main [style*="color:#aaa"],
body#app-root footer [style*="color:#555"] {
  color: #243229 !important;
}

body#app-root footer p,
body#app-root footer a,
body#app-root footer [style*="color:#555"] {
  color: rgba(255,252,245,0.86) !important;
}

@media (max-width: 1023px) {
  .hero {
    min-height: auto;
    padding-block: 4rem;
  }

  .hero-photo-card { min-height: 420px; }

  .place-grid,
  .proof-number-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-number-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(47,93,58,0.14);
  }

  .proof-number-card:nth-child(4) {
    border-top: 1px solid rgba(47,93,58,0.14);
  }
}

@media (max-width: 639px) {
  :root { --container: min(100% - 1.25rem, 1240px); }

  .topbar { padding-inline: 0.75rem; }
  .topbar-meta { gap: 0.35rem 0.8rem; }
  .topbar-pill { font-size: 10px; }

  .nav-inner { padding: 0.75rem 1rem; }
  .header-actions .button { display: none; }

  .hero {
    padding-block: 2.25rem 2rem;
    background-position: center;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10.4vw, 3rem);
    margin-bottom: 0.9rem;
  }

  .hero-copy .lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .button-row {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-trust {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .trust-chip {
    font-size: 11px;
    padding: 0.38rem 0.65rem;
  }

  .hero-trust .trust-chip:nth-child(4) {
    display: none;
  }

  .hero-meta {
    display: none;
  }

  .hero-photo-card {
    min-height: 235px;
    border-radius: 26px;
  }

  .hero-glass-small {
    display: none;
  }

  .hero-glass-main {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .hero-glass-card {
    border-radius: 20px;
    padding: 1rem;
  }

  .hero-glass-card strong {
    font-size: 1.65rem;
  }

  .section,
  .social-proof-section {
    padding-block: 2.75rem;
  }

  .place-grid,
  .proof-number-grid {
    grid-template-columns: 1fr;
  }

  .place-card {
    min-height: 260px;
    border-radius: 24px;
  }

  .proof-number-card,
  .proof-number-card + .proof-number-card {
    border-left: 0;
    border-top: 1px solid rgba(47,93,58,0.14);
    min-height: 150px;
  }

  .proof-number-card:first-child {
    border-top: 0;
  }

  .proof-editorial-row {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .proof-context-card,
  .form-panel {
    border-radius: 24px;
  }

  .plan-grid,
  .card-grid,
  .steps {
    gap: 0.9rem;
    margin-top: 1.25rem;
  }

  .pricing-card,
  .card,
  .step-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .footer {
    padding-block: 2.5rem 1.5rem;
  }
}

/* Supporting pages generated with inline utility styles. These overrides
   pull checkout, FAQ, contact, success, and full-form pages into the same
   premium winelands direction without changing their scripts. */
body#app-root {
  background:
    linear-gradient(120deg, rgba(191,223,242,0.38), transparent 34%),
    linear-gradient(180deg, var(--cape-white), #F7F4EC) !important;
  color: var(--text) !important;
  font-family: 'Manrope', 'Public Sans', system-ui, sans-serif !important;
}

body#app-root > div > div:first-child {
  background: linear-gradient(90deg, var(--mountain-navy), var(--vineyard-green), var(--fresh-vine)) !important;
  color: var(--cape-white) !important;
  border-bottom: 0 !important;
}

body#app-root header {
  background: rgba(255,253,247,0.9) !important;
  border-bottom: 1px solid rgba(47,93,58,0.16) !important;
  backdrop-filter: blur(14px);
}

body#app-root header a,
body#app-root header span {
  color: var(--mountain-navy) !important;
}

body#app-root header a:hover {
  background: rgba(111,162,74,0.14) !important;
}

body#app-root header a[style*="background:#0a0a0a"],
body#app-root header a[style*="background:#0a0a0a;"] {
  background: linear-gradient(135deg, var(--wine-red), var(--pinot)) !important;
  color: var(--white) !important;
  border-left: 0 !important;
  border-radius: 999px !important;
  height: auto !important;
  margin-left: 0.8rem !important;
  padding: 0.8rem 1.3rem !important;
}

body#app-root header [style*="background:#0a0a0a"][style*="border-radius:50%"] {
  background: linear-gradient(135deg, var(--vineyard-green), var(--fresh-vine)) !important;
}

body#app-root #mobile-menu {
  background: var(--cape-white) !important;
  border-bottom: 1px solid rgba(47,93,58,0.16) !important;
}

body#app-root main > section {
  background:
    linear-gradient(115deg, rgba(255,253,247,0.96), rgba(255,253,247,0.82)),
    url('https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=1800&q=85') center / cover !important;
  padding-block: clamp(3rem, 6vw, 5rem) !important;
}

body#app-root main h1 {
  color: var(--mountain-navy) !important;
  font-family: 'Fraunces', Georgia, serif !important;
  text-transform: none !important;
  letter-spacing: -0.055em !important;
  line-height: 0.98 !important;
}

body#app-root main h1 span {
  background: linear-gradient(135deg, var(--vineyard-green), var(--mountain-navy)) !important;
  color: var(--cape-white) !important;
  border-radius: 999px !important;
  padding: 0.05em 0.28em !important;
}

body#app-root main h2,
body#app-root main h3 {
  color: var(--mountain-navy) !important;
  text-transform: none !important;
}

body#app-root main a[href="index.html"] {
  color: var(--vineyard-green) !important;
}

body#app-root main [style*="background:#fff"],
body#app-root main [style*="background: #fff"] {
  background: rgba(255,253,247,0.9) !important;
  border: 1px solid rgba(47,93,58,0.15) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-card) !important;
}

body#app-root main [style*="border:2px solid #0a0a0a"],
body#app-root main [style*="border-top:2px solid #0a0a0a"],
body#app-root main [style*="border-bottom:2px solid #0a0a0a"] {
  border-color: rgba(47,93,58,0.16) !important;
}

body#app-root main [style*="box-shadow:4px 4px"],
body#app-root main [style*="box-shadow:8px 8px"] {
  box-shadow: var(--shadow-card) !important;
}

body#app-root main button,
body#app-root main a[style*="background:#0a0a0a"] {
  background: linear-gradient(135deg, var(--wine-red), var(--pinot)) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 18px 40px rgba(123,30,43,0.25) !important;
  text-transform: uppercase !important;
}

body#app-root main button:hover,
body#app-root main a[style*="background:#0a0a0a"]:hover {
  background: linear-gradient(135deg, #651722, var(--pinot)) !important;
  color: var(--white) !important;
}

body#app-root main [style*="background:rgba(210,248,0"],
body#app-root main [style*="background:rgba(189,224,254"] {
  background: rgba(111,162,74,0.12) !important;
  border: 1px solid rgba(47,93,58,0.2) !important;
  border-radius: 22px !important;
}

body#app-root footer {
  background:
    linear-gradient(135deg, var(--mountain-navy), #0A1C2C 62%, var(--vineyard-green)) !important;
  color: rgba(255,253,247,0.82) !important;
  border-top: 0 !important;
}

body#app-root footer [style*="background:#d2f800"] {
  background: linear-gradient(135deg, var(--sunset-gold), #F2C66C) !important;
}

body#app-root footer a,
body#app-root footer p {
  color: rgba(255,253,247,0.68) !important;
}

body#app-root footer h4,
body#app-root footer span {
  color: var(--cape-white) !important;
}

@font-face {
  font-family: 'Essence Sans';
  src: url('assets/fonts/essence-sans-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

/* Display typography request: use the supplied Essence Sans Light file. */
:root {
  --display-font: 'Essence Sans', 'Van Wyck JNL', 'Fraunces', Georgia, serif;
  --body-font: 'Essence Sans', 'Manrope', system-ui, sans-serif;
}

h1,
h2,
h3,
.hero-copy h1,
.section-heading h2,
.editorial-heading h2,
.proof-editorial-row h2,
.proof-context-card strong,
.proof-number-card strong,
.metric-value,
.hero-glass-card strong,
.place-card h3,
.quote-card blockquote,
.pricing-card h3,
.price,
.form-panel h2,
.aside-panel h3,
body#app-root main h1,
body#app-root main h2,
body#app-root main h3 {
  font-family: var(--display-font) !important;
}

body,
.button,
input,
select,
textarea,
body#app-root {
  font-family: var(--body-font) !important;
}

/* ================================================================
   MILLION-RAND FINISH
   A more restrained, luxury winelands treatment on top of the
   working layout. Think boutique wine estate, not web template.
   ================================================================ */
:root {
  --estate-black: #07140F;
  --estate-ink: #0E1E19;
  --estate-green: #193F2B;
  --estate-green-2: #2E6843;
  --champagne: #F6E7BC;
  --old-gold: #C99A42;
  --porcelain: #FFFCF5;
  --mist: #EEF3EA;
  --platinum-line: rgba(255,252,245,0.18);
  --ink-line: rgba(14,30,25,0.11);
  --lux-shadow: 0 34px 90px rgba(7,20,15,0.18);
  --lux-shadow-soft: 0 18px 55px rgba(7,20,15,0.1);
}

body {
  background:
    radial-gradient(circle at 10% -10%, rgba(246,231,188,0.42), transparent 26rem),
    radial-gradient(circle at 85% 8%, rgba(191,223,242,0.32), transparent 28rem),
    linear-gradient(180deg, var(--porcelain), #F4F1E8 54%, var(--porcelain));
}

.topbar {
  background: var(--estate-black);
  color: rgba(246,231,188,0.82);
  padding-block: 0.48rem;
}

.topbar-pill {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-pill::before {
  width: 4px;
  height: 4px;
  background: var(--old-gold);
}

.site-header {
  background: rgba(255,252,245,0.82);
  border-bottom: 1px solid rgba(14,30,25,0.08);
  box-shadow: 0 18px 55px rgba(7,20,15,0.05);
}

.nav-inner {
  padding-block: 1rem;
}

.brand-mark {
  background:
    linear-gradient(145deg, rgba(246,231,188,0.22), rgba(255,255,255,0)),
    var(--estate-green);
  border: 1px solid rgba(201,154,66,0.32);
  box-shadow: inset 0 0 0 1px rgba(255,252,245,0.12), 0 12px 30px rgba(25,63,43,0.2);
}

.brand-copy strong {
  color: var(--estate-ink);
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: rgba(14,30,25,0.52);
}

.nav-links {
  gap: 0.55rem;
}

.nav-links a {
  color: rgba(14,30,25,0.74);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.header-actions .button {
  padding-inline: 1.55rem;
}

.button {
  min-height: 46px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent),
    linear-gradient(135deg, #721926, #A23A48 62%, #6A1724);
  box-shadow: 0 20px 48px rgba(114,25,38,0.32), inset 0 1px 0 rgba(255,255,255,0.22);
}

.button-secondary {
  border-color: rgba(246,231,188,0.45);
}

.hero {
  padding-block: clamp(4.25rem, 7vw, 7.25rem);
  background:
    linear-gradient(90deg, rgba(7,20,15,0.93) 0%, rgba(7,20,15,0.84) 42%, rgba(7,20,15,0.38) 100%),
    linear-gradient(180deg, transparent 62%, rgba(7,20,15,0.78)),
    url('https://images.unsplash.com/photo-1528823872057-9c018a7a7553?auto=format&fit=crop&w=2400&q=88') center / cover;
}

.hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(246,231,188,0.2), transparent 18rem),
    linear-gradient(180deg, transparent 80%, var(--porcelain));
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(246,231,188,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,231,188,0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.35), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  z-index: 1;
}

.hero .eyebrow {
  background: rgba(246,231,188,0.08);
  border-color: rgba(246,231,188,0.22);
  color: var(--champagne);
  font-size: 10px;
  padding: 0.56rem 0.95rem;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.3rem, 6.8vw, 7.35rem);
  line-height: 0.88;
  letter-spacing: -0.072em;
  text-shadow: 0 30px 80px rgba(0,0,0,0.42);
  margin-bottom: 1.55rem;
}

.hero-copy .lead {
  max-width: 690px;
  color: rgba(255,252,245,0.82);
  font-size: clamp(1.05rem, 1.35vw, 1.26rem);
  line-height: 1.78;
}

.hero-trust {
  gap: 0.5rem;
}

.trust-chip {
  background: rgba(255,252,245,0.08);
  border-color: rgba(246,231,188,0.18);
  color: rgba(255,252,245,0.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.trust-chip svg {
  color: var(--champagne);
}

.hero-meta {
  border-top-color: rgba(246,231,188,0.22);
  gap: 0.85rem;
}

.hero-meta .metric-card {
  background: rgba(7,20,15,0.34);
  border-color: rgba(246,231,188,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-meta .metric-card strong {
  color: rgba(246,231,188,0.62);
}

.hero-photo-card {
  min-height: 590px;
  border-radius: 42px;
  border: 1px solid rgba(246,231,188,0.26);
  box-shadow: 0 45px 110px rgba(0,0,0,0.34);
  background:
    linear-gradient(180deg, rgba(7,20,15,0.02), rgba(7,20,15,0.74)),
    url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1500&q=88') center / cover;
}

.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(246,231,188,0.18);
  border-radius: 32px;
  pointer-events: none;
}

.scene-label,
.hero-glass-card {
  background: rgba(7,20,15,0.48);
  border-color: rgba(246,231,188,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.scene-label {
  color: var(--champagne);
}

.hero-glass-main {
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
}

.hero-glass-card strong {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  letter-spacing: -0.07em;
}

.hero-glass-card span {
  color: var(--champagne);
}

.stell-stripe {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--old-gold), transparent);
}

.local-place-section {
  background:
    linear-gradient(180deg, var(--porcelain), #F5F3EA);
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.editorial-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.editorial-heading h2 {
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.editorial-heading p {
  max-width: 760px;
  margin-inline: auto;
}

.place-grid {
  grid-template-columns: 1.15fr 0.86fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.15rem;
  margin-top: 3.5rem;
}

.place-card {
  min-height: unset;
  height: 100%;
  border-radius: 34px;
  padding: 1.45rem;
  box-shadow: var(--lux-shadow-soft);
  border: 1px solid rgba(255,252,245,0.5);
}

.place-card::before {
  background:
    linear-gradient(180deg, rgba(7,20,15,0.04), rgba(7,20,15,0.82)),
    linear-gradient(135deg, rgba(201,154,66,0.16), transparent 48%);
}

.place-card::after {
  content: '';
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(246,231,188,0.18);
  border-radius: 26px;
  pointer-events: none;
}

.place-card span {
  color: var(--champagne);
  letter-spacing: 0.14em;
}

.place-card h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.02;
  max-width: 9.5em;
}

.place-vineyard {
  grid-column: span 2;
  grid-row: span 2;
}

.place-coffee,
.place-mountain,
.place-town {
  grid-column: auto;
}

.place-card:nth-child(2),
.place-card:nth-child(3) {
  transform: none !important;
}

.social-proof-section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
  background:
    linear-gradient(135deg, rgba(7,20,15,0.96), rgba(25,63,43,0.94)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=88') center / cover;
  color: var(--porcelain);
}

.social-proof-section::before {
  inset: 0;
  height: auto;
  opacity: 0.2;
  background:
    radial-gradient(circle at 18% 20%, rgba(246,231,188,0.18), transparent 20rem),
    linear-gradient(90deg, rgba(246,231,188,0.08) 1px, transparent 1px);
  background-size: auto, 112px 100%;
}

.proof-editorial-row {
  align-items: end;
  margin-bottom: 2rem;
}

.proof-editorial-row h2 {
  color: var(--porcelain);
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.proof-editorial-row p {
  color: rgba(255,252,245,0.72);
}

.social-proof-section .eyebrow {
  color: var(--champagne);
}

.proof-context-card {
  background: rgba(255,252,245,0.08);
  border: 1px solid rgba(246,231,188,0.18);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.proof-context-card span,
.proof-number-card span {
  color: var(--champagne);
}

.proof-context-card strong {
  color: var(--porcelain);
}

.proof-number-grid {
  background: rgba(255,252,245,0.06);
  border-color: rgba(246,231,188,0.18);
  border-radius: 36px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--lux-shadow);
  backdrop-filter: blur(18px);
}

.proof-number-card {
  min-height: 210px;
}

.proof-number-card + .proof-number-card {
  border-left-color: rgba(246,231,188,0.16);
}

.proof-number-card strong {
  color: var(--porcelain);
  font-size: clamp(2.75rem, 5.3vw, 5.3rem);
}

.proof-number-card p {
  color: rgba(246,231,188,0.82);
}

.proof-disclaimer {
  background: rgba(255,252,245,0.08);
  border-color: rgba(246,231,188,0.16);
  backdrop-filter: blur(18px);
}

.proof-disclaimer p {
  color: rgba(255,252,245,0.62);
}

.proof-disclaimer svg,
.proof-disclaimer i {
  color: var(--champagne);
}

.card,
.step-card,
.pricing-card,
.form-panel,
.aside-panel .metric-card {
  background: rgba(255,252,245,0.82);
  border-color: var(--ink-line);
  box-shadow: 0 18px 58px rgba(7,20,15,0.08);
}

.card,
.step-card {
  border-radius: 28px;
}

.card h3,
.step-card h3 {
  color: var(--estate-ink);
}

.danger-card {
  border-top: 0;
}

.danger-card::before,
.step-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,66,0.54), transparent);
}

#solution {
  background:
    linear-gradient(135deg, rgba(7,20,15,0.96), rgba(25,63,43,0.93)),
    url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=88') center / cover;
}

.quote-card {
  border-radius: 36px;
}

.quote-card blockquote {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.18;
}

#plans {
  background:
    radial-gradient(circle at 18% 0%, rgba(246,231,188,0.56), transparent 26rem),
    linear-gradient(180deg, var(--porcelain), #F3EFE4);
}

#plans .section-heading {
  max-width: 820px;
}

#plans .section-heading h2 {
  font-size: clamp(2.6rem, 5.3vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.plan-grid {
  gap: 1rem;
}

.pricing-card {
  border-radius: 34px;
  padding: 2rem 1.45rem 1.45rem;
  overflow: hidden;
}

.pricing-card h3,
.price {
  color: var(--estate-green);
}

.price {
  letter-spacing: -0.07em;
}

.pricing-card.recommended {
  box-shadow: 0 0 0 1px rgba(201,154,66,0.65), 0 30px 85px rgba(201,154,66,0.18);
  transform: translateY(-0.75rem);
}

.pricing-card.featured-dark {
  background:
    linear-gradient(145deg, rgba(7,20,15,0.92), rgba(25,63,43,0.94)),
    url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=900&q=88') center / cover;
}

.plan-badge {
  background: linear-gradient(135deg, var(--champagne), var(--old-gold));
  color: var(--estate-black);
  border-radius: 0 0 999px 999px;
  padding-inline: 0.9rem;
}

#apply {
  background:
    linear-gradient(105deg, rgba(255,252,245,0.98) 0%, rgba(255,252,245,0.92) 48%, rgba(255,252,245,0.72) 100%),
    url('https://images.unsplash.com/photo-1528823872057-9c018a7a7553?auto=format&fit=crop&w=2200&q=88') center / cover;
}

.form-panel {
  border-radius: 36px;
  box-shadow: var(--lux-shadow);
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  border-radius: 16px;
}

.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(246,231,188,0.16), transparent 22rem),
    linear-gradient(135deg, var(--estate-black), #07120F 62%, #163521);
}

@media (max-width: 1023px) {
  .hero {
    padding-block: 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 9.4vw, 5.8rem);
  }

  .hero-photo-card {
    min-height: 440px;
  }

  .place-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .place-vineyard {
    grid-column: span 2;
    min-height: 380px;
  }

  .place-card {
    min-height: 300px;
  }
}

@media (max-width: 639px) {
  .hero {
    padding-block: 2.35rem 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12.2vw, 3.65rem);
    line-height: 0.94;
  }

  .hero-copy .lead {
    color: rgba(255,252,245,0.84);
  }

  .hero-photo-card {
    min-height: 270px;
  }

  .hero-photo-card::after {
    inset: 0.65rem;
    border-radius: 20px;
  }

  .scene-label {
    top: 1rem;
    left: 1rem;
    font-size: 9px;
  }

  .hero-glass-card strong {
    font-size: 1.95rem;
  }

  .editorial-heading {
    text-align: left;
  }

  .editorial-heading h2,
  .proof-editorial-row h2,
  #plans .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.96;
  }

  .place-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.8rem;
  }

  .place-vineyard {
    grid-column: auto;
    min-height: 290px;
  }

  .place-card {
    min-height: 255px;
    border-radius: 26px;
  }

  .proof-number-grid {
    border-radius: 28px;
  }

  .proof-number-card {
    min-height: 142px;
  }

  .pricing-card.recommended {
    transform: none;
  }
}

/* ================================================================
   FINAL CONTRAST LOCK
   Last in the file on purpose. Text must read clearly everywhere.
   ================================================================ */
:root {
  --readable-ink: #05100C;
  --readable-ink-soft: #122019;
  --readable-ink-muted: #26362D;
  --readable-white: #FFFDF6;
  --readable-white-soft: rgba(255,253,246,0.96);
}

body,
main,
.section,
.local-place-section,
#plans,
#apply,
.card,
.step-card,
.pricing-card,
.form-panel,
.aside-panel,
.metric-card,
.faq-list,
.field,
body#app-root,
body#app-root main {
  color: var(--readable-ink) !important;
}

p,
li,
label,
summary,
.lead,
.section-heading p,
.form-panel > p,
.aside-panel > p,
.card p,
.step-card p,
.pricing-card > p,
.feature-list li,
.sidebar-list li,
.metric-card p,
.metric-label,
.trust-note,
.fine-note,
.checkbox-row,
.field label,
.price span,
body#app-root main p,
body#app-root main li,
body#app-root main label,
body#app-root main span,
body#app-root main div {
  color: var(--readable-ink-muted) !important;
}

h1,
h2,
h3,
h4,
.section-heading h2,
.pricing-card h3,
.price,
.metric-value,
.form-panel h2,
.aside-panel h3,
body#app-root main h1,
body#app-root main h2,
body#app-root main h3 {
  color: var(--readable-ink) !important;
}

.hero,
.hero *,
.section-dark,
.section-dark *,
.social-proof-section,
.social-proof-section *,
.pricing-card.featured-dark,
.pricing-card.featured-dark *,
.footer,
.footer *,
body#app-root footer,
body#app-root footer * {
  color: var(--readable-white-soft) !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero .metric-value,
.hero-glass-card strong,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark blockquote,
.social-proof-section h1,
.social-proof-section h2,
.social-proof-section h3,
.social-proof-section strong,
.social-proof-section .proof-number-card strong,
.pricing-card.featured-dark h3,
.pricing-card.featured-dark .price,
.footer h4,
.footer strong,
body#app-root footer h4,
body#app-root footer strong,
body#app-root footer span {
  color: var(--readable-white) !important;
}

.hero p,
.hero li,
.hero .lead,
.hero .metric-label,
.hero-glass-card p,
.section-dark p,
.section-dark li,
.section-dark .card p,
.quote-card > p,
.trust-card p,
.faq-item p,
.social-proof-section p,
.proof-editorial-row p,
.proof-context-card p,
.proof-disclaimer p,
.pricing-card.featured-dark p,
.pricing-card.featured-dark li,
.footer p,
.footer a,
.footer li,
body#app-root footer p,
body#app-root footer a,
body#app-root footer li {
  color: rgba(255,253,246,0.92) !important;
}

.eyebrow,
.hero .eyebrow,
.section-dark .eyebrow,
.social-proof-section .eyebrow,
.scene-label,
.hero-glass-card span,
.place-card span,
.proof-context-card span,
.proof-number-card span,
.plan-badge,
.plan-kicker,
.metric-card strong {
  color: #FFE8A6 !important;
}

.place-card h3,
.place-card p,
.place-card span {
  text-shadow: 0 2px 18px rgba(0,0,0,0.65);
}

.hero-copy h1,
.hero-copy .lead,
.hero-glass-card,
.proof-editorial-row h2,
.proof-editorial-row p,
.proof-number-card,
.proof-context-card {
  text-shadow: 0 2px 22px rgba(0,0,0,0.28);
}

.field input,
.field select,
.field textarea,
body#app-root input,
body#app-root select,
body#app-root textarea {
  color: var(--readable-ink) !important;
  background: #FFFDF6 !important;
  border-color: rgba(5,16,12,0.38) !important;
}

.field input::placeholder,
.field textarea::placeholder,
body#app-root input::placeholder,
body#app-root textarea::placeholder {
  color: #3A493F !important;
  opacity: 1 !important;
}

.form-panel,
body#app-root main [style*="background:#fff"],
body#app-root main [style*="background: #fff"] {
  background: rgba(255,253,246,0.96) !important;
}

.proof-disclaimer {
  background: rgba(5,16,12,0.34) !important;
}

body,
p,
li,
a,
label,
input,
select,
textarea,
button,
span,
div {
  letter-spacing: 0.024em;
}

h1,
h2,
h3,
.metric-value,
.price,
.proof-number-card strong,
.hero-glass-card strong {
  letter-spacing: 0.004em !important;
}

/* ================================================================
   LEGIBILITY OVERHAUL — Letter spacing, contrast, stat spacing
   ================================================================ */

/* --- HEADERS: add breathing room between letters --- */
h1, h2, h3, h4, h5, h6,
.hero-copy h1,
.section-heading h2,
.editorial-heading h2,
.proof-editorial-row h2,
.proof-context-card strong,
.proof-number-card strong,
.metric-value,
.hero-glass-card strong,
.place-card h3,
.quote-card blockquote,
.pricing-card h3,
.price,
.form-panel h2,
.aside-panel h3,
body#app-root main h1,
body#app-root main h2,
body#app-root main h3 {
  letter-spacing: -0.01em !important;  /* less negative tracking — prevents letter blur */
}

/* Smaller headings benefit from slight positive spacing */
h3, h4, .card h3, .step-card h3, .pricing-card h3 {
  letter-spacing: 0.01em !important;
}

/* --- STATS GRID: add clear spacing between each stat card --- */
.proof-number-grid {
  gap: 0 !important;  /* keep grid borders */
}

.proof-number-card {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.35rem, 3vw, 2.25rem) !important;
  gap: 0.65rem;
}

/* Stat value — bigger breathing room below the number */
.proof-number-card strong {
  margin-bottom: 0.55rem;
  display: block;
}

/* Separate stat chips (hero-meta) */
.hero-meta {
  gap: 1.25rem !important;
  padding-top: 2rem !important;
}

.hero-meta .metric-card {
  padding: 1.1rem 1.25rem !important;
}

/* Proof chips row */
.proof-chips-row {
  gap: 1rem !important;
}

.proof-chip {
  padding: 1.1rem 1.25rem !important;
}

.proof-chip-num {
  margin-bottom: 0.45rem;
}

/* --- TEXT CONTRAST: everything on light/white backgrounds must be near-black --- */

/* Core body text — almost black */
body {
  color: #0A0F0D !important;
}

/* All paragraph text on light backgrounds — very dark */
p, li, span, div,
.lead,
.section-heading p,
.form-panel > p,
.aside-panel > p,
.card p,
.step-card p,
.pricing-card > p,
.feature-list li,
.sidebar-list li,
.metric-card p,
.metric-label,
.trust-note,
.fine-note,
.checkbox-row,
.proof-editorial-row p,
.proof-chip-label,
.proof-chip-growth,
.dashboard-card > p,
.mini-panel p,
body#app-root main p,
body#app-root main li,
body#app-root main span,
body#app-root main div {
  color: #1A2620 !important;
}

/* Muted/secondary text — still very readable dark */
.field label,
.plan-kicker,
.price span,
.brand-copy span,
.metric-card strong,
.hero-meta .metric-label,
.proof-disclaimer p {
  color: #283228 !important;
}

/* Headings on white/cream sections — near black */
h1, h2, h3, h4,
.section-heading h2,
.card h3,
.step-card h3,
.pricing-card h3,
.form-panel h2,
.aside-panel h3,
.price,
.metric-value,
.proof-editorial-row h2,
body#app-root main h1,
body#app-root main h2,
body#app-root main h3 {
  color: #07100C !important;
}

/* White-background cards: force true black text */
.card,
.step-card,
.pricing-card,
.dashboard-card,
.mini-panel,
.metric-card,
.proof-chip,
.form-panel,
.aside-panel {
  color: #07100C !important;
}

.card *:not(button):not(.button):not(.eyebrow),
.step-card *:not(button):not(.button):not(.eyebrow),
.proof-chip *,
.metric-card *:not(.eyebrow),
.dashboard-card *:not(.eyebrow):not(.status-text),
.mini-panel *:not(.eyebrow) {
  color: #1A2620 !important;
}

/* White-bg proof number section on light bg */
.proof-number-card strong {
  color: #07100C !important;
}
.proof-number-card p {
  color: #1A2620 !important;
}

/* Form fields — black text */
.field input,
.field select,
.field textarea {
  color: #07100C !important;
  background: #FFFFFF !important;
}

/* --- DARK SECTIONS: keep white text intact --- */
.hero *,
.hero h1, .hero h2, .hero h3, .hero p, .hero li, .hero span, .hero div,
.section-dark *,
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark p, .section-dark li,
.social-proof-section *,
.social-proof-section h1, .social-proof-section h2, .social-proof-section h3,
.social-proof-section p, .social-proof-section li,
.proof-context-card *,
.pricing-card.featured-dark *,
.footer *, .footer h4, .footer p, .footer a, .footer li,
body#app-root footer * {
  color: rgba(255, 253, 246, 0.95) !important;
}

/* Strong whites for headings in dark sections */
.hero h1, .hero h2, .hero .metric-value, .hero-glass-card strong,
.section-dark h2, .section-dark h3, .section-dark blockquote,
.social-proof-section h2, .social-proof-section .proof-number-card strong,
.proof-context-card strong,
.pricing-card.featured-dark h3, .pricing-card.featured-dark .price,
.footer h4, .footer strong {
  color: #FFFDF6 !important;
}

/* Social proof on dark bg */
.proof-number-card strong {
  /* overridden back to dark since it sits in a translucent glass card */
  color: #FFFDF6 !important;
}


/* proof-number-card sits inside dark social-proof-section — keep text light */
.social-proof-section .proof-number-card p {
  color: rgba(246, 231, 188, 0.88) !important;
}

/* proof-chip and proof-chip-label also sit inside social-proof-section */
.social-proof-section .proof-chip-label,
.social-proof-section .proof-chip-growth {
  color: rgba(255, 253, 246, 0.82) !important;
}

/* White-bg sections: make sure paragraph text is definitively dark */
.section:not(.section-dark):not(.social-proof-section) p,
.section:not(.section-dark):not(.social-proof-section) li,
.section:not(.section-dark):not(.social-proof-section) span:not(.eyebrow):not(.status-text):not(.plan-badge) {
  color: #1A2620 !important;
}

/* ================================================================
   FINAL "MAKE IT DARK" LOCK
   This is intentionally brutal: no pale grey text on readable surfaces.
   ================================================================ */
:root {
  --text-black-final: #020403;
  --text-dark-final: #07100C;
  --text-body-final: #0B130F;
  --text-muted-final: #111B15;
  --paper-final: #FFFDF7;
}

body,
main,
.page-shell,
.section,
.local-place-section,
#problem,
#how-it-works,
#plans,
#apply,
.card,
.step-card,
.pricing-card,
.metric-card,
.form-panel,
.aside-panel,
.faq-list,
.faq-item,
.trust-card,
body#app-root,
body#app-root main {
  color: var(--text-black-final) !important;
}

body,
p,
li,
a,
label,
summary,
span,
small,
strong,
div,
.lead,
.section-heading p,
.form-panel > p,
.aside-panel > p,
.card p,
.step-card p,
.pricing-card > p,
.feature-list li,
.sidebar-list li,
.metric-card p,
.metric-label,
.trust-note,
.fine-note,
.checkbox-row,
.field label,
.price span,
.plan-kicker,
.brand-copy span,
body#app-root main p,
body#app-root main li,
body#app-root main span,
body#app-root main div,
body#app-root main label {
  color: var(--text-body-final) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading h2,
.editorial-heading h2,
.form-panel h2,
.aside-panel h3,
.card h3,
.step-card h3,
.pricing-card h3,
.price,
.metric-value,
.proof-number-card strong,
.hero-glass-card strong,
body#app-root main h1,
body#app-root main h2,
body#app-root main h3 {
  color: var(--text-black-final) !important;
}

.card,
.step-card,
.pricing-card,
.form-panel,
.aside-panel,
.metric-card,
.faq-item,
body#app-root main [style*="background:#fff"],
body#app-root main [style*="background: #fff"] {
  background: rgba(255,253,247,0.99) !important;
  color: var(--text-black-final) !important;
}

.card *,
.step-card *,
.pricing-card:not(.featured-dark) *,
.form-panel *,
.aside-panel *,
.metric-card *,
.faq-item *,
body#app-root main [style*="background:#fff"] *,
body#app-root main [style*="background: #fff"] * {
  color: var(--text-body-final) !important;
}

.pricing-card:not(.featured-dark) h3,
.pricing-card:not(.featured-dark) .price,
.card h3,
.step-card h3,
.form-panel h2,
.aside-panel h3,
.metric-card .metric-value {
  color: var(--text-black-final) !important;
}

.field input,
.field select,
.field textarea,
body#app-root input,
body#app-root select,
body#app-root textarea {
  background: #FFFFFF !important;
  color: var(--text-black-final) !important;
  border-color: rgba(2,4,3,0.55) !important;
  caret-color: var(--text-black-final) !important;
}

.field input::placeholder,
.field textarea::placeholder,
body#app-root input::placeholder,
body#app-root textarea::placeholder {
  color: #17231C !important;
  opacity: 1 !important;
}

/* Keep text white only where the background is genuinely dark or photographic. */
.hero,
.hero *,
.section-dark,
.section-dark *,
.social-proof-section,
.social-proof-section *,
.place-card,
.place-card *,
.proof-context-card,
.proof-context-card *,
.hero-glass-card,
.hero-glass-card *,
.pricing-card.featured-dark,
.pricing-card.featured-dark * {
  color: #FFFFFF !important;
}

.hero p,
.hero li,
.hero span,
.hero .lead,
.hero .metric-label,
.hero-glass-card p,
.section-dark p,
.section-dark li,
.section-dark .card p,
.social-proof-section p,
.social-proof-section li,
.proof-disclaimer p,
.proof-context-card p,
.pricing-card.featured-dark p,
.pricing-card.featured-dark li {
  color: #FFFFFF !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero .metric-value,
.hero-glass-card strong,
.section-dark h2,
.section-dark h3,
.section-dark blockquote,
.social-proof-section h2,
.social-proof-section h3,
.social-proof-section strong,
.social-proof-section .proof-number-card strong,
.pricing-card.featured-dark h3,
.pricing-card.featured-dark .price,
.place-card h3 {
  color: #FFFFFF !important;
}

.eyebrow,
.hero .eyebrow,
.section-dark .eyebrow,
.social-proof-section .eyebrow,
.scene-label,
.hero-glass-card span,
.place-card span,
.proof-context-card span,
.proof-number-card span,
.plan-badge,
.plan-kicker,
.metric-card strong {
  color: #FFE08A !important;
}

/* Footer was too faint. Make it a light, high-contrast footer. */
.footer,
body#app-root footer {
  background: linear-gradient(180deg, #FFFDF7, #F2EADC) !important;
  color: var(--text-black-final) !important;
  border-top: 1px solid rgba(2,4,3,0.18) !important;
}

.footer *,
.footer p,
.footer a,
.footer li,
.footer h4,
.footer strong,
.footer span,
.footer-bottom,
body#app-root footer *,
body#app-root footer p,
body#app-root footer a,
body#app-root footer li,
body#app-root footer h4,
body#app-root footer span {
  color: var(--text-black-final) !important;
}

.footer .brand-mark,
body#app-root footer [style*="background:#d2f800"] {
  background: var(--text-black-final) !important;
  color: #FFFFFF !important;
}

.footer .brand-mark *,
body#app-root footer [style*="background:#d2f800"] * {
  color: #FFFFFF !important;
}

/* Extra tracking for Essence Sans Light so letters do not blur together. */
body,
p,
li,
a,
label,
input,
select,
textarea,
button,
span,
div {
  letter-spacing: 0.035em !important;
}

h1,
h2,
h3,
.metric-value,
.price,
.proof-number-card strong,
.hero-glass-card strong {
  letter-spacing: 0.012em !important;
}

/* Specificity hammer: beat the earlier high-specificity muted selectors. */
.section:not(.section-dark):not(.social-proof-section),
.section:not(.section-dark):not(.social-proof-section) *,
.section:not(.section-dark):not(.social-proof-section) p,
.section:not(.section-dark):not(.social-proof-section) li,
.section:not(.section-dark):not(.social-proof-section) span:not(.eyebrow):not(.status-text):not(.plan-badge),
#problem,
#problem *,
#how-it-works,
#how-it-works *,
#plans,
#plans *,
#apply,
#apply *,
.local-place-section,
.local-place-section *,
.card,
.card *,
.step-card,
.step-card *,
.pricing-card:not(.featured-dark),
.pricing-card:not(.featured-dark) *,
.form-panel,
.form-panel *,
.aside-panel,
.aside-panel *,
.metric-card,
.metric-card *,
.feature-list,
.feature-list *,
.sidebar-list,
.sidebar-list *,
.checkbox-row,
.checkbox-row *,
.trust-note,
.fine-note {
  color: #020403 !important;
}

.field input,
.field select,
.field textarea,
input,
select,
textarea {
  color: #020403 !important;
}

.field input::placeholder,
.field textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: #020403 !important;
  opacity: 1 !important;
}

/* Re-apply the only sections that should remain white after the hammer. */
.hero,
.hero *,
.section-dark,
.section-dark *,
.social-proof-section,
.social-proof-section *,
.place-card,
.place-card *,
.proof-context-card,
.proof-context-card *,
.hero-glass-card,
.hero-glass-card *,
.pricing-card.featured-dark,
.pricing-card.featured-dark * {
  color: #FFFFFF !important;
}

.eyebrow,
.hero .eyebrow,
.section-dark .eyebrow,
.social-proof-section .eyebrow,
.scene-label,
.hero-glass-card span,
.place-card span,
.proof-context-card span,
.proof-number-card span,
.pricing-card.featured-dark .plan-kicker,
.pricing-card.featured-dark .plan-badge {
  color: #FFE08A !important;
}

/* Footer stays light with black text. */
.footer,
.footer *,
body#app-root footer,
body#app-root footer * {
  color: #020403 !important;
}

/* ================================================================
   REPAIR PASS
   Essence Sans Light was too thin and the contrast hammer hit image cards.
   Keep the supplied font, but make it readable and restore photo text.
   ================================================================ */
body,
p,
li,
a,
label,
input,
select,
textarea,
button,
span,
div,
summary {
  font-weight: 650 !important;
  letter-spacing: 0.012em !important;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-copy h1,
.section-heading h2,
.editorial-heading h2,
.proof-editorial-row h2,
.place-card h3,
.quote-card blockquote,
.pricing-card h3,
.price,
.metric-value,
.proof-number-card strong,
.hero-glass-card strong,
.form-panel h2,
.aside-panel h3 {
  font-weight: 800 !important;
  letter-spacing: 0.004em !important;
}

.topbar-pill,
.eyebrow,
.trust-chip,
.plan-kicker,
.plan-badge,
.field label,
.metric-card strong,
.proof-context-card span,
.proof-number-card span,
.place-card span {
  font-weight: 800 !important;
  letter-spacing: 0.085em !important;
}

.hero,
.hero *,
.hero-copy h1,
.hero-copy .lead,
.hero-trust *,
.hero-meta *,
.hero-panel *,
.hero-glass-card *,
.section-dark,
.section-dark *,
.social-proof-section,
.social-proof-section *,
.proof-context-card,
.proof-context-card *,
.pricing-card.featured-dark,
.pricing-card.featured-dark *,
.place-card,
.place-card *,
.place-card h3,
.place-card span {
  color: #FFFFFF !important;
}

.hero .eyebrow,
.section-dark .eyebrow,
.social-proof-section .eyebrow,
.scene-label,
.hero-glass-card span,
.place-card span,
.proof-context-card span,
.proof-number-card span,
.pricing-card.featured-dark .plan-kicker,
.pricing-card.featured-dark .plan-badge {
  color: #FFE08A !important;
}

.place-card h3,
.place-card span,
.hero-copy h1,
.hero-copy .lead,
.hero-glass-card,
.proof-editorial-row h2,
.proof-editorial-row p {
  text-shadow: 0 3px 22px rgba(0,0,0,0.72) !important;
}

.site-header,
.site-header *,
.mobile-menu,
.mobile-menu *,
.footer,
.footer *,
.section:not(.section-dark):not(.social-proof-section):not(.hero):not(.local-place-section),
.section:not(.section-dark):not(.social-proof-section):not(.hero):not(.local-place-section) * {
  text-shadow: none !important;
}

.site-header *,
.mobile-menu *,
.footer *,
#problem *,
#how-it-works *,
#plans .pricing-card:not(.featured-dark) *,
#apply .form-panel *,
#apply .aside-panel * {
  color: #020403 !important;
}

.button-primary,
.button-primary *,
.header-actions .button,
.header-actions .button *,
#pay-redirect-btn,
#pay-redirect-btn * {
  color: #FFFFFF !important;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.7vw, 6.2rem) !important;
  line-height: 0.96 !important;
}

.hero-copy .lead {
  font-size: clamp(1rem, 1.25vw, 1.18rem) !important;
  line-height: 1.72 !important;
}

@media (max-width: 639px) {
  .hero-copy h1 {
    font-size: clamp(2.2rem, 10.2vw, 3.1rem) !important;
    line-height: 1 !important;
  }
}

/* ================================================================
   CLIENT REQUEST PATCH — copy legibility, pricing alignment, #STELL ID
   ================================================================ */
.metric-value,
.brand-copy strong,
.nav-links a,
.mobile-menu a,
.footer a,
.footer strong,
.button,
[class*="stell"],
a,
p,
li,
span,
label,
summary {
  overflow-wrap: normal;
}

.metric-value,
.button,
.nav-links a,
.mobile-menu a,
.footer a,
.hero-trust .trust-chip,
.feature-list li {
  white-space: normal;
}

.hero-meta .metric-value,
.hero .button,
.nav-links a[href*="solution"],
.mobile-menu a[href*="solution"],
.footer a[href*="solution"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  letter-spacing: 0.035em !important;
}

.hero-copy .lead,
.hero-meta .metric-label,
.hero-glass-card p,
.editorial-heading p,
.proof-editorial-row p,
.proof-context-card p,
.proof-disclaimer p,
#problem .section-heading p,
#problem .card p,
#solution .section-heading p,
#solution .quote-card blockquote,
#solution .quote-card p,
#how-it-works .section-heading p,
.step-card p,
#plans .section-heading p,
.pricing-card p,
.pricing-card li,
#faq .section-heading p,
.trust-card p,
.faq-item p,
#apply .form-panel > p,
#apply .aside-panel > p,
#apply .metric-card p,
#apply .sidebar-list li,
.checkbox-row span,
.trust-note,
.footer p,
.footer a,
.footer h4,
.footer span,
.footer strong,
.field label,
.field input,
.field select,
.field textarea,
.field input::placeholder,
.field textarea::placeholder,
#pay-redirect-btn {
  font-weight: 800 !important;
}

.hero-copy .lead,
.hero-meta .metric-label,
.hero-glass-card p {
  color: #FFFFFF !important;
}

.place-card span {
  color: #FFE08A !important;
  font-weight: 900 !important;
  text-shadow: 0 3px 18px rgba(0,0,0,0.85) !important;
}

.place-card h3 {
  color: #FFFFFF !important;
  font-weight: 900 !important;
  text-shadow: 0 3px 18px rgba(0,0,0,0.85) !important;
}

.place-card h3,
.place-card span,
.place-card div {
  line-height: 1.08 !important;
}

.place-grid {
  align-items: stretch !important;
}

@media (min-width: 1024px) {
  .place-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
  }

  .place-vineyard,
  .place-coffee,
  .place-mountain,
  .place-town {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 360px !important;
  }
}

.proof-number-card p {
  display: block !important;
  margin-top: 0.9rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.proof-disclaimer {
  padding: 1.1rem 1.35rem !important;
}

.proof-disclaimer p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem) !important;
  line-height: 1.65 !important;
  font-weight: 900 !important;
}

.solution-grid {
  align-items: stretch !important;
}

#solution .quote-card blockquote,
#solution .quote-card p {
  color: #FFFFFF !important;
  font-weight: 900 !important;
}

#solution .quote-card blockquote {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem) !important;
}

.plan-grid {
  align-items: stretch !important;
}

.pricing-card,
.pricing-card.recommended,
.pricing-card.featured-dark {
  transform: none !important;
  background: rgba(255,253,247,0.99) !important;
  border: 1px solid rgba(2,4,3,0.16) !important;
  box-shadow: 0 18px 58px rgba(7,20,15,0.08) !important;
  color: #020403 !important;
}

.pricing-card *,
.pricing-card.recommended *,
.pricing-card.featured-dark * {
  color: #020403 !important;
  text-shadow: none !important;
}

.pricing-card .button,
.pricing-card .button-secondary,
.pricing-card .button-primary,
.pricing-card.featured-dark .button {
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #721926, #A23A48 62%, #6A1724) !important;
  color: #FFFFFF !important;
  box-shadow: 0 18px 40px rgba(114,25,38,0.28) !important;
  font-weight: 900 !important;
}

.pricing-card .button *,
.pricing-card .button-secondary *,
.pricing-card .button-primary * {
  color: #FFFFFF !important;
}

.pricing-card .button:hover,
.pricing-card .button-secondary:hover,
.pricing-card .button-primary:hover {
  background: linear-gradient(135deg, #5E111B, #A23A48 68%, #5E111B) !important;
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(114,25,38,0.36) !important;
}

.plan-badge {
  border: 0 !important;
  box-shadow: none !important;
}

.price span {
  white-space: nowrap !important;
}

.hero-meta .metric-card:nth-child(3) .metric-value {
  font-size: clamp(1.05rem, 1.65vw, 1.45rem) !important;
  letter-spacing: 0.08em !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.form-panel,
.aside-panel,
.field input,
.field select,
.field textarea {
  color: #020403 !important;
}

.field input,
.field select,
.field textarea {
  font-weight: 900 !important;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #020403 !important;
  opacity: 1 !important;
  font-weight: 900 !important;
}

.fine-note {
  display: none !important;
}

.footer,
.footer * {
  font-weight: 900 !important;
}

.stell-id {
  display: inline-block !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  letter-spacing: 0.085em !important;
  font-weight: 900 !important;
}

.plan-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.5vw, 1.35rem) !important;
  align-items: stretch !important;
}

.pricing-card,
.pricing-card.recommended {
  height: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
}

.pricing-card .feature-list {
  flex: 1 1 auto !important;
}

.pricing-card .button {
  margin-top: auto !important;
}

.form-panel,
.aside-panel,
.footer {
  background-color: rgba(255, 253, 247, 0.98);
}

.form-panel *,
.aside-panel *,
.footer * {
  color: #020403 !important;
}

.section-dark .form-panel *,
.section-dark .aside-panel *,
.section-dark .footer * {
  color: #020403 !important;
}

@media (max-width: 1180px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .plan-grid,
  .place-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card,
  .pricing-card.recommended {
    min-height: auto !important;
  }
}

/* FINAL CLIENT QA OVERRIDES: these must remain last in the file. */
.place-card span,
.local-place-section .place-card span,
body#app-root .local-place-section .place-card span {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
  font-weight: 900 !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9) !important;
}

.place-card h3,
.local-place-section .place-card h3,
body#app-root .local-place-section .place-card h3 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-weight: 900 !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9) !important;
}

.pricing-card .button,
.pricing-card .button-secondary,
.pricing-card .button-primary,
.pricing-card .button:visited,
.pricing-card .button-secondary:visited,
.pricing-card .button-primary:visited,
body#app-root .pricing-card .button {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.pricing-card .button *,
.pricing-card .button-secondary *,
.pricing-card .button-primary *,
body#app-root .pricing-card .button * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

html body #local-place.local-place-section .place-grid .place-card span,
html body section#local-place.local-place-section .place-grid .place-card span {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
}

html body #local-place.local-place-section .place-grid .place-card h3,
html body section#local-place.local-place-section .place-grid .place-card h3 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

html body #plans .plan-grid .pricing-card a.button,
html body #plans .plan-grid .pricing-card a.button.button-secondary,
html body #plans .plan-grid .pricing-card a.button.button-primary {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* REQUESTED-ONLY FIXES: text, contrast, and spacing. No hero image/background changes. */
.field input,
.field select,
.field textarea {
  font-weight: 500 !important;
}

.field input::placeholder,
.field textarea::placeholder {
  font-weight: 500 !important;
  opacity: 0.82 !important;
}

.form-panel,
.aside-panel {
  padding: clamp(1.35rem, 3vw, 2.35rem) !important;
}

.form-panel > p,
.aside-panel > p,
.sidebar-list li,
.checkbox-row,
.trust-note,
.metric-card p,
.section-heading p,
.faq-item p {
  line-height: 1.7 !important;
}

.form-grid {
  gap: 1.1rem !important;
}

.field {
  gap: 0.45rem !important;
}

.aside-panel {
  gap: 1.1rem !important;
}

.hero-meta .metric-value,
.hero-meta .metric-value .stell-id {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
  font-weight: 900 !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72) !important;
}

.hero-meta .metric-label {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72) !important;
}

.hero-meta .metric-card strong {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-weight: 900 !important;
}

.local-place-section .place-card span,
html body #local-place.local-place-section .place-grid .place-card span {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
  font-size: clamp(0.82rem, 1vw, 0.98rem) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.local-place-section .place-card h3,
html body #local-place.local-place-section .place-grid .place-card h3 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-size: clamp(1rem, 1.35vw, 1.35rem) !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

.proof-disclaimer p {
  font-size: clamp(0.76rem, 0.9vw, 0.88rem) !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

#faq,
#faq.section-dark {
  background-color: #07140F !important;
}

#faq *,
#faq .faq-item summary,
#faq .faq-item p,
#faq .trust-card h3,
#faq .trust-card p {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

#faq .eyebrow {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
}

#faq .faq-item,
#faq .trust-card {
  background-color: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.footer {
  background-color: #0A0A0A !important;
}

.footer *,
.footer p,
.footer a,
.footer li,
.footer h4,
.footer strong,
.footer span,
.footer-bottom {
  color: #D2F800 !important;
  -webkit-text-fill-color: #D2F800 !important;
}

/* HEADER IMAGE RESTORE ONLY: keep the original homepage hero images visible. */
body:not(#app-root) .hero {
  background:
    linear-gradient(90deg, rgba(7,20,15,0.93) 0%, rgba(7,20,15,0.84) 42%, rgba(7,20,15,0.38) 100%),
    linear-gradient(180deg, transparent 62%, rgba(7,20,15,0.78)),
    url('https://images.unsplash.com/photo-1528823872057-9c018a7a7553?auto=format&fit=crop&w=2400&q=88') center / cover !important;
}

body:not(#app-root) .hero-photo-card {
  background:
    linear-gradient(180deg, rgba(7,20,15,0.05), rgba(7,20,15,0.58)),
    url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1500&q=88') center / cover !important;
}

/* FINAL EXACT REQUEST FIXES ONLY */
:root {
  --stell-dark-green-final: #07140F;
  --stell-dark-yellow-final: #C99A42;
  --stell-placeholder-final: #384238;
}

.stell-id {
  display: inline !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  letter-spacing: 0 !important;
  word-spacing: -0.18em !important;
}

.button-apply,
#pay-redirect-btn {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.button-apply *,
#pay-redirect-btn * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

html body #apply #pay-redirect-btn,
html body #apply button#pay-redirect-btn.button.button-primary.button-lg {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.field input::placeholder,
.field textarea::placeholder,
#registrationForm input::placeholder,
#registrationForm textarea::placeholder,
form input::placeholder,
form textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--stell-placeholder-final) !important;
  -webkit-text-fill-color: var(--stell-placeholder-final) !important;
  opacity: 1 !important;
  font-weight: 650 !important;
}

.field input,
.field select,
.field textarea,
#registrationForm input,
#registrationForm select,
#registrationForm textarea,
form input,
form select,
form textarea {
  color: var(--stell-placeholder-final) !important;
  -webkit-text-fill-color: var(--stell-placeholder-final) !important;
}

.hero-meta {
  position: relative !important;
  isolation: isolate;
}

.hero-meta::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: inherit;
  background: rgba(7, 20, 15, 0.72);
  z-index: -1;
  pointer-events: none;
}

.hero-meta .metric-card {
  background-color: rgba(7, 20, 15, 0.72) !important;
}

.hero-meta .metric-value,
.hero-meta .metric-value .stell-id {
  color: var(--stell-dark-yellow-final) !important;
  -webkit-text-fill-color: var(--stell-dark-yellow-final) !important;
}

.hero-meta .metric-label {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-weight: 900 !important;
}

.footer {
  background-color: var(--stell-dark-green-final) !important;
}

.footer *,
.footer p,
.footer a,
.footer li,
.footer h4,
.footer strong,
.footer span,
.footer-bottom {
  color: var(--stell-dark-yellow-final) !important;
  -webkit-text-fill-color: var(--stell-dark-yellow-final) !important;
  font-weight: 900 !important;
}

body,
body * {
  letter-spacing: 0.035em !important;
}

.stell-id,
.button,
.nav-links a,
.footer *,
.field input,
.field select,
.field textarea,
input::placeholder,
textarea::placeholder {
  letter-spacing: 0.035em !important;
}

.hero-trust .trust-chip,
.hero-trust .trust-chip *,
.topbar-pill {
  color: var(--stell-dark-yellow-final) !important;
  -webkit-text-fill-color: var(--stell-dark-yellow-final) !important;
  font-weight: 900 !important;
}

html body .footer {
  background: #07140F !important;
  background-color: #07140F !important;
}

html body .footer,
html body .footer *,
html body .footer p,
html body .footer a,
html body .footer li,
html body .footer h4,
html body .footer strong,
html body .footer span,
html body .footer-bottom {
  color: #C99A42 !important;
  -webkit-text-fill-color: #C99A42 !important;
  font-weight: 900 !important;
}

html body form input:not([type="checkbox"]):not([type="radio"]),
html body form input:not([type="checkbox"]):not([type="radio"]):focus,
html body form textarea,
html body form textarea:focus,
html body form select,
html body form select:focus {
  color: var(--stell-placeholder-final) !important;
  -webkit-text-fill-color: var(--stell-placeholder-final) !important;
  opacity: 1 !important;
  font-weight: 650 !important;
}

html body form input:-webkit-autofill,
html body form input:-webkit-autofill:hover,
html body form input:-webkit-autofill:focus,
html body form textarea:-webkit-autofill,
html body form textarea:-webkit-autofill:hover,
html body form textarea:-webkit-autofill:focus,
html body form select:-webkit-autofill,
html body form select:-webkit-autofill:hover,
html body form select:-webkit-autofill:focus {
  color: var(--stell-placeholder-final) !important;
  -webkit-text-fill-color: var(--stell-placeholder-final) !important;
  caret-color: var(--stell-placeholder-final) !important;
}

/* Standalone pages: override old inline template fonts/colours to match the homepage. */
body#app-root,
body#app-root *:not(svg):not(path) {
  font-family: 'Essence Sans', sans-serif !important;
}

body#app-root header {
  background: rgba(255, 253, 247, 0.96) !important;
  border-bottom: 1px solid rgba(23, 32, 22, 0.14) !important;
}

body#app-root header a,
body#app-root header span,
body#app-root header button {
  color: #0A0A0A !important;
  -webkit-text-fill-color: #0A0A0A !important;
}

body#app-root #desktop-nav a {
  color: #0A0A0A !important;
  -webkit-text-fill-color: #0A0A0A !important;
  background: transparent !important;
  border-left-color: rgba(7, 20, 15, 0.35) !important;
}

body#app-root #desktop-nav a[href*="#apply"],
body#app-root #mobile-menu a[href*="#apply"] {
  background: #9B3441 !important;
  color: #0A0A0A !important;
  -webkit-text-fill-color: #0A0A0A !important;
  border-color: transparent !important;
}

body#app-root #desktop-nav a[href*="#apply"] *,
body#app-root #mobile-menu a[href*="#apply"] * {
  color: #0A0A0A !important;
  -webkit-text-fill-color: #0A0A0A !important;
}

body#app-root #mobile-menu {
  background: rgba(255, 253, 247, 0.98) !important;
  border-bottom-color: rgba(23, 32, 22, 0.14) !important;
}

body#app-root #mobile-menu a {
  color: #0A0A0A !important;
  -webkit-text-fill-color: #0A0A0A !important;
}

body#app-root > div > div:first-child,
body#app-root > div > div:first-child *,
body#app-root > div > div:first-child span {
  color: #C99A42 !important;
  -webkit-text-fill-color: #C99A42 !important;
}

body#app-root footer {
  background: #07140F !important;
  background-color: #07140F !important;
  color: #C99A42 !important;
  -webkit-text-fill-color: #C99A42 !important;
}

body#app-root footer *,
body#app-root footer p,
body#app-root footer a,
body#app-root footer li,
body#app-root footer h4,
body#app-root footer strong,
body#app-root footer span {
  color: #C99A42 !important;
  -webkit-text-fill-color: #C99A42 !important;
  font-weight: 650 !important;
}

body#app-root footer a {
  text-decoration: none !important;
}

body#app-root footer a:hover {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
}

.place-card.place-mountain {
  background-image:
    linear-gradient(180deg, rgba(7, 20, 15, 0.18), rgba(7, 20, 15, 0.78)),
    url('assets/images/stellenbosch-local-living.jpg') !important;
  background-position: center !important;
  background-size: cover !important;
}

.place-card.place-mountain span {
  color: #FFE08A !important;
  -webkit-text-fill-color: #FFE08A !important;
  font-weight: 900 !important;
}

.place-card.place-mountain h3 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
