/* =========
   Design tokens
   ========= */
:root{
  --bg: #ffffff;
  --text: #0b1a1d;
  --muted: #d9c7a7;          /* warm sand */
  --tan: #e7d3b0;            /* section background */
  --teal: #0f4c54;           /* deep teal */
  --teal-2: #0b3b41;
  --lime: #d7f000;           /* neon lime banner */
  --line: rgba(11, 26, 29, 0.18);
  --shadow: 0 10px 24px rgba(0,0,0,0.08);
  --radius: 18px;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}

img{ max-width: 100%; display:block; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}


/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top: 0;
  background:#000;
  color:#fff;
  padding:.75rem 1rem;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

/* =========
   Header
   ========= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo-image{
  height: 44px;
  width: auto;
  display: block;
}

.nav{
  display: none;
}

.btn.btn-small{
  display: none;
}

.nav-toggle{
  display: block;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(11,26,29,.85);
  margin: 5px 0;
  border-radius: 999px;
}

.mobile-nav{
  width: 100%;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mobile-nav.is-open{
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.9rem 0 1rem;
}

.mobile-nav a{
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover{
  background: rgba(11,26,29,0.05);
  text-decoration: none;
}

.mobile-nav .btn{
  margin-left: auto;
}

.mobile-nav[hidden]{
  display: none;
}

#why,
#where {
  scroll-margin-top: 120px;
}

.nav-toggle{
  display: block;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(11,26,29,.85);
  margin: 5px 0;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* Sticky lime banner under header */
.lime-banner{
  position: sticky;
  top: 70px; /* adjust if your header height changes */
  z-index: 999;
  background: var(--lime);
  color: #0b1a1d;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.lime-inner{
  padding: .9rem 0;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
}

.lime-inner p{
  margin: 0;
}

/* =========
   Buttons
   ========= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: .5rem;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: var(--muted);
  color: #0b1a1d;
  font-weight: 700;
  border: 1px solid rgba(11,26,29,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-decoration: none !important;
}
.btn:hover{ transform: translateY(-1px); text-decoration: none; }
.btn:active{ transform: translateY(0px); }
.btn-small{ padding: .6rem 1rem; font-size: .95rem; }
.btn-full{ width: 100%; border-radius: 12px; }

.btn-ghost{
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(11,26,29,0.14);
  color: rgba(11,26,29,.85);
}
.btn-ghost:hover{ background: rgba(11,26,29,0.04); }

.btn-floating{
  position:absolute;
  top: 18px;
  right: 18px;
  padding: .55rem .9rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* =========
   Hero
   ========= */
.hero{
  padding: 2rem 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0 2rem;
}

.hero-actions .btn{
  font-size: 1.05rem;
  padding: 1rem 1.3rem;
}

.hero-actions .btn:hover{
  transform: translateY(-2px);
}

.kicker{
  margin: 0 0 .6rem;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: .78rem;
  color: rgba(15,76,84,.75);
}

h1{
  margin: 0;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}
h1 .muted{ color: var(--muted); font-weight: 800; }
h1 .strong{ color: var(--teal); font-weight: 900; }

.lead{
  margin: 1rem 0 1.25rem;
  max-width: 46ch;
  color: rgba(11,26,29,.75);
  font-size: 1.02rem;
}

.hero-actions{
  display:flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;   /* keeps a nice shape on all screens */
  border-radius: 20px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crops image nicely */
  display: block;
}

.runner-placeholder{
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  border: 2px dashed rgba(15,76,84,.25);
  background:
    radial-gradient(circle at 25% 25%, rgba(15,76,84,.12), transparent 40%),
    linear-gradient(135deg, rgba(15,76,84,.08), rgba(217,199,167,.12));
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(15,76,84,.65);
  font-weight: 800;
  letter-spacing: .08em;
}

/* =========
   Sections
   ========= */
.why{
  background: var(--teal);
  color: #fff;
  padding: 2.5rem 0;
}
.why-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.promo-card, .why-card, .where-card, .map-card, .newsletter-card, .image-card, .faq-card{
  border-radius: var(--radius);
}

