/* ═══════════════════════════════════════════════════════════
   Island Inn Complete — Theme Stylesheet v2.0
   Brand: Cormorant Garamond (display) + Nunito Sans (body)
   Palette: Coastal navy / warm sand / gold accent
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  --ink:        #0b1f31;
  --ink-soft:   #3a4d5e;
  --ink-muted:  #5a6b7a;
  --gold:       #8b6526;
  --gold-light: #c49a3d;
  --gold-dark:  #9a6f2c;
  --sand:       #ede7dc;
  --sand-light: #f7f4ee;
  --sand-warm:  #f4efe7;
  --paper:      #faf8f4;
  --white:      #ffffff;
  --line:       rgba(11, 31, 49, 0.12);
  --line-soft:  rgba(11, 31, 49, 0.07);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Nunito Sans", system-ui, -apple-system, sans-serif;

  --nav-height:    64px;
  --wrap-max:      1440px;
  --wrap-padding:  clamp(20px, 4vw, 40px);
  --section-space:  clamp(64px, 8vw, 112px);
  --radius:        2px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 3px rgba(11, 31, 49, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 49, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 31, 49, 0.12);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--sand-warm);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--gold); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

/* ── Accessibility ──────────────────────────────────────── */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Layout ─────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
}
.pad {
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}


/* ═══════════════════════════════════════════════════════════
   TOPNAV
   ═══════════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(7, 23, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background 0.3s var(--ease-smooth);
}

.topnav .bar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Mark */
.brand-mark {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 0.86;
  font-weight: 600;
  letter-spacing: 0.035em;
  flex-shrink: 0;
}
.brand-mark:hover { color: #fff; }
.brand-mark small {
  display: block;
  font-family: var(--font-body);
  font-size: 5.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.84;
  font-weight: 400;
}
.brand-mark img {
  max-height: 44px;
  width: auto;
}

/* Primary Nav */
.main-navigation .mainnav,
.mainnav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mainnav li { list-style: none; }
.mainnav a {
  color: #fff;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.mainnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s var(--ease-out);
}
.mainnav a:hover,
.mainnav .current-menu-item > a,
.mainnav .current_page_item > a {
  color: #fff;
}
.mainnav a:hover::after,
.mainnav .current-menu-item > a::after,
.mainnav .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Right Nav */
.rightnav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
  transition: color 0.2s;
}
.phone-link:hover { color: #fff; }
.icon-phone { flex-shrink: 0; }

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.book-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.hamburger-line {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════
   HERO (Front Page)
   ═══════════════════════════════════════════════════════════ */
.hero-shell { padding-top: var(--nav-height); background: var(--sand-warm); }

.hero {
  position: relative;
  min-height: min(92vh, 960px);
  background: #1a2e3f;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(7, 18, 28, 0.76) 0%,
      rgba(7, 18, 28, 0.42) 35%,
      rgba(7, 18, 28, 0.20) 60%,
      rgba(7, 18, 28, 0.22) 100%
    ),
    linear-gradient(180deg,
      rgba(255, 240, 214, 0.06) 0%,
      rgba(9, 20, 31, 0.02) 40%,
      rgba(9, 20, 31, 0.50) 100%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: min(92vh, 960px);
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: end;
  padding: 0 var(--wrap-padding) 140px;
  gap: 40px;
}
.hero-copy { max-width: 780px; }

.hero-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 152px);
  line-height: 0.80;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #fff;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #e6d2a5;
}

.hero-sub {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(11, 31, 49, 0.2);
  transition: background 0.25s, transform 0.2s;
}
.hero-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
.hero-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}
.hero-link:hover { color: var(--gold-light); }

