/* =============================================================
   Rabbit Hole Landscaping — design system
   Earthy palette: leaf-green / forest / terracotta / warm sand
   (Variable names kept from the shared scaffold; only values change,
    so every component class re-themes from these tokens.)
   ============================================================= */

:root {
  --teal:        #5B8C3E;   /* leaf green — primary */
  --teal-bright: #7BAE54;
  --teal-deep:   #2F5223;   /* deep forest — dark sections */
  --navy:        #1C2A16;   /* near-black forest */
  --sun:         #C97A40;   /* terracotta / clay accent */
  --sun-bright:  #E0944F;
  --cream:       #E8DCBF;   /* warm sand */
  --cream-soft:  #F4EEDD;
  --foam:        #FFFFFF;
  --ink:         #1C2A16;
  --ink-soft:    #3A4A30;
  --gray:        #6E7A66;
  --gray-100:    #EEF1E9;

  --shadow-md:   0 10px 30px rgba(28,42,22,.12);
  --shadow-lg:   0 24px 60px rgba(28,42,22,.22);
  --radius:      18px;
  --maxw:        1200px;
  --header-h:    78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;       /* Fraunces — organic, premium serif */
  line-height: 1.05;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-family: "Caveat", cursive;
  text-transform: none;
  font-size: 1.5rem;
  color: var(--sun);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.section { padding: 88px 0; position: relative; }
.section--cream { background: var(--cream-soft); }
.section--teal { background: var(--teal-deep); color: var(--foam); }
.section--navy { background: var(--navy); color: var(--foam); }
.section--cream .section-head h2,
.section--cream .section-head p,
.section--teal .section-head h2,
.section--teal .section-head p,
.section--navy .section-head h2,
.section--navy .section-head p { color: inherit; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin: 8px 0 14px; }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); }
.section--teal .section-head p,
.section--navy .section-head p { color: rgba(255,255,255,.78); }

/* ============== WAVY ANIMATED GRADIENT BACKGROUND ============== */
.wavy-bg {
  position: relative;
  color: var(--foam);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(123,174,84,.95) 0%, rgba(123,174,84,0) 60%),
    radial-gradient(120% 80% at 90% 100%, rgba(47,82,35,1) 0%, rgba(47,82,35,0) 60%),
    radial-gradient(80% 80% at 70% 30%, rgba(201,122,64,.45) 0%, rgba(201,122,64,0) 55%),
    linear-gradient(135deg, #1C2A16 0%, #2F5223 50%, #5B8C3E 100%);
  background-size: 200% 200%, 200% 200%, 220% 220%, 200% 200%;
  background-position: 0% 0%, 100% 100%, 0% 100%, 0% 50%;
  animation: leafDrift 22s ease-in-out infinite;
}
@keyframes leafDrift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 0% 100%, 0% 50%;
  }
  33% {
    background-position: 30% 20%, 70% 80%, 30% 70%, 50% 30%;
  }
  66% {
    background-position: 60% 40%, 40% 60%, 60% 40%, 100% 70%;
  }
}

