/* ============================================================
   STOCKSUNDS BÅTKLUBB — Design System
   Inspired by Pavona premium landing aesthetic
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --navy:       #0D1B2A;
  --navy-mid:   #1A3A5C;
  --navy-light: #1E4976;
  --gold:       #C5A05A;
  --gold-light: #D4B678;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --light-blue: #D3E1F0;
  --text:       #1A1A2E;
  --muted:      #6B7280;
  --border:     #E5EAF0;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   24px;
  --sp-6:   32px;
  --sp-7:   48px;
  --sp-8:   64px;
  --sp-9:   96px;
  --sp-10: 128px;

  /* Layout */
  --max-width:    1280px;
  --content-pad:  var(--sp-6);   /* 32px — scales down at breakpoints */
  --nav-height:   80px;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  /* Section spacing */
  --section-pad:        80px;
  --section-pad-mobile: 56px;

  /* Page / section backgrounds */
  --page-bg:         #f5f2ec;   /* warm off-white — all light pages */
  --section-bg-alt:  #eeeae2;   /* warm beige — alternating sections  */

  /* Gold system */
  --gold-hover: #b8902e;        /* button hover — consistent across all pages */

  /* Hero overlay gradient */
  --hero-overlay: linear-gradient(to bottom,
    rgba(13,27,42,0.65) 0%,
    rgba(13,27,42,0.50) 50%,
    rgba(13,27,42,0.75) 100%);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.06);
  --shadow-md:  0 4px 16px rgba(13,27,42,0.12), 0 2px 6px rgba(13,27,42,0.08);
  --shadow-lg:  0 12px 40px rgba(13,27,42,0.18), 0 4px 12px rgba(13,27,42,0.10);
  --shadow-xl:  0 24px 64px rgba(13,27,42,0.24);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --duration:   0.3s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; }

p { line-height: 1.75; }

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.section-pad    { padding: var(--section-pad) 0; }
.section-pad-sm { padding: calc(var(--section-pad) * 0.7) 0; }

/* ── Section background helpers ── */
.section-light { background: var(--page-bg); }
.section-alt   { background: var(--section-bg-alt); position: relative; }
.section-dark  { background: var(--navy); }

/* Section Label — the small gold eyebrow above headings */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

/* Section Title — canonical h2 style for content sections */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}

/* Section Sub — lead paragraph beneath a section title */
.section-sub {
  font-size: 1rem;
  color: rgba(13,27,42,0.5);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: var(--sp-8);
}

/* ============================================================
   FAQ COMPONENT — canonical, used on all pages
   ============================================================ */
.faq-list {
  max-width: 740px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(13,27,42,0.08);
  overflow: hidden;
  background: #fff;
}
.faq-item {
  border-bottom: 1.5px solid rgba(13,27,42,0.07);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s ease, background 0.2s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] {
  border-left-color: var(--gold);
  background: rgba(197,160,90,0.03);
}
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5) var(--sp-4) var(--sp-4);
  cursor: pointer; user-select: none;
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
  list-style: none; line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-item[open] .faq-q { color: var(--navy); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  color: var(--gold); opacity: 0.7;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); opacity: 1; }
.faq-a {
  padding: 0 var(--sp-5) var(--sp-5) var(--sp-4);
  font-size: 0.88rem; color: #5a6a7e;
  line-height: 1.75; font-weight: 400;
}

