/* ============================================
   281 CC — DESIGN SYSTEM
   Rugged · Outdoorsy · Modern
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --red:        #D42F24;
  --red-dark:   #A82218;
  --black:      #0A0A0A;
  --charcoal:   #1A1A1A;
  --dark:       #111111;
  --mid:        #2A2A2A;
  --steel:      #3D3D3D;
  --silver:     #ABABAB;
  --light:      #F2F2F2;
  --white:      #FFFFFF;
  --dirt:       #8B6914;
  --mud:        #5C4A1E;
  --green-bright: #22C55E;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --radius:     4px;
  --radius-lg:  8px;
  --max-w:      1200px;
  --nav-h:      96px; /* 48px topbar + 48px navbar */
  --transition: 0.2s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.section { padding: 32px 0; }
.section--dark { background: var(--dark); }
.section--mid  { background: var(--charcoal); }

.tag {
  display: block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 560px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn--sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn--nav { padding: 5px 14px;  font-size: 0.82rem; }

/* ============================================
   NAVIGATION — Two-row layout
   ============================================ */
:root {
  --topbar-h: 44px;
  --navbar-h: 48px;
  --nav-h: calc(var(--topbar-h) + var(--navbar-h));
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ---- ROW 1: logo · socials · [spacer] · actions · hamburger ---- */
.nav__topbar {
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__topbar .container { height: 100%; }
.nav__topbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
  position: relative;
}
.nav__logo { flex-shrink: 0; line-height: 0; }
.nav__logo img {
  height: calc(var(--topbar-h) - 2px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Socials: fixed size, right next to logo, no shrinking */
.nav__topbar-socials {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 12px;
  flex-shrink: 0;
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
}
.nav__topbar-socials a {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav__topbar-socials a svg { width: 28px; height: 28px; }
.nav__topbar-socials a:hover { transform: scale(1.1); }

/* Spacer pushes actions to the right */
.nav__topbar-spacer { flex: 1; margin-left: auto; }

/* Right-side action buttons */
.nav__topbar-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- ROW 2: nav links with hover dropdowns (desktop only) ---- */
.nav__bar {
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: var(--navbar-h);
  display: flex;
  align-items: center;
}
.nav__bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav__links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Plain nav link */
.nav__links > a {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav__links > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links > a:hover,
.nav__links > a.active { color: var(--white); }
.nav__links > a:hover::after,
.nav__links > a.active::after { transform: scaleX(1); }

/* ---- Dropdown nav item ---- */
.nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav__item > a {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav__item > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__item:hover > a,
.nav__item > a.active { color: var(--white); }
.nav__item:hover > a::after,
.nav__item > a.active::after { transform: scaleX(1); }

.nav__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 8px;
  min-width: 180px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 9px 18px;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__dropdown-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ---- MOBILE NAV ---- */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--topbar-h); /* only below row 1 — row 2 is hidden on mobile */
  left: 0; right: 0;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px 24px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  max-height: calc(100vh - var(--topbar-h));
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }

/* Plain mobile links */
.nav__mobile-link {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color var(--transition);
}
.nav__mobile-link:hover,
.nav__mobile-link.active { color: var(--red); }

/* Accordion item */
.nav__accordion { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav__accordion-header {
  display: flex;
  align-items: center;
}
.nav__accordion-label {
  flex: 1;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 11px 0;
  display: block;
  text-decoration: none;
}
.nav__accordion-label.active { color: var(--red); }
.nav__accordion-trigger {
  background: none;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
}
.nav__accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav__accordion-panel {
  padding: 4px 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__accordion-panel[hidden] { display: none; }
.nav__accordion-sub {
  font-family: var(--font-cond);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 7px 0;
  display: block;
  transition: color var(--transition);
}
.nav__accordion-sub:hover { color: var(--red); }

.nav__mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: stretch;
  padding: 0 4px;
}
.nav__mobile-phone {
  flex: 1;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.82rem;
}
.nav__mobile-book {
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.82rem;
}

/* ============================================
   PHONE PILL — green box used everywhere
   ============================================ */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #16a34a;
  color: #fff !important;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition);
  text-decoration: none !important;
  flex-shrink: 0;
}
.phone-pill:hover { background: #15803d; }
.phone-pill svg { flex-shrink: 0; }
.phone-pill--hero {
  font-size: 1rem;
  padding: 12px 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============================================
   DIRECTIONS PILL — blue (distinct from red Book Now)
   ============================================ */
.directions-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a73e8;
  color: #fff !important;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity var(--transition);
  text-decoration: none !important;
  flex-shrink: 0;
}
.directions-pill:hover { opacity: 0.85; }

/* ============================================
   FAREHARBOR SHELL
   ============================================ */
.fh-shell {
  width: 100%;
  margin-top: 8px;
}
#fareharbor-embedded-items {
  width: 100%;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  padding: 36px 0 32px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.booking-header-text {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}
.booking-header-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 20px 0 16px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  display: block;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, calc(1.5rem + 5.5vw), 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.hero__title span { color: var(--red); }
.hero__subtitle {
  font-family: var(--font-cond);
  font-size: clamp(1rem, calc(0.65rem + 1.1vw), 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.5;
}

/* Hero address link (below h1) */
.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 18px;
  border-radius: 24px;
  margin-bottom: 20px;
  transition: background var(--transition);
  max-width: 100%;
  white-space: normal;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.hero__address:hover { background: rgba(0,0,0,0.82); }
.hero__address svg { flex-shrink: 0; color: var(--red); }
/* Street (contains the icon) and city each wrap as a unit */
.hero__addr-street { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.hero__addr-city   { white-space: nowrap; }
@media (max-width: 520px) {
  .hero__address { flex-wrap: wrap; justify-content: center; gap: 4px 8px; }
  .hero__addr-street { flex-basis: 100%; justify-content: center; }
  .hero__addr-city   { flex-basis: 100%; text-align: center; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.hero__stars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1200;
  border: 1px solid rgba(250,204,21,0.5);
  padding: 10px 18px;
  border-radius: 24px;
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FACC15;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.hero__stars span { color: rgba(255,255,255,0.95); font-size: 1rem; }
.hero__stars--link:hover { background: #251a00; border-color: rgba(250,204,21,0.8); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #0d2b1a;
  border: 1px solid rgba(34,197,94,0.5);
  padding: 9px 24px;
  border-radius: 24px;
  white-space: nowrap;
}
.hero__badge-open { white-space: nowrap; font-size: 0.9rem; }
.hero__badge-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  line-height: 1.3;
  border-left: 1px solid rgba(34,197,94,0.4);
  padding-left: 10px;
}
.hero__badge-hours span { white-space: nowrap; }
.hero__credibility { row-gap: 10px; }

/* Stats bar */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  width: 100%;
  max-width: 680px;
}
.hero__stat {
  flex: 1;
  min-width: 120px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero__stat-num span {
  font-size: 1.1rem;
  color: var(--red);
  display: inline;
}
.hero__stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* btn--lg */
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }



/* ============================================
   ACTIVITIES GRID
   ============================================ */
.activities { padding: 32px 0; background: var(--dark); }
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.activity-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
}
.activity-card--wide {
  grid-column: span 2;
  aspect-ratio: 8/3;
}
.activity-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  filter: saturate(0.8);
}
.activity-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-card:hover .activity-card__bg,
.activity-card:hover .activity-card__placeholder { transform: scale(1.06); }
.activity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  transition: opacity var(--transition);
}
.activity-card:hover .activity-card__overlay { opacity: 0.7; }
.activity-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}
.activity-card__icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.activity-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.activity-card__sub {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.activity-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ============================================
   PRICING BAND
   ============================================ */
.pricing-band {
  background: var(--red);
  padding: 32px 0;
}
.pricing-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pricing-band__label {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.pricing-band__passes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pass {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pass__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.pass__name {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.pass__time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.pricing-band__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
}
.pricing-band__cta { flex-shrink: 0; }
.pricing-band__note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
  line-height: 1.5;
}

/* ============================================
   RENTALS SECTION
   ============================================ */
.rentals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.rental-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.rental-card:hover {
  border-color: rgba(212,47,36,0.4);
  transform: translateY(-2px);
}
.rental-card__img {
  aspect-ratio: 16/9;
  background: var(--mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rental-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.rental-card__img-placeholder {
  font-size: 3rem;
  opacity: 0.3;
}
.rental-card__body { padding: 20px; text-align: center; }
.rental-card__category {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.rental-card__title {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.rental-card__meta {
  font-size: 0.85rem;
  color: var(--silver);
  margin-bottom: 12px;
}
.rental-card__models {
  font-size: 0.8rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}
.rental-card__models strong { color: rgba(255,255,255,0.75); font-weight: 500; }

/* ============================================
   VENUES / COVERED AREAS
   ============================================ */
.venues__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.venue-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition);
}
.venue-card:hover { border-color: rgba(212,47,36,0.3); }
.venue-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.venue-card__name {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.venue-card__desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 16px;
}
.venue-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.feature-tag {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ============================================
   CAMPING SECTION
   ============================================ */
.camping__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.camping__info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 32px;
}
.camping__info h3:first-child { margin-top: 0; }
.camping__info p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 12px;
}
.camping__info ul {
  margin-bottom: 24px;
}
.camping__info ul li {
  font-size: 0.9rem;
  color: var(--silver);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.camping__info ul li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-weight: 700;
}
.camping__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
}
.camping__photo {
  background: var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.5;
}
.camping__photo:first-child {
  grid-column: 1 / -1;
  grid-row: 1;
}
.camping__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   ABOUT / TIMELINE
   ============================================ */
.timeline {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.timeline__block {}
.timeline__year {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}
.timeline__list li {
  font-size: 0.9rem;
  color: var(--silver);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.timeline__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.timeline__upcoming {
  margin-top: 16px;
}
.timeline__upcoming-year {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
  margin-bottom: 8px;
}

/* ============================================
   SERVICE AREA  (replaces spam table)
   ============================================ */
/* ============================================
   FAQ
   ============================================ */
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq__item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__item[open] > .faq__question::after { content: '−'; }
.faq__answer {
  padding: 0 4px 18px;
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.75;
}

.service-area { padding: 32px 0; background: var(--dark); }
.service-area__body {
  margin-top: 32px;
}
.service-area__intro {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.service-area__zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.zone {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 20px;
}
.zone__dist {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.zone__label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}
.zone__cities {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ============================================
   SOCIAL / REVIEW STRIP
   ============================================ */
.social-strip {
  padding: 32px 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.social-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.social-strip__label {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--silver);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-links a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
.social-links a svg { width: 18px; height: 18px; }

/* ============================================
   CONTACT / LOCATION
   ============================================ */
.contact-section { padding: 32px 0; background: var(--dark); }
.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(212,47,36,0.12);
  border: 1px solid rgba(212,47,36,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-info__label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.5;
}
.contact-info__value a { color: var(--white); }
.contact-info__value a:hover { color: var(--red); }
.addr-line1 { white-space: nowrap; }
.addr-line2 { white-space: nowrap; }
@media (max-width: 560px) {
  .addr-line1 { display: block; }
  .addr-line2 { display: block; }
}

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--silver);
}
.hours-table td:last-child { text-align: right; color: var(--light); }

.map-embed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--mid);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* Chatbot slot */
#chatbot-widget {
  /* drop your chatbot embed script here */
}


/* Map directions button — compact single-line */
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  transition: opacity var(--transition);
  white-space: normal;
  flex-wrap: wrap;
}
.map-directions-btn:hover { opacity: 0.88; }
.map-directions-btn svg { flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
/* Desktop: all footer columns left-aligned */
.footer__brand,
.footer__links,
.footer__heading { text-align: center; }
.footer__links { align-items: center; }
.footer__brand-row { justify-content: center; }
.footer__brand img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
.footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.footer__socials a {
  display: flex;
  align-items: center;
  transition: transform var(--transition);
  line-height: 0;
}
.footer__socials a:hover { transform: scale(1.1); }
.footer__address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.4;
  transition: color var(--transition);
  justify-content: center;
}
.footer__address-link:hover { color: var(--white); }
.footer__address-link svg { flex-shrink: 0; margin-top: 2px; }
.footer__email-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--silver);
  transition: color var(--transition);
  justify-content: center;
}
.footer__email-link:hover { color: var(--white); }
/* Hours column + all footer grid children centered */
.footer__grid > div { text-align: center; }


.footer__tagline {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--silver);
  line-height: 1.6;
  max-width: 240px;
  text-align: center;
  margin: 0 auto 12px;
}
.footer__heading {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links--wrap {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }

/* SA Offroad Network — dot-separated row */
.footer__sa-network {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 8px;
}
.footer__sa-network a {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}
.footer__sa-network a:hover { color: var(--white); }
.footer__sa-network a:not(:last-child)::after {
  content: ' ·';
  color: rgba(255,255,255,0.25);
  margin: 0 7px 0 2px;
}

/* Footer bottom 2-col layout */
.footer__bottom-left,
.footer__bottom-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.footer__bottom-right { text-align: right; }

/* ============================================
   PLACEHOLDER STYLES (remove when images added)
   ============================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--mid) 0%, var(--steel) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.img-placeholder svg { opacity: 0.2; }

/* ============================================
   SUBPAGE HERO (smaller than homepage)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 64px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,47,36,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__tag {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-hero__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.6;
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ---- 860px: service area drops from 4-col to 2-col ---- */
@media (max-width: 860px) {
  .service-area__zones { grid-template-columns: repeat(2, 1fr); }
}

/* Nav mobile CTAs bar (hidden on desktop) */
.nav__bar-mobile-ctas { display: none; }

/* ---- 900px: row 2 becomes Phone+Book bar; hamburger opens full menu ---- */
@media (max-width: 900px) {
  .nav__bar { display: flex; align-items: center; justify-content: center; }
  .nav__bar .container { display: flex; justify-content: center; width: 100%; }
  .nav__links { display: none; }
  .nav__bar-mobile-ctas { display: flex; gap: 8px; align-items: center; padding: 6px 0; }
  .nav__toggle { display: flex; }
  /* Hide phone+book from topbar — they live on row 2 now */
  .nav__topbar-actions .phone-pill,
  .nav__topbar-actions .btn--nav { display: none; }
  /* Keep directions pill in topbar — icon only on mobile */
  .directions-pill { padding: 6px 8px; }
  .directions-pill__text { display: none; }
  .nav__bar-mobile-ctas .phone-pill { font-size: 0.8rem; }
  .nav__bar-mobile-ctas .btn--nav { font-size: 0.8rem; }
}

@media (max-width: 900px) {
  .activities__grid {
    grid-template-columns: 1fr 1fr;
  }
  .activity-card--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
  }

  .camping__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .pricing-band__divider { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 36px 0; }
  .activities__grid { grid-template-columns: 1fr; }
  .activity-card--wide { aspect-ratio: 4/3; }

  /* Stats: 2×2 grid instead of flex-wrap to avoid orphaned borders */
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
  }
  .hero__stat {
    border-right: none;
    padding-right: 0;
    min-width: 0;
  }

  /* Footer: single column, keep centered */
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__links { align-items: center; }
  .social-links { justify-content: center; }

  /* Badges: drop divider border when they wrap */
  .hero__badge {
    border-left: none;
    padding-left: 24px;
  }

  .pricing-band__passes { gap: 16px; }
}

/* ============================================
   FAREHARBOR BOOKING MODAL
   ============================================ */
#fh-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}
#fh-modal.open {
  display: block;
}

/* Backdrop */
#fh-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fhFadeIn 0.25s ease forwards;
}