/* SVG wave divider at the bottom of any container that needs it */
.wave-divider {
  position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0;
  pointer-events: none; z-index: 1;
}
.wave-divider svg { width: 100%; height: 90px; display: block; }
.wave-divider--cream svg path { fill: var(--cream-soft); }
.wave-divider--white svg path { fill: var(--foam); }
.wave-divider--teal svg path { fill: var(--teal-deep); }
.wave-divider--top { bottom: auto; top: -1px; transform: scaleY(-1); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.3px;
  padding: 15px 28px; border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-sun { background: var(--sun); color: #fff; border-color: var(--sun); }
.btn-sun:hover { background: var(--sun-bright); border-color: var(--sun-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-bright); border-color: var(--teal-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--foam); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-ink { background: var(--ink); color: var(--foam); border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============== HEADER ============== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(28,42,22,.55), rgba(28,42,22,0));
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.header.scrolled {
  background: rgba(28,42,22,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream-soft);
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(0,0,0,.25);
}
.brand__badge img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); display: block; }
.brand__name { color: #fff; line-height: 1.05; }
.brand__name strong { font-family: "Fraunces", Georgia, serif; font-size: 1.25rem; letter-spacing: 1.5px; display: block; }
.brand__name span { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.78); }

.nav { display: flex; align-items: center; gap: 22px; }
.nav > a, .nav__dropdown-toggle { color: #fff; font-weight: 500; font-size: .95rem; transition: color .15s; cursor: pointer; }
.nav > a:hover, .nav__dropdown-toggle:hover { color: var(--sun-bright); }
.nav a[aria-current="page"] { color: var(--sun); }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.nav__chev { transition: transform .2s ease; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: -14px; min-width: 220px;
  background: rgba(28,42,22,.97);
  backdrop-filter: blur(8px);
  border-radius: 12px; padding: 8px 0;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
  border: 1px solid rgba(255,255,255,.08);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown:hover .nav__chev,
.nav__dropdown.open .nav__chev { transform: rotate(180deg); }
.nav__dropdown-menu a {
  display: block; padding: 11px 18px; font-size: .92rem; color: #e7e9ec;
}
.nav__dropdown-menu a:hover { background: rgba(201,122,64,.18); color: #fff; }

.header__call { display: flex; align-items: center; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 3px; margin: 5px 0; transition: .25s; }

/* ============== HERO ============== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
}
.hero__inner {
  max-width: 1180px; padding: 60px 0 110px;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 60px; align-items: center;
}
.hero__text { max-width: 640px; position: relative; z-index: 2; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 .accent { color: var(--sun); }
.hero__sub { font-size: 1.18rem; color: rgba(255,255,255,.92); max-width: 600px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; color: rgba(255,255,255,.92); font-weight: 500; }
.chip svg { color: var(--sun); flex-shrink: 0; }

.hero__logo-wrap {
  width: clamp(220px, 32vw, 380px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--cream-soft);
  overflow: hidden;
  filter: drop-shadow(0 18px 50px rgba(0,0,0,.45));
  justify-self: center;
  position: relative; z-index: 2;
}
.hero__logo-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }

/* Real-photo hero — landscape shot in place of the round logo medallion */
.hero__photo {
  width: 100%; max-width: 460px; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  justify-self: center; position: relative; z-index: 2;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Hero background video splash. Swap reel-hero.mp4 to drop in new footage.
   The .wavy-bg gradient underneath is the instant fallback (loading / no-video). */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(28,42,22,.88) 0%, rgba(28,42,22,.62) 40%, rgba(47,82,35,.32) 72%, rgba(47,82,35,.14) 100%),
    linear-gradient(to bottom, rgba(28,42,22,.34) 0%, rgba(28,42,22,0) 26%, rgba(28,42,22,0) 66%, rgba(28,42,22,.36) 100%);
}

/* ============== BOAT CARDS ============== */
.boats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.boat-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.boat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.boat-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.boat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.boat-card:hover .boat-card__img img { transform: scale(1.06); }
.boat-card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.boat-card__tag { display: inline-block; background: var(--teal); color: #fff; font-weight: 700; font-size: .72rem; padding: 5px 12px; border-radius: 999px; width: fit-content; letter-spacing: 0.5px; text-transform: uppercase; }
.boat-card__tag.is-new { background: var(--sun); }
.boat-card h3 { color: var(--ink); margin-bottom: 4px; }
.boat-card p { color: var(--gray); font-size: .96rem; flex: 1; }
.boat-card__cta { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--sun); font-weight: 700; }
.boat-card__cta:hover { color: var(--sun-bright); }

/* ============== LESSON / SERVICE TILES ============== */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 32px 28px; backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease;
}
.tile:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.tile__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--sun); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.tile h3 { color: #fff; margin-bottom: 8px; }
.tile p { color: rgba(255,255,255,.82); font-size: .98rem; }
.tile a { color: var(--sun-bright); font-weight: 700; margin-top: 14px; display: inline-block; }

/* ============== LAKES STRIP ============== */
.lakes-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lake-pill {
  background: var(--foam); color: var(--teal-deep);
  border-radius: var(--radius); padding: 22px 24px;
  font-weight: 700; display: flex; align-items: center; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--gray-100);
}
.lake-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--sun); }
.lake-pill svg { color: var(--teal); }
.lake-pill:hover svg { color: var(--sun); }