/* Shared Section Wrappers */
.section { padding: 80px 0; }
.section--alt { background: var(--section-bg-alt); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark .section-title { color: #fff; }
.section--dark .section-sub { color: rgba(255,255,255,0.6); }
.section--dark .section-label { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

/* Gold / primary */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Navy */
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* Outline (for dark backgrounds) */
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* Ghost (text link style) */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1.5px solid currentColor;
  border-radius: 0;
  font-size: 0.82rem;
}
.btn-ghost:hover { color: var(--gold); }

/* ── Cards — shared base ── */
.card-base {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(13,27,42,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card-base:hover {
  box-shadow: 0 12px 40px rgba(13,27,42,0.10);
  transform: translateY(-3px);
}

/* ── Scroll Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Feature cards: subtle drop-in from above */
.feature-item.reveal {
  transform: translateY(-10px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.feature-item.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.feature-item.reveal-delay-1 { transition-delay: 0.05s; }
.feature-item.reveal-delay-2 { transition-delay: 0.15s; }
.feature-item.reveal-delay-3 { transition-delay: 0.25s; }
.feature-item.reveal-delay-4 { transition-delay: 0.35s; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  padding: var(--sp-3) 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.4;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.toast__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.toast.toast--hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.toast__icon {
  flex-shrink: 0;
  color: var(--gold);
}
.toast__msg {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
}
.toast__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: 1px solid rgba(197,160,90,0.4);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.toast__close:hover {
  background: rgba(197,160,90,0.12);
  border-color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13,27,42,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  position: relative;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop Links — absolutely centred in the bar */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
  white-space: nowrap;
}

.nav__link:hover, .nav__item:hover > .nav__link {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__link--active {
  color: var(--gold) !important;
}

.nav__link svg { transition: transform var(--duration) var(--ease); }
.nav__item:hover > .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-2) 0;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--duration) var(--ease),
              visibility var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--duration), background var(--duration);
}
.nav__dropdown-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav__dropdown-link--active {
  color: var(--gold);
  background: rgba(197,160,90,0.08);
}

/* Right group: weather + cta + hamburger */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
}

/* Nav weather pill */
.nav__weather {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav__weather-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__weather-item svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.nav__weather-sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.2);
}

.nav__weather-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__weather-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* Hide weather at medium widths (links still visible) */
@media (max-width: 1100px) {
  .nav__weather { display: none; }
}

.nav__cta {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--duration), transform var(--duration);
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu — full-screen slide from right */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.nav__mobile.open {
  transform: translateX(0);
  visibility: visible;
}

/* Header row: logo + close */
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.nav__mobile-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav__mobile-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.nav__mobile-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* Nav body — scrollable */
.nav__mobile-body {
  flex: 1;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  flex-direction: column;
}

/* Standard links */
.nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-link--highlight {
  color: var(--gold);
}
.nav__mobile-link--highlight:hover { color: var(--gold-light); }

/* Accordion items */
.nav__mobile-accordion {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile-accordion summary {
  list-style: none;
}
.nav__mobile-accordion summary::-webkit-details-marker { display: none; }

.nav__mobile-chevron {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.25s var(--ease);
}
.nav__mobile-accordion[open] .nav__mobile-chevron {
  transform: rotate(180deg);
}

/* Sub-items */
.nav__mobile-subs {
  padding: 0 0 var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__mobile-sub {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav__mobile-sub:hover { color: rgba(255,255,255,0.9); }
.nav__mobile-sub--active { color: var(--gold) !important; }

/* Footer CTA */
.nav__mobile-footer {
  padding: var(--sp-5) var(--sp-6) var(--sp-7);
  flex-shrink: 0;
}
.nav__mobile-cta {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.nav__mobile-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Scale up slightly so parallax shift never reveals a gap at the edges */
  transform: scale(1.12);
  transform-origin: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(13,27,42,0.72) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(26,58,92,0.65) 100%
  );
  z-index: 1;
}

/* Animated water-light effect */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 60% 80%,
    rgba(197,160,90,0.07) 0%,
    transparent 70%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-6);
  max-width: 900px;
  /* Shift content down to clear navbar + toast */
  margin-top: calc(var(--nav-height) + var(--toast-height, 0px));
  transition: margin-top 0.35s cubic-bezier(0.4,0,0.2,1);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--sp-3);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Mobile hero text — hidden by default, shown on mobile */
.hero__eyebrow--mobile { display: none; }
.hero__title--mobile   { display: none; }

/* "Välkommen till" — big display heading */
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1.0;
  margin: var(--sp-3) 0 var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}

/* Hero logo image */
.hero__logo-img {
  width: clamp(240px, 36vw, 480px);
  display: block;
  margin: var(--sp-3) auto var(--sp-3);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Nav logo — animated to hero state on page load, driven by JS */
.nav__logo {
  will-change: transform;
  transform-origin: center;
}

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

.hero__subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.125rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: var(--sp-5) auto var(--sp-5);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

/* Lift about content above the wave ::before layer */
.about .container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-9);
  align-items: center;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}

