:root {
  --bg: #f8f5f0;            /* warm cream */
  --bg-secondary: #fefdfb;  /* lighter cream */
  --panel: #ffffff;         /* pure white */
  --text: #2d2520;          /* rich espresso brown */
  --muted: #6b5d52;         /* warm taupe */
  --accent: #d97652;        /* terracotta/clay pot */
  --accent-2: #5a9f7e;      /* sage/plant green */
  --accent-3: #e8b864;      /* golden honey */
  --link: #5a9f7e;          /* sage green for links */
  --border: #e5ddd3;        /* soft beige border */
  --radius: 20px;
  --shadow: 0 4px 20px rgba(45, 37, 32, .08);
  --shadow-lg: 0 12px 40px rgba(45, 37, 32, .12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for sticky header */
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
  /* Subtle paper texture */
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(45, 37, 32, .01) 2px, rgba(45, 37, 32, .01) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(45, 37, 32, .01) 2px, rgba(45, 37, 32, .01) 4px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

main > section {
  scroll-margin-top: 90px;
}

form#waitlist {
  scroll-margin-top: clamp(220px, 35vh, 360px);
}

/* Ensure hero section never gets cut off */
section.hero {
  scroll-margin-top: 0;
}

a { color: var(--link); text-decoration: none; transition: all .2s ease; }
a:hover { color: var(--accent); text-decoration: underline; }

/* Micro interactions for photography */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .45), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(90, 159, 126, .25), transparent 60%);
  opacity: 0;
  transition: opacity .6s ease;
}

.photo-frame img {
  display: block;
  transform-origin: center;
  transition: transform .6s cubic-bezier(0.33, 1, 0.68, 1), filter .6s ease;
  will-change: transform;
}

.photo-frame:hover img,
.photo-frame:focus-within img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.photo-frame:hover::after,
.photo-frame:focus-within::after {
  opacity: .3;
}

@media (prefers-reduced-motion: reduce) {
  .photo-frame::after {
    display: none;
  }

  .photo-frame img {
    transition: none;
  }

  .photo-frame:hover img,
  .photo-frame:focus-within img {
    transform: none;
    filter: none;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid var(--border);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--accent-2);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  margin-left: auto;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] {
  border-color: var(--accent-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.faq-item p {
  margin: 16px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.wrap { max-width: 1150px; margin: 0 auto; padding: 24px; }

header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: saturate(120%) blur(12px);
  background: linear-gradient(180deg, rgba(248,245,240,.95), rgba(248,245,240,.85));
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(45, 37, 32, .04);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav .links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav .links a:not(.btn) + a:not(.btn) {
  border-left: 1px solid rgba(45, 37, 32, .1);
  padding-left: 12px;
  margin-left: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 2px 8px rgba(90, 159, 126, .35), 0 0 0 0 rgba(90, 159, 126, .4);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(90, 159, 126, .35), 0 0 0 0 rgba(90, 159, 126, .4); }
  50% { box-shadow: 0 2px 12px rgba(90, 159, 126, .45), 0 0 0 6px rgba(90, 159, 126, 0); }
}

.nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width .3s ease;
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.nav a:not(.btn):hover {
  text-decoration: none;
  color: var(--accent-2);
}

.nav a.btn {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: none;
}

.nav a.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 0 56px;
  min-height: calc(100vh - 120px);
}

.card {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow .3s ease;
}

.card-pad-48 { padding: 48px; }
.card-pad-36 { padding: 36px; }
.card-pad-24 { padding: 24px; }
.card-pad-20 { padding: 20px; }

.card:hover { box-shadow: var(--shadow-lg); }

.hero .copy {
  padding: 42px;
  background: linear-gradient(135deg, #ffffff, #fefdfb);
  position: relative;
  overflow: hidden;
}

.hero .copy::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(90,159,126,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

h1 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.4;
  margin: 0 0 20px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 .highlight {
  color: var(--accent-2);
  font-weight: 700;
}

.tagline {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  margin-bottom: 6px;
}

.badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 14px; }

.badge {
  background: linear-gradient(135deg, rgba(90,159,126,.15), rgba(217,118,82,.12));
  border: 2px solid rgba(90,159,126,.25);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(45, 37, 32, .04);
  position: relative;
  letter-spacing: 0.01em;
}

.badge::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 4px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: .5;
}

.cta-row { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, #5a9f7e 0%, #6db28f 50%, #d97652 100%);
  color: white;
  border: 0;
  padding: 16px 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(90, 159, 126, .25), inset 0 1px 0 rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(90, 159, 126, .25), inset 0 1px 0 rgba(255, 255, 255, .2); }
  50% { box-shadow: 0 6px 24px rgba(90, 159, 126, .35), inset 0 1px 0 rgba(255, 255, 255, .3); }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90, 159, 126, .35), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.btn-primary:hover::before { left: 100%; }