/* ============== TESTIMONIALS ============== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-md); border-top: 4px solid var(--sun);
}
.quote__stars { color: var(--sun); margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 2px; }
.quote__text { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 16px; line-height: 1.55; }
.quote__author { font-weight: 700; color: var(--ink); }
.quote__source { font-size: .82rem; color: var(--gray); }

/* ============== CONTACT FORM ============== */
.form-band {
  background: var(--teal-deep);
  color: #fff;
  position: relative; overflow: hidden;
}
.form-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(123,174,84,.35) 0%, transparent 55%),
    radial-gradient(50% 50% at 10% 90%, rgba(201,122,64,.20) 0%, transparent 55%);
  pointer-events: none;
}
.form-band .container { position: relative; z-index: 1; }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { color: #fff; margin-bottom: 18px; }
.contact-info p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.05rem; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.info-row__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sun); color: #fff; display: grid; place-items: center; flex-shrink: 0;
}
.info-row strong { display: block; color: #fff; font-size: 1.02rem; }
.info-row a, .info-row span { color: rgba(255,255,255,.82); }
.info-row a:hover { color: var(--sun-bright); }

.form {
  background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-lg);
}
.form h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.5rem; }
.form > p { color: var(--gray); font-size: .92rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--gray-100); border-radius: 12px;
  font: inherit; font-size: .96rem; background: #FAFCFD; transition: .15s;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(91,140,62,.18); }
.field textarea { resize: vertical; min-height: 100px; }
.form .btn { width: 100%; justify-content: center; font-size: 1.05rem; }
.consent { font-size: .72rem; color: var(--gray); margin-top: 14px; line-height: 1.55; }
.consent a { color: var(--sun); }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: .94rem; }
.form-status--success { background: #ECF8F0; color: #18651E; border: 1px solid #B6E0BA; }
.form-status--error   { background: #FDECEC; color: #8E1818; border: 1px solid #F3B8B8; }

/* MoonClerk embed card (Compostia signup) — right column of .contact-wrap */
.mc-embed {
  background: #fff; border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow-lg); min-height: 520px;
}
.mc-embed iframe { width: 100% !important; border: 0; display: block; }

/* ============== FOOTER ============== */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 36px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { font-size: .95rem; max-width: 340px; margin-bottom: 18px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff;
  transition: background .2s, transform .2s;
}
.footer__social a:hover { background: var(--sun); transform: translateY(-2px); }
.footer h4 { font-family: "Fraunces", Georgia, serif; color: #fff; font-size: 1.05rem; margin-bottom: 18px; letter-spacing: -.3px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: .92rem; }
.footer li a:hover { color: var(--sun-bright); }
.footer__bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 90px; }
  .hero__logo-wrap { order: -1; }
  .boats-grid, .tiles, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .lakes-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav, .header__call .btn { display: none; }
  .hamburger { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--navy); padding: 8px 0; box-shadow: var(--shadow-lg);
  }
  .nav.open > a, .nav.open .nav__dropdown-toggle { padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav.open .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; padding-left: 20px; border: none;
  }
}
@media (max-width: 600px) {
  .boats-grid, .tiles, .testimonials, .lakes-strip, .footer__grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ============== HOME FLEET CARD PRICE ============== */
.boat-card__price { color: var(--gray); font-size: .88rem; font-weight: 600; margin-top: 2px; }
.boat-card__price strong { font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; color: var(--teal-deep); margin-right: 3px; }
.boat-card__price span { color: var(--ink-soft); font-weight: 700; }

/* ============== BOAT DETAIL LAYOUT ============== */
.boat-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: start; }
.boat-media { display: grid; gap: 16px; }
.boat-media__main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; background: var(--gray-100);
}
.boat-media__main img { width: 100%; height: 100%; object-fit: cover; }
.boat-media__thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.boat-media__thumbs img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }

.boat-info .eyebrow { margin-bottom: 4px; }
.boat-info h1 { margin-bottom: 16px; }
.boat-info > p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.06rem; }