.about__stat-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: var(--sp-7);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.about__stat:last-child { border-bottom: none; padding-bottom: 0; }

.about__stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.about__stat-number span {
  color: var(--gold);
  font-size: 0.7em;
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}

.about__stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__content { }

.about__heading {
  margin-bottom: var(--sp-5);
  color: var(--navy);
}

.about__text {
  color: var(--muted);
  margin-bottom: var(--sp-5);
  font-size: 1.05rem;
}

.about__quote {
  padding: var(--sp-5) var(--sp-5);
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

/* ============================================================
   NEWS
   ============================================================ */
.news {
  background: var(--off-white);
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-5);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}

.news-card__img a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card__img-inner,
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__img-inner,
.news-card:hover .news-card__img img { transform: scale(1.04); }

/* Gradient placeholder for cards without images */
.news-card__img-placeholder {
  width: 100%;
  height: 100%;
}

.news-card__body {
  padding: var(--sp-5);
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.news-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197,160,90,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.news-card__date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
  transition: color var(--duration);
}
.news-card:hover .news-card__title { color: var(--navy-light); }

.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar {
  background: var(--navy);
}

.calendar .container {
  position: relative;
  z-index: 1;
}

.calendar__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.calendar__header .section-label { justify-content: center; }
.calendar__heading { color: var(--white); }

.calendar__track {
  position: relative;
}

.calendar__scroll {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  overflow-x: auto;
  padding: 0 calc(50% - 145px) var(--sp-6);
  scrollbar-width: none;
}
.calendar__scroll::-webkit-scrollbar { display: none; }

.calendar__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration), border-color var(--duration), opacity var(--duration);
  opacity: 0.85;
}
.calendar__arrow:hover {
  background: var(--navy-light);
  border-color: rgba(197,160,90,0.4);
  opacity: 1;
}
.calendar__arrow--prev { left: var(--sp-3); }
.calendar__arrow--next { right: var(--sp-3); }
.calendar__arrow[disabled] {
  opacity: 0.2;
  pointer-events: none;
}

.event-card {
  flex: 0 0 290px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-5) calc(var(--sp-5) + var(--sp-4) + 48px);
  transition: background var(--duration), border-color var(--duration), transform var(--duration);
  display: flex;
  flex-direction: column;
  position: relative;
}
.event-card:hover {
  background: var(--navy-light);
  border-color: rgba(197,160,90,0.4);
  transform: translateY(-3px);
}

.event-card__date {
  margin-bottom: var(--sp-4);
}

.event-card__date-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.event-card__date-year {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.event-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
}

.event-card__cal-btn {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 48px;
  padding: 0 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), background 0.15s;
}
.event-card:hover .event-card__cal-btn {
  opacity: 1;
  pointer-events: auto;
}
.event-card__cal-btn:hover {
  background: var(--gold-light);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--white);
}

.features__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-9);
}

.features__header .section-label { justify-content: center; }

.features__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 390px 260px;
  gap: 14px;
}

/* Bento placement */
.features__grid .feature-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.features__grid .feature-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.features__grid .feature-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.features__grid .feature-item:nth-child(4) { grid-column: 3; grid-row: 2; }

.feature-item {
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.feature-item:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-item:hover::before { transform: scaleX(1); }

/* feature-item__icon, __title, __text defined in the Image cards block below */

/* ============================================================
   WEATHER
   ============================================================ */
.weather {
  background: var(--off-white);
}

.weather__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-7);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.weather__location {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.weather__inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Current weather */
.weather__current {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-7) var(--sp-8);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.weather__now-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.weather__temp-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}