.hero-aside {
  justify-self: end;
  align-self: end;
  max-width: 190px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
  color: #fff;
}
.hero-aside .mini {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}
.hero-aside p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-bottomline {
  position: absolute;
  left: var(--wrap-padding);
  right: var(--wrap-padding);
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-bottomline .left { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-bottomline .right { color: rgba(255, 255, 255, 0.78); }


/* ═══════════════════════════════════════════════════════════
   GOLD STRIP + BOOKING BAR
   ═══════════════════════════════════════════════════════════ */
.gold-strip {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  overflow: hidden;
}
.gold-strip .items {
  display: flex;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
  padding: 14px var(--wrap-padding);
}
.gold-strip b { opacity: 0.72; margin-left: 10px; }

.booking-wrap {
  background: var(--sand-warm);
  padding: 0 var(--wrap-padding);
  position: relative;
  z-index: 3;
  margin-top: -50px;
}
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 240px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
}
.book-cell {
  min-height: 84px;
  padding: 18px 24px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.book-cell label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.book-cell small {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.book-action {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.book-action:hover { background: #1a3348; color: #fff; }


/* ═══════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════════════════════ */
.room-stage,
.experience-band,
.lifestyle-stage,
.split-feature,
.discover-stage,
.journal-stage,
.cta-stage {
  padding: var(--section-space) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 0 var(--wrap-padding) 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #805e21;
  margin-bottom: 14px;
}

.section-head h2,
.exp-intro h2,
.split-copy h2,
.cta-panel h2,
.default-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.92;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.section-copy {
  padding: 0 var(--wrap-padding);
  max-width: 760px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.85;
}


/* ═══════════════════════════════════════════════════════════
   ROOM CARDS
   ═══════════════════════════════════════════════════════════ */
.room-stage {
  background: linear-gradient(180deg, #ece5da 0%, #f4f0e9 100%);
}
.swipe-note {
  padding: 0 var(--wrap-padding) 14px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.swipe-note::after {
  content: " — Scroll to explore";
  color: var(--gold);
  font-weight: 700;
}
.cards {
  display: flex;
  gap: 1px;
  padding: 0 var(--wrap-padding);
  background: var(--line);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--sand);
  padding-bottom: 12px;
}
.cards::-webkit-scrollbar {
  height: 6px;
}
.cards::-webkit-scrollbar-track {
  background: var(--sand);
}
.cards::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
.card {
  background: var(--sand-light);
  transition: transform 0.3s var(--ease-out);
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-width: 280px;
}
.card:hover { transform: translateY(-3px); }

.card .img-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.96) saturate(0.92);
  transition: transform 0.6s var(--ease-out);
}
.card:hover img { transform: scale(1.04); }

.card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7, 23, 39, 0) 20%,
    rgba(7, 23, 39, 0.22) 45%,
    rgba(7, 23, 39, 0.88) 100%
  );
  pointer-events: none;
}
.tag {
  position: absolute;
  left: 0; top: 0;
  background: var(--gold);
  color: #fff;
  padding: 7px 12px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.card-head {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
}
.card h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 0.94;
  color: #fff;
  letter-spacing: -0.03em;
}
.card-sub {
  margin-top: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.card-body {
  padding: 22px 20px;
}
.desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
  min-height: 78px;
}
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
  list-style: none;
  padding: 0;
}
.amenities span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.amenities span:not(:last-child)::after {
  content: " /";
  margin-left: 6px;
  color: var(--gold);
  opacity: 0.6;
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding: 0 0 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.outline-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.section-note {
  padding: 28px var(--wrap-padding) 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 900px;
}
.slider-nav {
  display: flex;
  gap: 8px;
}
.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.slider-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.slider-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.slider-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}



/* ═══════════════════════════════════════════════════════════
   EXPERIENCE BAND
   ═══════════════════════════════════════════════════════════ */
.experience-band { background: var(--sand-light); }

.exp-intro {
  padding: 0 var(--wrap-padding) 40px;
  max-width: 1040px;
}
.exp-intro p,
.split-copy p,
.cta-panel p,
.default-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-muted);
  max-width: 860px;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 var(--wrap-padding);
}
.exp-grid article {
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
}
.exp-grid strong,
.discover-body strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.exp-grid span {
  display: block;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-muted);
}


/* ═══════════════════════════════════════════════════════════
   LIFESTYLE GRID
   ═══════════════════════════════════════════════════════════ */
.lifestyle-stage { background: #efe9df; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 1px;
  padding: 0 var(--wrap-padding);
  background: var(--line);
}
.lifestyle-card,
.journal-feature,
.split-media,
.discover-card {
  overflow: hidden;
}
.lifestyle-card {
  position: relative;
  min-height: 420px;
  background: var(--ink);
}
.lifestyle-card.large { min-height: 600px; }

.lifestyle-card img,
.split-media img,
.discover-card img,
.journal-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.lifestyle-card:hover img,
.journal-feature:hover img { transform: scale(1.03); }

.lifestyle-card::after,
.journal-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 23, 39, 0.88), rgba(7, 23, 39, 0.10));
  pointer-events: none;
}
.overlay-copy,
.journal-copy {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
}
.mini-label {
  display: inline-block;
  color: #fff;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.overlay-copy h3,
.journal-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.96;
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 560px;
}