.btn-ghost {
  background: white;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  padding: 16px 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(90, 159, 126, .12);
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  background: var(--accent-2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 159, 126, .25);
  text-decoration: none;
}

.hero .media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 3px solid var(--border);
  box-shadow: 0 8px 32px rgba(45, 37, 32, .12), inset 0 0 0 1px rgba(255, 255, 255, .5);
  position: relative;
}

.hero .media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,159,126,.04) 0%, transparent 50%);
  pointer-events: none;
}

section {
  margin: 64px 0;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section is visible when in viewport */
section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero section should be visible immediately */
section.hero {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

section::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  border-radius: 2px;
  opacity: .3;
}

/* Fallback animation for older browsers */
@supports not (transform: translate3d(0, 0, 0)) {
  section {
    opacity: 1;
  }
}

/* KPI cards animation */
.kpi {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.kpi.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Presale tiers animation */
.presale-tier {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.presale-tier.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.presale-featured.is-visible {
  transform: translateY(0) scale(1.05);
}

h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  margin: 0 0 18px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { color: var(--text); opacity: .92; line-height: 1.7; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.tile { padding: 32px; }

.tile h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tile h3::before {
  content: '🌱';
  font-size: 18px;
}

/* Override emoji for presale tiers that have their own */
#presale .tile h3::before,
.presale-tier h3::before {
  content: none;
}

.muted { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.list { padding-left: 20px; line-height: 1.8; }
.list li { margin-bottom: 8px; }
.list strong { color: var(--accent-2); font-weight: 600; }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.kpi {
  text-align: center;
  padding: 32px 20px;
  border-radius: 22px;
  border: 3px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(254,253,251,.9)),
    linear-gradient(135deg, rgba(90,159,126,.08), rgba(232,184,100,.08));
  box-shadow:
    0 6px 20px rgba(45, 37, 32, .06),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0px;
  display: none;
}

.kpi::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(90,159,126,.15), rgba(232,184,100,.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.kpi:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(45, 37, 32, .12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(90,159,126,.3);
}

.kpi:hover::after {
  opacity: 1;
}

.kpi .num {
  font-weight: 800;
  font-size: 32px;
  color: var(--accent-2);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(90, 159, 126, .1);
  letter-spacing: -0.02em;
}

.kpi .muted {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
  white-space: normal;
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 2px solid var(--border);
  margin-top: 48px;
}

.small { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Organic botanical accents */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(90,159,126,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,184,100,.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(217,118,82,.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero .copy::before {
  content: '🌿';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  opacity: .15;
}

/* Presale Tier Styling */
.presale-tier {
  background: linear-gradient(135deg, #ffffff, #fefdfb);
  border: 3px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px 40px;
  text-align: center;
  position: relative;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(45, 37, 32, .08);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.presale-tier:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(45, 37, 32, .15);
  border-color: var(--accent-2);
}

.presale-featured {
  border-color: var(--accent-2);
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(90, 159, 126, .2);
}

.presale-featured:hover {
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 20px 56px rgba(90, 159, 126, .25);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(90, 159, 126, .3);
}

.tier-icon {
  font-size: 56px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}

.tier-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-2);
  margin: 12px 0;
  letter-spacing: -0.02em;
}

/* Join Waitlist Button - Matches Send Message styling */
.btn-waitlist {
  /* Gradient background like btn-primary */
  background: linear-gradient(135deg, #5a9f7e 0%, #6db28f 50%, #d97652 100%);
  color: white;
  border: 0;
  padding: 16px 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  user-select: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;

  /* Matching shadow and pulse animation */
  box-shadow: 0 6px 20px rgba(90, 159, 126, .25), inset 0 1px 0 rgba(255, 255, 255, .2);
  animation: subtlePulse 3s ease-in-out infinite;
  transition: all .3s ease;
}

/* Shimmer effect */
.btn-waitlist::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease;
}

/* Hover state */
.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90, 159, 126, .35), inset 0 1px 0 rgba(255, 255, 255, .3);
  text-decoration: none;
}

.btn-waitlist:hover::before {
  left: 100%;
}

/* Focus state (accessibility) */
.btn-waitlist:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* Disabled state */
.btn-waitlist:disabled {
  background: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  animation: none;
}

/* Tier-specific sizing */
.tier-cta {
  width: 100%;
  margin-top: 16px;
}

/* Multi-step form button styles */
#nextBtn:hover, #prevBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 159, 126, .2);
}

#prevBtn:hover {
  background: rgba(90, 159, 126, .05);
}

/* Enhanced dropdown styles */
.form-select:hover {
  border-color: var(--accent-2);
  box-shadow: 0 2px 8px rgba(90, 159, 126, .1);
}

.form-select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(90, 159, 126, .1);
}

/* Form styling */
form input, form textarea {
  font-family: inherit;
  transition: all .3s ease;
  box-sizing: border-box;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--accent-2) !important;
  box-shadow: 0 0 0 3px rgba(90, 159, 126, .1);
}

form button {
  width: 100%;
  box-sizing: border-box;
}

form label {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

/* Hero image micro-interactions */
.hero-img-wrapper {
  will-change: transform, box-shadow;
}

.hero-img-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 37, 32, .18) !important;
}