.weather__temp {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.weather__temp-unit {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 8px;
}

.weather__description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: var(--sp-4);
}

.weather__details {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.weather__detail {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.weather__detail svg { color: var(--gold); }

.weather__icon-large {
  font-size: 5rem;
  line-height: 1;
}

/* Forecast */
.weather__forecast {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}

.forecast-day {
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--duration);
}
.forecast-day:last-child { border-right: none; }
.forecast-day:hover { background: var(--off-white); }

.forecast-day__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}

.forecast-day__icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-3);
}

.forecast-day__temps {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  font-weight: 600;
}

.forecast-day__max { color: var(--text); }
.forecast-day__min { color: var(--muted); }

/* Weather states */
.weather__loading, .weather__error {
  padding: var(--sp-9);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.weather__loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto var(--sp-4);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   FEATURED LINKS
   ============================================================ */
.featured-links {
  background: var(--white);
}

.featured-links__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-9);
}

.featured-links__header .section-label { justify-content: center; }

.featured-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.link-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  padding: 20px var(--sp-6);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.link-card__bg {
  position: absolute;
  inset: 0;
  background: #111e2e;
}

.link-card__gradient { display: none; }

.link-card__content {
  position: relative;
  z-index: 1;
}

.link-card__tag { display: none; }

/* Gold inverted card */
.link-card--gold .link-card__bg { background: var(--gold); }
.link-card--gold .link-card__title { color: var(--navy); }
.link-card--gold .link-card__text { color: rgba(13,27,42,0.72); }
.link-card--gold .link-card__arrow { color: var(--navy); }
.link-card--gold:hover { box-shadow: 0 24px 64px rgba(197,160,90,0.35); }

.link-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}

.link-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.link-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--duration);
}
.link-card:hover .link-card__arrow { gap: var(--sp-3); }

.link-card__deco { display: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--nav-height);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-9);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact__heading { color: var(--navy); margin-bottom: var(--sp-3); }
.contact__intro { color: var(--muted); font-size: 1rem; margin-bottom: var(--sp-5); }

.contact__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: rgba(197,160,90,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact__item-content {}
.contact__item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact__item-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.contact__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--duration), transform var(--duration);
}
.contact__social-link:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* Map */
.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-md);
  margin-top: var(--sp-6);
}

.contact__form-title {
  font-size: 1.3rem;
  margin-bottom: var(--sp-5);
  color: var(--navy);
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form__input,
.form__textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--duration), box-shadow var(--duration);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,90,0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  align-self: flex-start;
  padding: 14px 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration), transform var(--duration);
}
.form__submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
}

.footer__top {
  padding: var(--sp-9) 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--navy);
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
  max-width: 220px;
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--duration);
}
.footer__social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.footer__link {
  display: block;
  padding: 5px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--duration);
}
.footer__link:hover { color: var(--gold); }

.footer__bottom {
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-5);
}

.footer__bottom-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--duration);
}
.footer__bottom-link:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px 240px;
  }
  .features__grid .feature-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .features__grid .feature-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .features__grid .feature-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .features__grid .feature-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}

@media (max-width: 900px) {
  /* Hide desktop nav elements */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile nav bar: emblem | weather (centered) | hamburger */
  .nav__inner { position: relative; }

  /* Full logo on mobile — constrain height */
  .nav__logo-img {
    height: 28px;
    width: auto;
  }

  /* Weather: show & center absolutely */
  .nav__weather {
    display: flex !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.78rem;
  }

  .about__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .about__stats { flex-direction: row; flex-wrap: wrap; gap: var(--sp-5); }
  .about__stat { border-bottom: none; padding-bottom: 0; border-right: 1px solid var(--border); padding-right: var(--sp-5); }
  .about__stat:last-child { border-right: none; }
  .about__stat-line { display: none; }

  .news__grid { grid-template-columns: 1fr 1fr; }
  .news__header { flex-direction: column; align-items: flex-start; }

  .weather__current { grid-template-columns: 1fr; }
  .weather__icon-large { font-size: 3.5rem; }

  .featured-links__grid { grid-template-columns: 1fr 1fr; }
  .featured-links__grid .link-card:last-child { grid-column: 1 / -1; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --content-pad: var(--sp-5); } /* 24px */
}
@media (max-width: 480px) {
  :root { --content-pad: var(--sp-4); } /* 16px */
}