/* ═══════════════════════════════════════════════════════════
   SPLIT FEATURE
   ═══════════════════════════════════════════════════════════ */
.split-feature { background: #f5f0e7; }

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 0 var(--wrap-padding);
}
.split-copy ul {
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.9;
  font-size: 15px;
}
.split-copy li { margin-bottom: 6px; }
.split-media { min-height: 600px; }


/* ═══════════════════════════════════════════════════════════
   DISCOVER GRID
   ═══════════════════════════════════════════════════════════ */
.discover-stage { background: #f0ebe3; }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 var(--wrap-padding);
  background: var(--line);
}
.discover-card {
  background: var(--sand-light);
  transition: transform 0.3s var(--ease-out);
}
.discover-card:hover { transform: translateY(-2px); }
.discover-card img { height: 270px; }
.discover-card:hover img { transform: scale(1.03); }
.discover-body { padding: 22px 22px 28px; }
.discover-body p,
.journal-copy p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
}


/* ═══════════════════════════════════════════════════════════
   JOURNAL / BLUFF POST
   ═══════════════════════════════════════════════════════════ */
.journal-stage { background: #ece7dd; }

.journal-grid-home {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 0 var(--wrap-padding);
}
.journal-feature {
  position: relative;
  min-height: 530px;
}
.journal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.journal-list article {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition: padding-left 0.3s var(--ease-out);
}
.journal-list article:hover { padding-left: 8px; }
.journal-list span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #805e21;
  margin-bottom: 10px;
}
.journal-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.02;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
}


/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta-stage { background: var(--ink); }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 0 var(--wrap-padding);
}
.cta-panel h2 { color: #fff; }
.cta-panel .eyebrow { color: var(--gold-light); }
.cta-panel p { color: rgba(255, 255, 255, 0.88); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.ghost-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.ghost-link:hover { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #071727;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { color: #fff; }
.footer-brand:hover { color: #fff; }
.footer-address {
  font-style: normal;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-contact-links a { transition: color 0.2s; }
.footer-contact-links a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.85); }
.footer-bottom a { color: rgba(255, 255, 255, 0.85); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGES
   ═══════════════════════════════════════════════════════════ */
.default-page,
.page-shell { padding-top: var(--nav-height); }
.inner-hero { padding: 120px 0 32px; }
.default-content,
.contact-grid,
.posts-grid { padding-bottom: 60px; }

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  background: var(--ink);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.88);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 28, 0.12), rgba(7, 18, 28, 0.56));
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
  color: #fff;
}
.page-hero-content h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.92;
  margin: 0 0 14px;
}
.hero-sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 560px;
}
.hero-sub.dark { color: var(--ink-muted); }