.hero-img-wrapper:hover > img {
  transform: scale(1.05);
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr; }
  section::before { display: none; }
}

@media (max-width: 600px) {
  /* Reduce padding on mobile */
  .wrap { padding: 16px; }

  /* Mobile navigation */
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav .links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .nav .links a:not(.btn) + a:not(.btn) {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .nav a:not(.btn) {
    font-size: 14px;
  }

  /* Hero section adjustments */
  .hero {
    padding: 0 0 32px;
    gap: 24px;
  }

  .hero .copy {
    padding: 28px 24px;
  }

  /* Hero media grid - collapse to single column */
  .hero .media > div {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Hero images grid - show only first image or stack vertically */
  .hero-images-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Optional: hide second image on mobile for cleaner look */
  .hero-img-2 {
    display: none;
  }

  /* Location images - single column on mobile */
  .split > div > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Day/Night images - single column */
  div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 12px;"] {
    grid-template-columns: 1fr !important;
  }

  /* Larger tap targets for buttons */
  .nav a.btn {
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* CTA rows stack vertically */
  .cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .cta-row > * {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* KPIs to single column on very small screens */
  .kpis {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Reduce tile padding */
  .tile {
    padding: 24px 20px;
  }

  /* Card padding adjustments */
  .card-pad-48 {
    padding: 32px 20px;
  }

  .card-pad-36 {
    padding: 28px 20px;
  }

  .card-pad-24 {
    padding: 24px 20px;
  }

  /* Form improvements */
  .waitlist-form-container,
  .contact-form-container,
  .card-pad-20 {
    padding: 20px !important;
  }

  /* Multi-step form buttons */
  .form-button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .form-button-group > * {
    width: 100%;
  }

  .btn-next,
  .btn-submit,
  .btn-back.visible {
    width: 100%;
  }

  .kpi {
    padding: 24px 18px !important;
  }

  /* Typography adjustments */
  h1 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.3;
  }

  h2 {
    font-size: clamp(22px, 5vw, 28px);
  }

  .tagline {
    font-size: clamp(15px, 3.5vw, 17px);
  }

  /* Badges wrap better */
  .badges {
    gap: 8px;
  }

  .badge {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* Presale tiers - better mobile spacing */
  .presale-tier {
    padding: 32px 20px 36px;
  }

  .presale-featured {
    transform: scale(1);
  }

  .presale-featured:hover {
    transform: translateY(-4px) scale(1);
  }

  .tier-icon {
    font-size: 48px;
  }

  .tier-price {
    font-size: 36px;
  }

  /* Footer stacks */
  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .footer .small[style*="text-align:right"] {
    text-align: left !important;
  }

  /* Section margins */
  section {
    margin: 40px 0;
  }

  /* Form inputs full width */
  form input,
  form textarea,
  form select,
  form button {
    width: 100% !important;
    box-sizing: border-box;
  }
}

/* ============================================
   NEW UTILITY CLASSES - Replace inline styles
   ============================================ */

/* Waitlist form container */
.waitlist-form-container {
  background: linear-gradient(135deg, rgba(90,159,126,.08), rgba(232,184,100,.08));
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--border);
  margin: 24px 0;
}

.waitlist-header {
  margin-bottom: 20px;
}

.waitlist-title {
  font-size: 16px;
  color: var(--accent-2);
  font-weight: 600;
}

.waitlist-subtitle {
  margin: 6px 0 0;
  opacity: 0.8;
}

/* Progress bar */
.progress-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: var(--accent-2);
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step-title {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Form inputs */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: white;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(90, 159, 126, .1);
}

.form-input.error {
  border-color: var(--accent);
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message {
  color: var(--accent);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

/* Checkbox labels */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background: white;
  border: 2px solid var(--border);
  transition: all 0.2s ease;
}

.checkbox-label:hover {
  border-color: var(--accent-2);
}

.checkbox-label.checked {
  border-color: var(--accent-2);
  background-color: rgba(90, 159, 126, 0.05);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 14px;
}

/* Select dropdown */
.form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: white url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%235a9f7e%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276 9 12 15 18 9%27%3e%3c/polyline%3e%3c/svg%3e') no-repeat right 12px center;
  background-size: 20px;
  font-size: 15px;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
}

/* Form button container */
.form-button-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-back {
  display: none;
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid var(--accent-2);
  background: white;
  color: var(--accent-2);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.btn-back.visible {
  display: block;
}

.btn-back:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 159, 126, .2);
  background: rgba(90, 159, 126, .05);
}

.btn-next {
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: var(--accent-2);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 159, 126, .2);
}

.btn-next.hidden,
.btn-submit.hidden {
  display: none;
}

.btn-submit {
  flex: 1;
  margin: 0;
  white-space: nowrap;
}

/* Hero images grid */
.hero-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(45, 37, 32, .12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section decorative backgrounds */
.section-gradient-green {
  background: linear-gradient(135deg, rgba(90,159,126,.06) 0%, rgba(217,118,82,.03) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-terracotta {
  background: linear-gradient(135deg, rgba(217,118,82,.06) 0%, rgba(217,118,82,.02) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-sage {
  background: linear-gradient(135deg, rgba(90,159,126,.06) 0%, rgba(90,159,126,.02) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-gold {
  background: linear-gradient(135deg, rgba(232,184,100,.06) 0%, rgba(232,184,100,.02) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-mixed {
  background: linear-gradient(135deg, rgba(90,159,126,.08) 0%, rgba(232,184,100,.08) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-impact {
  background: linear-gradient(135deg, rgba(90,159,126,.04) 0%, rgba(232,184,100,.04) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-funding {
  background: linear-gradient(135deg, rgba(217,118,82,.04) 0%, rgba(217,118,82,.02) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-presale {
  background: linear-gradient(135deg, rgba(90,159,126,.03), rgba(232,184,100,.03));
}

/* Decorative emoji backgrounds */
.deco-emoji {
  position: absolute;
  opacity: .02;
  pointer-events: none;
}

.deco-emoji-pin {
  font-size: 200px;
  top: -50px;
  left: -50px;
}

.deco-emoji-rainbow {
  font-size: 180px;
  top: -40px;
  right: -40px;
}

.deco-emoji-money {
  font-size: 140px;
  bottom: -40px;
  right: -40px;
}

.deco-emoji-plant {
  font-size: 100px;
  bottom: -30px;
  left: -30px;
}

.deco-emoji-coffee {
  font-size: 110px;
  bottom: -25px;
  right: -25px;
}

.deco-emoji-moon {
  font-size: 110px;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.deco-emoji-city {
  font-size: 120px;
  bottom: -30px;
  left: -30px;
}

/* Title with emoji */
.title-with-emoji {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 36px);
}

.title-emoji {
  font-size: 36px;
}

/* Brand title gradient */
.brand-title-gradient {
  font-size: 1.3em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* Location grid */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.location-card {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.location-card-info {
  padding: 12px;
  background: var(--bg-secondary);
}

.location-name {
  margin: 0;
  font-weight: 600;
  color: var(--accent-2);
}

.location-area {
  margin: 4px 0 0;
  opacity: 0.8;
}

/* Concept images grid */
.concept-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.concept-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.concept-image-wrapper img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* Icon list items */
.icon-list {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1.9;
}

.icon-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.icon-list-item:last-child {
  margin-bottom: 0;
}

.icon-list-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Info callout */
.info-callout {
  background: rgba(90,159,126,.1);
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-2);
}

/* Image container with border */
.image-container {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(90, 159, 126, .18);
  box-shadow: 0 10px 28px rgba(45, 37, 32, .12);
  background: linear-gradient(135deg, #ffffff, #f8f5f0);
  display: flex;
  align-items: stretch;
  justify-content: center;
  aspect-ratio: 4 / 3;
  isolation: isolate;
}

.image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .65);
  pointer-events: none;
  mix-blend-mode: screen;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@supports not (aspect-ratio: 4 / 3) {
  .image-container {
    display: block;
    height: 0;
    padding-top: 75%;
  }

  .image-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 600px) {
  .image-container {
    margin-top: 24px;
    box-shadow: 0 18px 32px rgba(45, 37, 32, .14);
    border-radius: 22px;
  }
}

/* White info box */
.info-box {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.info-box-title {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 20px;
}

/* Section content wrapper */
.section-content {
  position: relative;
  z-index: 1;
}

/* Footer decorative */
.footer-deco-plant {
  position: absolute;
  top: -100px;
  left: -50px;
  font-size: 180px;
  opacity: .03;
  pointer-events: none;
}

.footer-deco-coffee {
  position: absolute;
  bottom: -80px;
  right: -60px;
  font-size: 150px;
  opacity: .03;
  pointer-events: none;
}

/* Contact form container */
.contact-form-container {
  padding: 24px;
  background: linear-gradient(135deg, #fefdfb, #ffffff);
}

/* Timeline list (day/night flow) */
.timeline-list {
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline-item {
  margin-bottom: 12px;
}

.timeline-time {
  color: var(--accent-3);
  font-size: 15px;
  font-weight: 600;
}

.timeline-item:nth-child(2) .timeline-time {
  color: var(--accent-2);
}

.timeline-item:nth-child(3) .timeline-time {
  color: var(--accent);
}

/* Funding list */
.funding-list {
  line-height: 1.9;
  padding: 0;
  margin: 0;
  list-style: none;
}

.funding-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.funding-item:last-child {
  margin-bottom: 0;
}

.funding-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.funding-label {
  color: var(--accent-2);
  font-weight: 600;
}

/* Help ways container */
.help-ways {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.help-way {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-way-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.help-way-title {
  color: var(--accent-2);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.help-way:nth-child(2) .help-way-title {
  color: var(--accent);
}

.help-way:nth-child(3) .help-way-title {
  color: var(--accent-3);
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* FAQ styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--accent-2);
  box-shadow: 0 4px 16px rgba(90, 159, 126, .1);
}

.faq-item[open] {
  border-color: var(--accent-2);
  background: linear-gradient(135deg, rgba(90,159,126,.03), rgba(255,255,255,1));
}

.faq-item summary {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 16px 0 0;
  padding: 0;
  line-height: 1.7;
  color: var(--muted);
}

/* Photo frame effect */
.photo-frame {
  position: relative;
  isolation: isolate;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}