@media (max-width: 640px) {
  :root { --nav-height: 64px; }
  .section-pad { padding: var(--sp-8) 0; }

  .news__grid { grid-template-columns: 1fr; }
  .weather__forecast { grid-template-columns: repeat(5, 1fr); }
  .forecast-day { padding: var(--sp-4) var(--sp-2); }
  .forecast-day__icon { font-size: 1.4rem; }

  .featured-links__grid { grid-template-columns: 1fr; }
  .featured-links__grid .link-card:last-child { grid-column: auto; }

  .features__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .features__grid .feature-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { gap: var(--sp-4); }

  .form__row { grid-template-columns: 1fr; }

  /* Hero: swap animated logo for text on mobile */
  .hero__eyebrow--desktop { display: none; }
  .hero__title--desktop   { display: none; }
  .hero__logo-img         { display: none; }
  .hero__eyebrow--mobile  { display: inline-flex; }
  .hero__title--mobile {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 9vw, 3rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--sp-5);
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
  }

  /* Nav: show logomark on mobile (always visible, no animation) */
  .nav__logo-img {
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 36px !important;
    height: 36px;
    object-fit: cover;
    object-position: left center;
  }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .weather__details { gap: var(--sp-4); }
  .weather__current { padding: var(--sp-5); }
}