.spec-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--gray-100); border: 1px solid var(--gray-100);
  border-radius: 14px; overflow: hidden; margin: 0 0 8px;
}
.spec-grid div { background: #fff; padding: 15px 18px; }
.spec-grid dt { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 3px; }
.spec-grid dd { font-weight: 700; color: var(--ink); font-size: 1.04rem; }

/* ============== PRICING CARD ============== */
.price-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 30px 30px 32px;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--sun);
}
.price-card__label { font-family: "Caveat", cursive; font-size: 1.4rem; color: var(--sun); font-weight: 700; line-height: 1; }
.price-card__day { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 18px; }
.price-card__amt { font-family: "Fraunces", Georgia, serif; font-size: 2.7rem; color: var(--teal-deep); line-height: 1; }
.price-card__per { color: var(--gray); font-weight: 600; }
.price-list { list-style: none; margin: 0 0 18px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 4px; border-bottom: 1px solid var(--gray-100); font-size: 1rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li span { color: var(--ink-soft); }
.price-list li strong { font-size: 1.12rem; color: var(--ink); }
.price-list__featured {
  background: var(--cream-soft); border-radius: 12px;
  margin: 6px -10px 0; padding: 13px 14px !important; border-bottom: 0 !important;
}
.price-list__featured strong { color: var(--sun) !important; }
.price-note { font-size: .84rem; color: var(--gray); line-height: 1.55; margin-bottom: 22px; }
.price-deal { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--teal-deep); background: var(--cream-soft); border: 1px solid var(--cream); border-radius: 999px; padding: 6px 13px; margin: 0 0 14px; line-height: 1.3; }
.price-deal strong { color: var(--sun); }
.price-deal--center { margin: 16px auto 0; }
.price-card .btn { width: 100%; justify-content: center; }

/* ============== INCLUDED CHECKLIST ============== */
.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin: 8px 0 0; list-style: none; }
.includes li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: .98rem; }
.includes li svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.section--teal .includes li, .section--navy .includes li { color: rgba(255,255,255,.9); }
.section--teal .includes li svg, .section--navy .includes li svg { color: var(--cream); }