/* Feature Columns */
.feature-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px var(--wrap-padding) 20px;
}
.feature-columns.compact {
  grid-template-columns: repeat(2, 1fr);
  padding: 24px 0 0;
}
.feature-columns article,
.contact-card,
.post-card-body {
  background: var(--sand-light);
  border: 1px solid var(--line-soft);
  padding: 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.feature-columns article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-columns article h3,
.contact-card h3 {
  font-size: clamp(24px, 2.5vw, 30px);
  margin: 0 0 12px;
}
.feature-columns article p,
.contact-card p,
.contact-card a {
  color: var(--ink-muted);
  line-height: 1.8;
  font-size: 14px;
}

/* CTA Inline */
.cta-inline {
  padding-top: 12px;
  padding-bottom: 40px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

/* Blog Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}
.post-card {
  background: var(--sand-light);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.post-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.post-card-body h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 8px 0 10px;
}
.post-card-body h2 a:hover { color: var(--gold); }
.post-card-body p {
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 14px;
}


/* ═══════════════════════════════════════════════════════════
   LIGHTHOUSE KEEPER PAGE
   ═══════════════════════════════════════════════════════════ */
.lk-page {
  background: linear-gradient(180deg, #0b1f31, #122230);
  color: #fff;
  min-height: 100vh;
  padding-top: var(--nav-height);
}
.lk-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 80px;
}
.lk-page .default-title { color: #fff; }
.lk-page .hero-sub.dark { color: rgba(255, 255, 255, 0.78); }
.lk-page .feature-columns article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.lk-page .feature-columns article p,
.lk-page .feature-columns article h3 { color: #fff; }

.lk-chat-shell .chat-window {
  position: relative;
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: none;
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
  height: 700px;
  background: #0e1e2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ═══════════════════════════════════════════════════════════
   CHAT WIDGET
   ═══════════════════════════════════════════════════════════ */
.chat-window {
  position: fixed;
  right: 20px;
  bottom: 82px;
  width: 380px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 120px);
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 200;
  overflow: hidden;
}
.chat-window[aria-hidden="false"] { display: flex; }
.chat-window.is-open { display: flex; }

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: #fff;
  flex-shrink: 0;
}
.chat-head-left { display: flex; align-items: center; gap: 12px; }
.chat-head-left h4 { margin: 0; font-family: var(--font-body); font-size: 14px; font-weight: 700; }
.chat-head-left p { margin: 2px 0 0; font-size: 11px; color: rgba(255, 255, 255, 0.78); }
.chat-avatar,
.chat-msg-av {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  flex-shrink: 0;
}
.chat-close-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.chat-close-btn:hover { color: #fff; }

.chat-messages {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
  background: var(--sand-light);
  scroll-behavior: smooth;
}
.chat-messages.static { max-height: none; }
.chat-msg { display: flex; gap: 10px; margin-bottom: 14px; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 12px 16px;
  line-height: 1.6;
  max-width: 85%;
  color: var(--ink-soft);
  font-size: 14px;
}
.chat-msg.user .chat-bubble {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
  flex-shrink: 0;
}
.qr-btn {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}
.qr-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.chat-input-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: transparent;
}
.chat-input::placeholder { color: var(--ink-muted); }
.chat-input:focus { outline: none; }
.chat-send-btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chat-send-btn:hover { background: #1a3348; }

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #143249, #0a1f31);
  color: #f0d19a;
  border: 1px solid rgba(240, 209, 154, 0.16);
  z-index: 190;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.floating-cta::after {
  content: "";
  position: absolute;
  top: -5px; right: 14px;
  width: 9px; height: 9px;
  background: #f0d19a;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(240, 209, 154, 0.55);
  animation: beacon 2.5s ease-in-out infinite;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 31, 49, 0.3);
}

@keyframes beacon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1300px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding-bottom: 120px;
  }
  .hero-aside {
    justify-self: start;
    max-width: 420px;
  }
  .hero-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }
  .card {
    flex: 0 0 280px;
  }
  .lifestyle-grid,
  .discover-grid,
  .exp-grid,
  .feature-columns,
  .posts-grid,
  .lk-hero {
    grid-template-columns: repeat(2, 1fr);
  }
  .journal-grid-home,
  .split-grid,
  .cta-panel,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .menu-toggle { display: flex; }

  .main-navigation {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(7, 23, 39, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
  }
  .main-navigation.is-open {
    opacity: 1;
    visibility: visible;
  }
  .main-navigation .mainnav,
  .main-navigation.is-open .mainnav {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .main-navigation .mainnav a,
  .mainnav a {
    font-size: 14px;
    letter-spacing: 0.3em;
  }

  .phone-number { display: none; }
  .icon-phone { display: none; }

  .hero { min-height: 720px; }
  .hero-grid {
    min-height: 720px;
    padding-bottom: 120px;
  }
  .booking { grid-template-columns: 1fr 1fr; }
  .book-action { grid-column: 1 / -1; min-height: 62px; }

  .discover-grid,
  .exp-grid,
  .lifestyle-grid,
  .feature-columns,
  .posts-grid,
  .lk-hero {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head h2,
  .exp-intro h2,
  .split-copy h2,
  .cta-panel h2,
  .default-title {
    font-size: clamp(34px, 5vw, 48px);
  }

  .lifestyle-card.large { min-height: 430px; }
  .split-media { min-height: 420px; }
  .journal-feature { min-height: 380px; }
  .footer-links { flex-wrap: wrap; }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --wrap-padding: 20px;
  }

  .hero {
    min-height: min(85vh, 640px);
  }
  .hero-grid {
    min-height: min(85vh, 640px);
    padding-bottom: 110px;
  }
  .hero-title {
    font-size: clamp(44px, 13vw, 64px);
    line-height: 0.84;
  }
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-aside { max-width: 100%; }
  .hero-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }

  .discover-grid,
  .exp-grid,
  .lifestyle-grid,
  .feature-columns,
  .posts-grid,
  .lk-hero {
    grid-template-columns: 1fr;
  }

  .booking { grid-template-columns: 1fr; }
  .book-cell {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .section-head h2,
  .exp-intro h2,
  .split-copy h2,
  .cta-panel h2,
  .default-title {
    font-size: clamp(30px, 8vw, 38px);
  }

  .overlay-copy h3,
  .journal-copy h3,
  .journal-list strong {
    font-size: clamp(22px, 6vw, 28px);
  }

  .page-hero { min-height: 380px; }
  .page-hero-content { padding-bottom: 36px; }

  .floating-cta {
    width: 46px; height: 46px;
    right: 12px; bottom: 14px;
  }

  .chat-window {
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
  }

  .footer-grid { gap: 28px; }
}



/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cards { scroll-behavior: auto; }
}

@media (forced-colors: active) {
  .book-btn, .hero-primary, .book-action { border: 2px solid ButtonText; }
  .tag { border: 1px solid ButtonText; }
  .outline-btn { border-bottom: 2px solid LinkText; }
  .topnav { border-bottom: 1px solid ButtonText; }
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
  outline: none;
}

.mainnav a, .outline-btn, .ghost-link, .qr-btn, .footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.book-cell input, .book-cell select {
  min-height: 44px;
  font-size: 16px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.book-cell input:focus, .book-cell select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
  .topnav,
  .floating-cta,
  .chat-window,
  .gold-strip,
  .booking-wrap,
  .cta-stage { display: none !important; }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }
  .hero { min-height: 0; }
  .hero-media { display: none; }
  .hero-grid { min-height: 0; padding: 40px 20px; }
  .hero-title { color: #000; font-size: 36pt; }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
  .site-footer { background: #fff; color: #000; border-top: 1px solid #ccc; }
}


/* ═══════════════════════════════════════════════════════════
   THINGS TO DO — ENHANCED SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Discover Tabs Navigation ──────────────────────────── */
.discover-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

.discover-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.discover-tab:hover {
  color: var(--ink);
}

.discover-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* ── Discover Panels ───────────────────────────────────── */
.discover-panels {
  position: relative;
}

.discover-panel {
  display: none;
  animation: panelFadeIn 0.35s var(--ease-out);
}

.discover-panel.is-active {
  display: block;
}

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

.discover-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.discover-panel-gallery {
  position: relative;
  overflow: hidden;
}

.discover-panel-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.discover-panel-gallery:hover img {
  transform: scale(1.03);
}

.discover-panel-content h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 0.94;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.discover-panel-content > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-muted);
  margin: 16px 0 28px;
  max-width: 620px;
}