@media (max-width: 400px) {
  .weather__forecast { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .forecast-day__name { font-size: 0.62rem; }
  .forecast-day__temps { font-size: 0.75rem; flex-direction: column; gap: 1px; }
}

/* ============================================================
   TOPOGRAPHIC PATTERN OVERLAY
   ============================================================ */

/* Container sections need position:relative */
.about    { position: relative; overflow: hidden; }
.calendar { position: relative; }

.topo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Base topo — white lines for dark sections */
.topo-overlay::before {
  content: '';
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-image: url("assets/pattern.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  filter: brightness(0) invert(1);
}

/* Dark lines for light sections */
.topo-overlay--light::before {
  filter: brightness(0);
  opacity: 0.03;
}

/* Mirror per-section so pattern never looks the same twice */
.calendar .topo-overlay::before {
  transform: scaleX(-1);
}
.about .topo-overlay::before {
  transform: scaleY(-1);
}
.contact .topo-overlay::before {
  transform: scale(-1, -1);
}

/* Make sure section content sits above the topo overlay */
.about .container,
.calendar .container,
.contact .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   WEATHER WIDGET v2 — Compact horizontal layout
   ============================================================ */

/* Reset old inner wrapper — JS renders .ww-widget directly inside it */
.weather__inner {
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

/* Widget wrapper */
.ww-widget {
  background: linear-gradient(135deg, #0a1628 0%, #112244 50%, #0f2040 100%);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
}

.ww-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ww-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.ww-forecast-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color var(--duration);
}
.ww-forecast-link:hover { color: var(--gold); }
.ww-forecast-link svg { flex-shrink: 0; }

/* Cards row */
.ww-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

/* Current conditions card */
.ww-current {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 18px;
  min-width: 210px;
  max-width: 230px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ww-current__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ww-current__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.ww-current__temp {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ww-current__temp sup {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: super;
  color: rgba(255,255,255,0.6);
}

.ww-current__condition {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.ww-current__location {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.ww-current__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ww-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.ww-stat svg { color: var(--gold); flex-shrink: 0; }

/* Forecast cards */
.ww-forecasts {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.ww-forecasts::-webkit-scrollbar { display: none; }

.ww-fc {
  flex: 1;
  min-width: 68px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background var(--duration), border-color var(--duration);
}
.ww-fc:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(197,160,90,0.3);
}

.ww-fc__day {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.ww-fc__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.ww-fc__temps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ww-fc__high {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.ww-fc__low {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

/* Weather loading / error inside new widget */
.ww-loading, .ww-error {
  padding: 32px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  background: linear-gradient(135deg, #0a1628 0%, #112244 100%);
  border-radius: var(--radius-xl);
}

.ww-loading__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .ww-row { flex-direction: column; }
  .ww-current { max-width: 100%; }
  .ww-forecasts { overflow-x: auto; }
  .ww-fc { min-width: 80px; flex: 0 0 80px; }
}

/* ============================================================
   REMOVE DASH FROM SECTION LABELS
   ============================================================ */
.section-label::before { display: none; }

/* ============================================================
   WAVE LINES BACKGROUND UTILITY
   Usage:
     <section class="about wave-bg">          — normal
     <section class="features wave-bg wave-bg--mirror">  — flipped horizontally
     <section class="news wave-bg wave-bg--flip">        — flipped vertically
   The SVG stroke is black; on dark sections swap to white
   with wave-bg--light.
   ============================================================ */
.wave-bg {
  position: relative; /* ensures ::before stacks correctly */
}

.wave-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/wave-lines.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* Horizontal mirror — good for alternating sections */
.wave-bg--mirror::before {
  transform: scaleX(-1);
}

/* Vertical flip */
.wave-bg--flip::before {
  transform: scaleY(-1);
}

/* Both axes */
.wave-bg--rotate::before {
  transform: scale(-1);
}

/* On dark navy sections the black strokes vanish — invert to white */
.wave-bg--light::before {
  filter: invert(1);
}

/* Teal/light-blue tint — for dark sections, inverts + tints cyan */
.wave-bg--teal::before {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(155deg);
  opacity: 0.10;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--navy);
  padding: var(--sp-8) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: '';
  position: absolute; inset: 0;
  background: url("assets/pattern.svg") center / cover no-repeat;
  opacity: 0.05;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.stats-band .container { position: relative; z-index: 1; }

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}

.stats-band--3col .stats-band__grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-band__item {
  text-align: center;
  padding: var(--sp-5) var(--sp-6);
}

.stats-band__divider {
  display: none;
}

.stats-band__number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stats-band__number span {
  color: var(--gold);
  font-size: 0.65em;
  vertical-align: super;
  margin-top: 4px;
  display: inline-block;
}

.stats-band__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   ABOUT — Image layout
   ============================================================ */
.about__grid {
  grid-template-columns: 1fr 1fr !important;
  gap: var(--sp-9) !important;
  align-items: center;
}

.about__images {
  position: relative;
  height: 520px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 80px;
  bottom: 80px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-3deg);
  transform-origin: center center;
}

.about__img-main img,
.about__img-main canvas,
.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}

.about__img-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.about__img-placeholder--main { }
.about__img-placeholder--accent { }

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  transform: rotate(4deg);
  transform-origin: center center;
}

/* ============================================================
   VIDEO MID — Looping mid-page video
   ============================================================ */
.video-mid {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: height;
}

.video-mid__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-mid__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-mid__fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #0a1628 0%,
    #0d3260 30%,
    #1a4a7a 60%,
    #0d2a50 100%
  );
}

.video-mid__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.45) 0%,
    rgba(13,27,42,0.35) 50%,
    rgba(13,27,42,0.55) 100%
  );
}

.video-mid__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--sp-6);
  max-width: 720px;
}