@media (max-width: 980px) {
  .boat-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .includes { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
}

/* ============== VIDEO BACKGROUND BAND ============== */
.video-band {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 72vh; display: flex; align-items: center;
  color: #fff; text-align: center;
  /* fallback: animated forest gradient shows until/if videos are present */
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(123,174,84,.95) 0%, rgba(123,174,84,0) 60%),
    radial-gradient(120% 80% at 90% 100%, rgba(47,82,35,1) 0%, rgba(47,82,35,0) 60%),
    radial-gradient(80% 80% at 70% 30%, rgba(201,122,64,.45) 0%, rgba(201,122,64,0) 55%),
    linear-gradient(135deg, #1C2A16 0%, #2F5223 50%, #5B8C3E 100%);
  background-size: 200% 200%, 200% 200%, 220% 220%, 200% 200%;
  background-position: 0% 0%, 100% 100%, 0% 100%, 0% 50%;
  animation: leafDrift 22s ease-in-out infinite;
}
.video-band__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  opacity: 0; transition: opacity 1.6s ease-in-out;
}
.video-band__video.is-active { opacity: 1; }
/* tint for legibility + gradient blend into the sections above (teal) and below (white) */
.video-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to bottom,
      var(--teal-deep) 0%, rgba(47,82,35,.30) 20%,
      rgba(28,42,22,.30) 50%,
      rgba(255,255,255,0) 74%, var(--foam) 100%),
    linear-gradient(rgba(28,42,22,.22), rgba(28,42,22,.42));
}
.video-band .container { position: relative; z-index: 1; }
.video-band h2 { color: #fff; }
.video-band p { color: rgba(255,255,255,.92); max-width: 600px; margin: 12px auto 26px; font-size: 1.12rem; }
@media (prefers-reduced-motion: reduce) {
  .video-band { animation: none; }
  .video-band__video { transition: opacity .4s ease; }
  /* Honour reduced-motion: drop the autoplaying hero video + freeze the forest gradient. */
  .wavy-bg { animation: none; }
  .hero__video { display: none; }
}

/* ============== RETURN-DATE FIELD (revealed on multi-day) ============== */
.field-hint { font-weight: 500; color: var(--gray); font-size: .85em; }
.field--return { animation: fieldReveal .3s ease; }
@keyframes fieldReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ============== NEWSLETTER ============== */
.newsletter { background: var(--cream-soft); }
.newsletter__card {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center;
  background: #fff; border: 1px solid var(--cream); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-md);
}
.newsletter__text h2 { margin: 12px 0 14px; }
.newsletter__text p { color: var(--gray); max-width: 460px; }
.newsletter__row { display: flex; gap: 12px; }
.newsletter__row input[type="email"] {
  flex: 1; min-width: 0; padding: 14px 16px; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid #cdd6da; border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.newsletter__row input[type="email"]:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(91,140,62,.18);
}
.newsletter__row .btn { white-space: nowrap; }
.newsletter__fine { font-size: .8rem; color: var(--gray); margin-top: 12px; }
@media (max-width: 760px) {
  .newsletter__card { grid-template-columns: 1fr; gap: 22px; }
  .newsletter__row { flex-direction: column; }
  .newsletter__row .btn { width: 100%; justify-content: center; }
}

/* ============== GRID UTILITIES ============== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ============== INNER-PAGE SUBHERO ============== */
.subhero {
  position: relative; color: var(--foam);
  padding: calc(var(--header-h) + 56px) 0 88px;
  overflow: hidden; isolation: isolate;
}
.subhero .container { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.subhero .eyebrow { color: var(--cream); }
.subhero h1 { margin: 12px 0 16px; }
.subhero p { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 660px; margin: 0 auto; }
.subhero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }

/* ============== PROSE (blog / legal / long copy) ============== */
.prose { max-width: 760px; margin: 0 auto; }
.prose > p:first-of-type { font-size: 1.16rem; color: var(--ink); }
.prose h2 { margin: 38px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.06rem; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--teal); font-weight: 600; text-decoration: underline; }
.prose blockquote {
  border-left: 4px solid var(--sun); padding: 8px 0 8px 22px;
  margin: 24px 0; font-style: italic; color: var(--ink-soft);
}
.post-meta { color: var(--gray); font-size: .9rem; margin-bottom: 6px; }

/* ============== BLOG INDEX CARDS ============== */
.post-card__img {
  aspect-ratio: 16/7; display: flex; align-items: flex-end; padding: 18px 20px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #fff; font-family: "Caveat", cursive; font-size: 1.5rem;
}
.post-card__img--alt { background: linear-gradient(135deg, var(--navy), var(--sun)); }

/* ============== DELIVERY QUOTE CALCULATOR ============== */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.calc {
  background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--teal);
}
.calc h3 { color: var(--ink); margin-bottom: 4px; font-size: 1.45rem; }
.calc__lead { color: var(--gray); font-size: .92rem; margin-bottom: 22px; }
.calc__controls { display: grid; gap: 14px; margin-bottom: 8px; }
.calc__controls .field { margin-bottom: 0; }
.calc__controls .form-row { grid-template-columns: 1fr 1fr; gap: 14px; }
.calc__output {
  margin-top: 20px; padding-top: 6px;
  border-top: 1px dashed var(--gray-100);
}
.calc__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 11px 2px; border-bottom: 1px solid var(--gray-100);
  font-size: 1rem; color: var(--ink-soft);
}
.calc__row span:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.calc__row--total {
  border-bottom: 0; margin-top: 6px; padding-top: 15px;
  border-top: 2px solid var(--teal);
}
.calc__row--total span { font-size: 1.2rem; }
.calc__row--total span:first-child { font-family: "Fraunces", Georgia, serif; color: var(--teal-deep); }
.calc__row--total span:last-child { color: var(--teal-deep); font-weight: 800; }
.calc__note { font-size: .82rem; color: var(--gray); line-height: 1.5; margin-top: 12px; }
.calc__note + .calc__note { margin-top: 6px; }
@media (max-width: 980px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 32px; }
}