/* Slide-up drawer */
#fh-drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 92vh;
  max-height: 92vh;
  background: var(--charcoal);
  border-radius: 16px 16px 0 0;
  border-top: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}
#fh-drawer.open {
  transform: translateY(0);
}

/* On wider screens: centered dialog instead of bottom sheet */
@media (min-width: 900px) {
  #fh-drawer {
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -40%) scale(0.96);
    width: 90%;
    max-width: 860px;
    height: 88vh;
    max-height: 88vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--red);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.35s ease;
  }
  #fh-drawer.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Header bar */
#fh-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark);
  flex-shrink: 0;
}
#fh-drawer-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
#fh-drawer-title img {
  height: 32px;
  width: auto;
}
#fh-drawer-label {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* Close button */
#fh-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--silver);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
#fh-close:hover {
  background: rgba(212, 47, 36, 0.2);
  color: var(--white);
  border-color: var(--red);
}

/* Loading state */
#fh-iframe-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
#fh-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--charcoal);
  color: var(--silver);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
#fh-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: fhSpin 0.8s linear infinite;
}

/* Iframe */
#fh-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #fff; /* FH booking UI is light-themed */
}

/* Keyframes */
@keyframes fhFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fhSpin {
  to { transform: rotate(360deg); }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  #fh-drawer {
    height: 96vh;
    border-radius: 12px 12px 0 0;
  }
  #fh-drawer-label {
    font-size: 0.85rem;
  }
  /* Very small screens — tighter side padding, socials inline next to logo */
  .nav__topbar .container { padding: 0 10px; }
  .nav__topbar-inner { gap: 6px; }
  .nav__topbar-socials { position: static; transform: none; left: auto; gap: 8px; margin-left: 12px; }
  .nav__topbar-socials a svg { width: 22px; height: 22px; }
  .directions-pill { padding: 5px 7px; }
  .nav__toggle { width: 32px; height: 32px; margin-left: 0; }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer__brand-row { justify-content: center; }
  .footer__tagline { max-width: 100%; }
  .footer__contact-block {
    align-items: center;
    gap: 14px;
  }
  .footer__address-link,
  .footer__email-link { justify-content: center; }
  .footer__contact-block .phone-pill { justify-content: center; width: 100%; max-width: 260px; }
  .footer__socials { justify-content: center; }
  .footer__links { align-items: center; }
  .footer__heading { text-align: center; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer__legal { justify-content: center; }
}