.promo-card{
  background: rgba(255,255,255,0.08);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.14);
}
.promo-frame {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  aspect-ratio: 16 / 9;
}

.promo-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.promo-note{
  margin: .75rem 0 0;
  color: rgba(255,255,255,0.8);
  font-size: .92rem;
}

.why-card{
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.25rem 1.25rem 1.35rem;
}
.script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  color: rgba(217,199,167,0.95);
}
.why-card h2{
  margin: .2rem 0 .85rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.why-list{
  margin: 0;
  padding-left: 1.1rem;
  display:grid;
  gap: .55rem;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}
.why-footnote{
  margin: .9rem 0 0;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
}

/* WHERE */
.where{
  background: #fff;
  padding: 2.8rem 0;
}
.where-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.where-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.where-card h2{
  margin: .2rem 0 1rem;
  font-size: 2.05rem;
  color: var(--teal);
}
.where-meta{
  margin: 0 0 1.1rem;
  display:grid;
  gap: .85rem;
}
.where-meta div{
  display:grid;
  gap: .2rem;
}
.where-meta dt{
  font-weight: 800;
  color: rgba(11,26,29,.7);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.where-meta dd{
  margin: 0;
  color: rgba(11,26,29,.75);
}

.map-card{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-placeholder{
  height: 320px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: rgba(15,76,84,.75);
  background:
    linear-gradient(135deg, rgba(11,26,29,0.06), rgba(215,240,0,0.12)),
    radial-gradient(circle at 70% 35%, rgba(15,76,84,.10), transparent 45%);
}

/* SOCIALS */
.socials{
  background: #fff;
  padding: 2.5rem 0;
}

.socials-grid{
  display: grid;
  grid-template-columns: .8fr .8fr 1.3fr;
  gap: 1.5rem;
  align-items: center;
}

.socials-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 1.5rem;
}

.socials-card h2{
  margin: .15rem 0 .75rem;
  font-size: 2.2rem;
  color: var(--teal);
}

.socials-copy{
  margin: 0 0 1rem;
  color: rgba(11,26,29,0.75);
  max-width: 52ch;
}

.social-links{
  display: grid;
  gap: .8rem;
}

.social-link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f4f6f6;
  border: 1px solid rgba(11,26,29,0.08);
  text-decoration: none;
}

.social-link:hover{
  text-decoration: none;
  background: #eef2f2;
}

.social-name{
  font-weight: 800;
  color: var(--teal);
}

.social-handle{
  color: rgba(11,26,29,0.65);
}

.socials-image-card{
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow);
}

.socials-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 30% 30%;
}

.socials-image-card:hover .socials-image{
  transform: scale(1.04);
}

/* stagger the second reel slightly lower */
.socials-image-card:nth-child(2){
  transform: translateY(18px);
}

/* keep the text card centered nicely */
.socials-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 1.5rem;
}


/* NEWSLETTER */
.newsletter{
  background: var(--teal);
  padding: 2.5rem 0 0;
  color: #fff;
}

.newsletter-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 2rem;
}

.image-card{
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
}

.image-card img,
.newsletter-image{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.newsletter-card{
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 1.5rem;
}

.newsletter-card h2{
  margin: .15rem 0 .65rem;
  font-size: 2.2rem;
  color: #fff;
}

.newsletter-copy{
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.82);
}

.newsletter-card .label{
  color: rgba(255,255,255,0.92);
}

.newsletter-card input{
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.newsletter-card input::placeholder{
  color: rgba(255,255,255,0.55);
}

.newsletter-card .form-hint{
  color: rgba(255,255,255,0.72);
}

.newsletter-card .btn{
  margin-top: .2rem;
}

.signup-cta{
  margin-top: 1rem;
}

.signup-btn{
  font-size: 1.05rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--muted);
}

.signup-btn:hover{
  transform: translateY(-2px);
}