.video-mid__content .section-label {
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.video-mid__heading {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  margin-bottom: var(--sp-5);
  line-height: 1.1;
}

.video-mid__text {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: var(--sp-7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.google-review-badge {
  display: flex;
  width: fit-content;
  margin: var(--sp-5) auto 0;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.google-review-badge:hover { opacity: 1; }

.google-review-badge__stars {
  display: flex;
  gap: 1px;
  font-size: 1rem;
  line-height: 1;
}
.gstar--on  { color: #FBBC04; }
.gstar--off { color: rgba(255,255,255,0.25); }

.google-review-badge__count {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.google-review-badge__info {
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* ============================================================
   FEATURES — Image cards
   ============================================================ */
.feature-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 0;
  border: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: var(--navy);
}

.feature-item::before { display: none; }

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Full-bleed background image */
.feature-item__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.feature-item:hover .feature-item__bg {
  transform: scale(1.07);
}

/* Dark gradient overlay — transparent top, dark bottom */
.feature-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 15, 30, 0.92) 0%,
    rgba(5, 15, 30, 0.65) 35%,
    rgba(5, 15, 30, 0.15) 60%,
    transparent 78%
  );
  z-index: 1;
}

/* Content sits above the overlay */
.feature-item__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  z-index: 2;
}

.feature-item__title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}

.feature-item--big .feature-item__title {
  font-size: 2.05rem; /* +8px */
}

.feature-item__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   MAP SECTION — Full width
   ============================================================ */
.map-section {
  position: relative;
  height: 480px;
}

.map-section__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-section__inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(15%) contrast(1.05);
}

.map-section__card {
  position: absolute;
  top: 50%;
  left: max(40px, calc((100% - var(--max-width)) / 2 + 40px));
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-7) var(--sp-7);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  max-width: 320px;
  z-index: 10;
}

.map-section__card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.map-section__card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.map-section__card-address {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.map-section__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: color var(--duration), border-color var(--duration);
}
.map-section__card-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-1); }
  .stats-band__divider { display: none; }
  .stats-band__item { border-bottom: 1px solid rgba(255,255,255,0.07); }

  .about__grid { grid-template-columns: 1fr !important; }
  .about__images { height: 360px; }
  .about__img-main { right: 60px; bottom: 60px; }
  .about__img-accent { width: 48%; height: 44%; }

  .video-mid { height: 50vh; }
}

@media (max-width: 640px) {
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .stats-band__number { font-size: 2rem; }

  .about__images { height: 280px; }
  .about__img-main { right: 40px; bottom: 40px; }
  .about__img-accent { width: 45%; height: 42%; }

  .map-section { height: 420px; }
  .map-section__card {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: 100%;
    padding: var(--sp-5);
  }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.nav__logo:hover .nav__logo-img { opacity: 0.8; }

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.9;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   CTA CARD — shared card-style section CTA (navy, pattern, horizontal)
   ============================================================ */
.cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-8);
  position: relative; overflow: hidden;
}
.cta-card::after {
  content: ''; position: absolute; inset: 0;
  background: url("assets/pattern.svg") center / cover no-repeat;
  opacity: 0.04; filter: brightness(0) invert(1);
  pointer-events: none;
}
.cta-card__text { position: relative; z-index: 1; }
.cta-card__eyebrow {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-3); display: block;
}
.cta-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900; font-style: italic;
  color: #fff; margin: 0 0 var(--sp-3);
}
.cta-card p {
  font-size: 0.92rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin: 0; max-width: 440px;
}
.cta-card__actions {
  display: flex; gap: var(--sp-4);
  position: relative; z-index: 1; flex-shrink: 0;
}
.cta-card__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.15s, color 0.15s, transform 0.15s;
  white-space: nowrap;
}
.cta-card__btn--primary { background: var(--gold); color: var(--navy); }
.cta-card__btn--primary:hover { background: #e0b96a; transform: translateY(-1px); }
.cta-card__btn--ghost {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-card__btn--ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
@media (max-width: 860px) {
  .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-card__actions { flex-wrap: wrap; }
}

/* ============================================================
   MAP — full bleed
   ============================================================ */
.map-full {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.map-full__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05) brightness(0.92);
  pointer-events: none; /* disabled so CTA is the action */
}

/* Subtle dark vignette so the CTA pops */
.map-full__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    transparent 30%,
    rgba(10, 20, 35, 0.45) 100%
  );
  pointer-events: none;
}

/* Centered CTA */
.map-full__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.map-full__cta:hover {
  background: var(--gold-light);
  transform: translate(-50%, -52%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

@media (max-width: 640px) {
  .map-full { height: 360px; }
}
