/* ==========================================================================
   Groovy Otter — Brand variables
   Colors/fonts pulled from the brand board. Swap values here to rebrand
   the whole site without touching any HTML.
   ========================================================================== */
:root {
  --navy: #0D1B1E;
  --teal-dark: #0E686F;
  --teal-light: #7FB3A6;
  --orange: #F07A21;
  --gold: #F2C14E;
  --cream: #F7E7C6;

  /* "Rad Retro" (the board's named headline font) isn't a real licensable
     family — using Alfa Slab One as a free stand-in with the same bold,
     rounded-retro feel. Swap this one line if you get the real font. */
  --font-headline: 'Alfa Slab One', serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Montserrat', sans-serif;

  --radius: 14px;
  --shadow: 0 8px 24px rgba(13, 27, 30, 0.15);
  --container-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: inherit; }

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

h1, h2, h3 {
  font-family: var(--font-headline);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.script {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 1.4rem;
}

.eyebrow {
  font-family: var(--font-script);
  color: var(--teal-dark);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

p { margin: 0 0 16px; }

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

.section-alt {
  background: #fff;
}

.text-center { text-align: center; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(240, 122, 33, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--navy);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--orange);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
  content: '';
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 5px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 3px solid var(--navy);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(13,27,30,0.1);
  }
}

/* ==========================================================================
   Hero — recreates the sunset-stripe badge motif as a CSS gradient
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(
    180deg,
    var(--navy) 0px, var(--navy) 2px,
    #B5451E 2px, #B5451E 60px,
    var(--orange) 60px, var(--orange) 120px,
    var(--gold) 120px, var(--gold) 180px,
    var(--teal-light) 180px, var(--teal-light) 240px,
    var(--teal-dark) 240px, var(--teal-dark) 320px
  );
  color: var(--cream);
  padding: 100px 0 90px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,27,30,0) 30%, rgba(13,27,30,0.55) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
}

.hero h1 { color: var(--cream); text-shadow: 0 3px 12px rgba(0,0,0,0.35); }
.hero .script { color: var(--gold); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badge {
  border-radius: 50%;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
  justify-self: center;
}

/* ==========================================================================
   Feature grid / cards
   ========================================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(13, 27, 30, 0.06);
}

.card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--orange);
}

.card h3 { margin-bottom: 8px; }

.card p:last-child { margin-bottom: 0; }

/* Fleet color swatches (used on fleet.html) */
.swatch-card {
  text-align: center;
}

.swatch {
  width: 100%;
  height: 90px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 3px solid var(--navy);
}

/* Pricing cards */
.price-card {
  text-align: center;
  border-top: 6px solid var(--orange);
}

.price-card .price {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  color: var(--teal-dark);
  margin: 8px 0;
}

.price-card .price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}

.tbc-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--teal-dark);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 { color: var(--cream); }
.cta-band .btn-primary { box-shadow: 0 6px 16px rgba(0,0,0,0.25); }

/* ==========================================================================
   Coming soon (trips page)
   ========================================================================== */
.coming-soon-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
  padding: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(13,27,30,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 18px;
  background: var(--cream);
  color: var(--navy);
}

textarea { min-height: 120px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.contact-details .card { display: flex; gap: 16px; align-items: flex-start; }
.contact-details .icon { flex-shrink: 0; margin-bottom: 0; }

.map-embed {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 56px 0 24px;
}

.footer-banner {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.footer-banner .script { display: block; font-size: 1.8rem; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h3 { color: var(--gold); font-size: 1rem; }

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { text-decoration: none; opacity: 0.85; }
.footer-grid a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(247, 231, 198, 0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.pill {
  background: rgba(247, 231, 198, 0.1);
  border: 1px solid rgba(247, 231, 198, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill .icon { width: 18px; height: 18px; margin: 0; color: var(--orange); }