/* Distance Badge */
.distance-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 6px 14px;
  background: rgba(139, 101, 38, 0.08);
  margin-bottom: 4px;
}

/* Detail Cards within Panels */
.discover-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.discover-detail-card {
  background: var(--sand-light);
  border: 1px solid var(--line-soft);
  padding: 20px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.discover-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.discover-detail-card strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.discover-detail-card span {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ── Seasonal Highlights ───────────────────────────────── */
.seasonal-highlights {
  padding: var(--section-space) 0;
  background: var(--sand-light);
}

.seasonal-highlights .default-title {
  margin-bottom: 36px;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.seasonal-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.seasonal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.seasonal-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.seasonal-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.seasonal-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Staff Picks ───────────────────────────────────────── */
.staff-picks {
  padding: var(--section-space) 0;
  background: #efe9df;
}

.staff-picks .default-title {
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 0 36px;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pick-card {
  background: var(--sand-light);
  border: 1px solid var(--line-soft);
  padding: 28px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pick-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.pick-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.pick-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin: 0 0 16px;
}

.pick-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

/* ── Useful Resources / Links ──────────────────────────── */
.useful-links {
  padding: var(--section-space) 0;
  background: var(--sand-warm);
}

.useful-links .default-title {
  margin-bottom: 32px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resource-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 24px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.resource-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  color: inherit;
}

.resource-link strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.resource-link span {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Things to Do CTA ──────────────────────────────────── */
.todo-cta {
  padding: var(--section-space) 0;
  background: var(--ink);
}

.todo-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.todo-cta-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.92;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.04em;
}

.todo-cta-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0;
}

.todo-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ── Responsive — Things To Do Enhancements ────────────── */
@media (max-width: 1300px) {
  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .discover-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .discover-panel-grid {
    grid-template-columns: 1fr;
  }

  .discover-panel-gallery img {
    height: 300px;
  }

  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .todo-cta-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .discover-tab {
    padding: 12px 16px;
    font-size: 10px;
  }

  .discover-detail-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-grid,
  .picks-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }
}