.brevo-form-wrap{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.brevo-form-wrap iframe{
  width: 100%;
  min-height: 200px;
  border: 0;
  display: block;
  background: white;
  border-radius: 18px;
}

.signup-page{
  padding: 4rem 0;
  background: #fff;
}

.signup-container{
  max-width: 720px;
}

.signup-container h1{
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.signup-container p{
  margin-bottom: 2rem;
  color: rgba(11,26,29,.7);
}


/* MOBILE */
@media (max-width: 900px){
  .socials-grid{
    grid-template-columns: 1fr;
  }

  .socials-image-card{
    aspect-ratio: 9 / 16;
    max-width: 320px;
  }

  .socials-image-card:nth-child(2){
    transform: none;
  }
}
.image-placeholder{
  color: rgba(15,76,84,.75);
  border: 2px dashed rgba(15,76,84,.20);
}
.label{
  display:block;
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: .25rem;
}
input{
  width: 100%;
  padding: .85rem .9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
input::placeholder{ color: rgba(255,255,255,0.6); }
input:focus{
  border-color: rgba(215,240,0,0.55);
  box-shadow: 0 0 0 4px rgba(215,240,0,0.15);
}
.hidden{ display:none; }
.form-hint{
  margin: .1rem 0 0;
  font-size: .88rem;
  color: rgba(255,255,255,0.72);
}
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

.verse-banner{
  background: var(--lime);
  color: #0b1a1d;
  margin-top: 0;
}
.verse-inner{
  padding: .85rem 0;
  text-align:center;
}
.verse{
  margin: 0;
  font-weight: 800;
}
.verse .ref{
  display:inline-block;
  margin-left: .35rem;
  font-weight: 900;
}

/* FAQ */
.faq{
  background: var(--tan);
  padding: 2.6rem 0;
}
.faq-card{
  background: transparent;
}
.faq-card h2{
  margin: .2rem 0 1.1rem;
  font-size: 2.1rem;
  color: var(--teal);
}
.accordion{
  border-top: 1px solid rgba(11,26,29,0.20);
}
details{
  border-bottom: 1px solid rgba(11,26,29,0.20);
}
summary{
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0;
  font-weight: 800;
  color: rgba(11,26,29,0.85);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}
summary::-webkit-details-marker{ display:none; }
summary::after{
  content: "+";
  font-weight: 900;
  font-size: 1.2rem;
  color: rgba(15,76,84,.9);
}
details[open] summary::after{ content: "×"; }
.answer{
  padding: 0 0 1.1rem;
  color: rgba(11,26,29,0.78);
}

.btn,
.social-link,
summary,
.social a {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.promo-card,
.why-card,
.where-card,
.socials-card,
.newsletter-card,
.faq-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-card:hover,
.why-card:hover,
.where-card:hover,
.socials-card:hover,
.newsletter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

/* Footer */
.site-footer{
  background: var(--teal);
  color:#fff;
  padding: 2.2rem 0 1.2rem;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-tagline{
  margin: .7rem 0 1rem;
  color: rgba(255,255,255,0.78);
}
.social{
  display:flex;
  gap: .7rem;
}
.social a{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  text-decoration:none;
}
.social a:hover{ background: rgba(255,255,255,0.16); }

.footer-news h3{
  margin: .2rem 0 .65rem;
  font-size: 1.15rem;
}
.footer-form{
  display:flex;
  gap: .6rem;
  align-items:center;
  flex-wrap: wrap;
}
.footer-form input{
  min-width: 220px;
  background: rgba(255,255,255,0.10);
}
.footer-bottom{
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 900px){
  .nav{ display:none; }
  .nav-toggle{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .runner-placeholder{ height: 360px; }
  .why-grid{ grid-template-columns: 1fr; }
  .where-grid{ grid-template-columns: 1fr; }
  .socials-grid{ grid-template-columns: 1fr; }
  .newsletter-grid{ grid-template-columns: 1fr; }
  .btn-floating{ display:none; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  .btn:hover{ transform:none; }
}
