/* ========================================================================
   SYRACUSE GRAND — Brand stylesheet
   Edit colors / type / spacing here. All pages use these tokens.
   ======================================================================== */

:root {
  /* Brand colors (from logo) */
  --navy:        #1B3A6B;
  --navy-deep:   #122749;
  --navy-soft:   #24477F;
  --gold:        #D4A03B;
  --gold-bright: #E6B453;
  --gold-deep:   #B0832A;

  /* Neutrals */
  --ink:         #0F172A;
  --ink-soft:    #334155;
  --muted:       #64748B;
  --line:        rgba(15, 23, 42, 0.10);
  --line-strong: rgba(15, 23, 42, 0.18);
  --cream:       #FAF7F1;
  --bg:          #FFFFFF;
  --bg-soft:     #F7F5F0;

  /* Type */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px; --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-32: 128px;

  /* Layout */
  --container: 1240px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 12px 32px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 30px 60px rgba(15,23,42,.18);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------- Reset ----------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ----------------- Typography ----------------- */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; margin: 0; color: var(--navy-deep); }
h1 { font-size: clamp(40px, 7vw, 88px); }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); line-height: 1.6; max-width: 62ch; }

/* ----------------- Layout ----------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-deep); color: #E7ECF5; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: 1fr; gap: var(--s-12); }
.grid-3 { grid-template-columns: 1fr; gap: var(--s-6); }
.grid-4 { grid-template-columns: 1fr; gap: var(--s-6); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s-16); align-items: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 6px 18px rgba(212,160,59,.35); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,160,59,.45); }
.btn--ghost { background: transparent; color: var(--navy-deep); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: #fff; color: var(--navy-deep); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------------- Header ----------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.header--transparent { background: transparent; }
.header--solid { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 12px 0; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header__logo { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; flex-shrink: 0; white-space: nowrap; }
.header--solid .header__logo { color: var(--navy-deep); }
.header__logo-mark { width: 32px; height: 45px; flex-shrink: 0; position: relative; display: inline-block; }
.header__logo-mark .logo-mark { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .25s ease; }
/* Default (transparent over hero): show white mark */
.header--transparent .header__logo-mark .logo-mark--gold { opacity: 0; }
.header--transparent .header__logo-mark .logo-mark--white { opacity: 1; }
/* Scrolled solid header: show gold mark */
.header--solid .header__logo-mark .logo-mark--gold { opacity: 1; }
.header--solid .header__logo-mark .logo-mark--white { opacity: 0; }
.header__logo-text { font-family: var(--serif); font-size: 20px; letter-spacing: 0.05em; }
.header__nav { display: none; gap: 22px; flex-wrap: nowrap; }
@media (min-width: 1080px) { .header__nav { display: flex; gap: 24px; } }
@media (min-width: 1200px) { .header__nav { gap: 28px; } }
.header__nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,.85); position: relative; padding: 6px 0;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.header--solid .header__nav a { color: var(--ink-soft); }
.header__nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold);
  transition: width .3s var(--ease);
}
.header__nav a:hover { color: #fff; }
.header--solid .header__nav a:hover { color: var(--navy-deep); }
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__nav a.active { color: var(--gold); }
.header__cta { display: none; }
@media (min-width: 720px) { .header__cta { display: inline-flex; } }
.header__menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: #fff;
}
.header--solid .header__menu-btn { color: var(--navy-deep); }
@media (min-width: 1080px) { .header__menu-btn { display: none; } }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy-deep); z-index: 200;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 80px 32px 32px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; color: #fff; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 28px; color: #fff; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a.active { color: var(--gold); }
.mobile-nav .btn { margin-top: 24px; align-self: flex-start; }

/* ----------------- Hero ----------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,39,73,.55) 0%, rgba(18,39,73,.5) 40%, rgba(18,39,73,.85) 100%);
}
.hero__content { padding: 120px 0 80px; max-width: 760px; }
.hero h1 { color: #fff; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,.85); margin: 24px 0 36px; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,.6); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--gold); animation: scrollDot 2.4s var(--ease) infinite;
}
@keyframes scrollDot { 0% { top: -40px; } 100% { top: 100%; } }

/* Page hero (interior pages) */
.page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; isolation: isolate;
  padding: 120px 0 64px;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,39,73,.5), rgba(18,39,73,.85)); }
.page-hero h1 { color: #fff; font-weight: 400; max-width: 18ch; }
.page-hero .eyebrow { color: var(--gold-bright); }

/* ----------------- Booking strip (sticky on every page) ----------------- */
.book-strip {
  background: var(--navy-deep); color: #fff;
  padding: 18px 0;
}
.book-strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.book-strip__text { font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em; }
.book-strip__text small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 4px; font-weight: 600; }

/* ----------------- Cards ----------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 24px 26px 28px; }
.card__title { font-family: var(--serif); font-size: 22px; color: var(--navy-deep); margin-bottom: 8px; }
.card__meta { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.card__desc { color: var(--ink-soft); font-size: 15px; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--navy); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.card__link .arrow { transition: transform .25s var(--ease); }
.card__link:hover .arrow { transform: translateX(4px); }

/* Amenity tile (icon + text) */
.amenity {
  background: #fff; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.amenity:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.amenity__icon { width: 48px; height: 48px; color: var(--gold-deep); margin-bottom: 20px; }
.amenity__title { font-family: var(--serif); font-size: 20px; color: var(--navy-deep); margin-bottom: 8px; }
.amenity__desc { color: var(--ink-soft); font-size: 14.5px; }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 36px 24px; background: var(--navy-deep); text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); color: var(--gold-bright); line-height: 1; }
.stat__lab { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 10px; }

/* Image + Text split */
.split { display: grid; gap: var(--s-12); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr 1fr; gap: var(--s-20); } .split--reverse { grid-template-columns: 1fr 1.1fr; } .split--reverse > :first-child { order: 2; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Suite gallery: bed shot + sitting area shot stacked */
.split__media:has(.suite-gallery) { aspect-ratio: auto; border-radius: 0; overflow: visible; }
.suite-gallery { display: grid; gap: var(--s-3); }
.suite-gallery > img,
.suite-gallery figure img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.suite-gallery figure { margin: 0; position: relative; }
.suite-gallery figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(11, 25, 49, 0.78); color: #fff; padding: 6px 12px; border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; backdrop-filter: blur(4px); }

/* ----------------- Footer ----------------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 80px 0 40px; }
.footer__grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__logo { display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 18px; text-decoration: none; }
.footer__logo-mark { display: inline-block; width: 36px; height: 50px; flex-shrink: 0; }
.footer__logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer__logo-text { font-family: var(--serif); font-size: 22px; letter-spacing: 0.05em; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; transition: color .2s var(--ease); }
.footer a:hover { color: var(--gold-bright); }
.footer__bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}

/* ----------------- Mobile booking bar (always visible on phones) ----------------- */
.mobile-book {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--navy-deep); padding: 12px 16px;
  display: flex; gap: 10px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
}
.mobile-book .btn { flex: 1; justify-content: center; padding: 14px; font-size: 13px; }
@media (min-width: 720px) { .mobile-book { display: none; } }

/* Add bottom padding on mobile to avoid being covered by mobile-book */
@media (max-width: 719px) {
  body { padding-bottom: 72px; }
}

/* ----------------- Reveal animation ----------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* Lists / spec rows */
.spec-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.spec-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.spec-list li::before { content: ''; width: 6px; height: 6px; margin-top: 9px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* Gallery grid */
.gallery { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; } }
.gallery a { display: block; overflow: hidden; border-radius: 12px; }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }
@media (max-width: 719px) {
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* Quote / testimonial */
.quote { max-width: 800px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.4; color: var(--navy-deep); font-style: italic; }
.quote cite { display: block; margin-top: 24px; font-style: normal; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* CTA banner */
.cta-banner { padding: clamp(80px, 10vw, 140px) 0; text-align: center; background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 400px at 50% 0%, rgba(212,160,59,.18), transparent 60%); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; max-width: 18ch; margin: 0 auto 20px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 56ch; margin: 0 auto 36px; }

/* Contact info row */
.contact-row { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .contact-row { grid-template-columns: repeat(3, 1fr); } }
.contact-row .label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 8px; }
.contact-row .value { font-family: var(--serif); font-size: 22px; color: var(--navy-deep); line-height: 1.4; }
.contact-row a.value:hover { color: var(--gold-deep); }

/* Map embed */
.map { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--radius-lg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   COOKIE CONSENT BANNER + MODAL
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1d2540;
  color: #fff;
  z-index: 9000;
  box-shadow: 0 -8px 28px rgba(0,0,0,.25);
  border-top: 3px solid #b08940;
  transform: translateY(100%);
  transition: transform .24s ease;
}
.cookie-banner--in { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 70px 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner__close {
  position: absolute;
  top: 10px; right: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
}
.cookie-banner__close:hover { color: #fff; background: rgba(255,255,255,.08); }
.cookie-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: #d9b46a;
}
.cookie-banner__text {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,.88);
  max-width: 70ch;
}
.cookie-banner__text a { color: #d9b46a; text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.cookie-btn--gold {
  background: #b08940;
  color: #fff;
  border-color: #b08940;
}
.cookie-btn--gold:hover { background: #c19848; border-color: #c19848; }
.cookie-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.cookie-btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

@media (max-width: 760px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    padding: 22px 56px 20px 22px;
  }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 auto; text-align: center; }
}

/* ---- Modal ---- */
.cookie-modal__overlay {
  position: fixed; inset: 0;
  background: rgba(15,30,55,.72);
  z-index: 9100;
  opacity: 0;
  transition: opacity .24s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.cookie-modal__overlay--in { opacity: 1; }
.cookie-modal {
  background: #fff;
  color: #1d2540;
  max-width: 640px;
  width: 100%;
  border-radius: 14px;
  padding: 36px 36px 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #6a718a;
  cursor: pointer;
  padding: 4px 10px;
}
.cookie-modal__close:hover { color: #1d2540; }
.cookie-modal__head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1d2540;
  margin: 0 0 12px;
}
.cookie-modal__head p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a5168;
  margin: 0 0 24px;
}
.cookie-modal__categories {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}
.cookie-cat {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  background: #faf8f3;
  cursor: default;
}
.cookie-cat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cookie-cat__name {
  font-weight: 600;
  font-size: 14px;
  color: #1d2540;
}
.cookie-cat__toggle--locked {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b08940;
  background: rgba(176,137,64,.12);
  padding: 5px 10px;
  border-radius: 4px;
}
.cookie-cat input[type="checkbox"] {
  appearance: none;
  width: 42px;
  height: 24px;
  background: #d2d6df;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.cookie-cat input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.cookie-cat input[type="checkbox"]:checked {
  background: #b08940;
}
.cookie-cat input[type="checkbox"]:checked::before {
  transform: translateX(18px);
}
.cookie-cat p {
  font-size: 13px;
  line-height: 1.55;
  color: #4a5168;
  margin: 4px 0 0;
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal__actions .cookie-btn { color: #1d2540; }
.cookie-modal__actions .cookie-btn--ghost { color: #1d2540; border-color: rgba(0,0,0,.18); background: transparent; }
.cookie-modal__actions .cookie-btn--ghost:hover { background: rgba(0,0,0,.04); }
.cookie-modal__actions .cookie-btn--gold { color: #fff; }

@media (max-width: 560px) {
  .cookie-modal { padding: 28px 22px 24px; }
  .cookie-modal__actions { flex-direction: column; }
  .cookie-modal__actions .cookie-btn { width: 100%; text-align: center; }
}

/* ============================================================
   FOOTER LEGAL ROW
   ============================================================ */
.footer__legal-row {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 13px;
}
.footer__legal-row a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .15s;
}
.footer__legal-row a:hover { color: #d9b46a; }
.footer__legal-sep { color: rgba(255,255,255,.32); }

/* ============================================================
   LEGAL PAGES (privacy, terms, cookies, accessibility)
   ============================================================ */
.legal-hero {
  background: #1d2540;
  color: #fff;
  padding: 130px 0 60px;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 12px 0 8px;
}
.legal-hero p {
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.legal-body {
  padding: 60px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1d2540;
  margin: 36px 0 12px;
  scroll-margin-top: 100px;
}
.legal-body h3 {
  font-size: 1.05rem;
  color: #1d2540;
  margin: 22px 0 8px;
}
.legal-body p, .legal-body li {
  color: #353c54;
  font-size: 15px;
  line-height: 1.75;
}
.legal-body ul, .legal-body ol {
  padding-left: 22px;
  margin: 8px 0 14px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a {
  color: #b08940;
  text-decoration: underline;
}
.legal-body a:hover { color: #1d2540; }
.legal-body .lede {
  font-size: 16px;
  color: #4a5168;
  line-height: 1.7;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.legal-body strong { color: #1d2540; }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 14px;
}
.legal-body th, .legal-body td {
  border: 1px solid rgba(0,0,0,.1);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-body th {
  background: #faf8f3;
  font-weight: 600;
  color: #1d2540;
}

/* ============================================================
   SYRACUSE GUIDE PAGE
   ============================================================ */
.guide-hero {
  position: relative;
  min-height: 460px;
  padding: 160px 0 80px;
  background:
    linear-gradient(180deg, rgba(15,22,46,.55) 0%, rgba(15,22,46,.78) 100%),
    url('./assets/images/downtown-syracuse.jpg') center/cover no-repeat;
  color: #fff;
  isolation: isolate;
}
.guide-hero .container { max-width: 1200px; }
.guide-hero .eyebrow {
  color: #d9b46a;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.guide-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 14px 0 18px;
  max-width: 16ch;
}
.guide-hero__lede {
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- Sticky TOC ---------- */
.guide-toc {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: #faf8f3;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 14px 0;
}
.guide-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.guide-toc__label {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 600;
  color: #6b7080;
  text-transform: uppercase;
  margin-right: 8px;
}
.guide-toc a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(29,37,64,.18);
  border-radius: 999px;
  font-size: 13px;
  color: #1d2540;
  text-decoration: none;
  background: #fff;
  transition: all .15s;
}
.guide-toc a:hover {
  background: #1d2540;
  color: #fff;
  border-color: #1d2540;
}

/* ---------- Sections ---------- */
.guide-section {
  padding: 80px 0;
  scroll-margin-top: 130px;
}
.guide-section--alt { background: #faf8f3; }
.guide-section__head {
  max-width: 720px;
  margin-bottom: 40px;
}
.guide-section__head .eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 600;
  color: #b08940;
  text-transform: uppercase;
}
.guide-section__head h2 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #1d2540;
  margin: 10px 0 14px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.guide-section__head > p {
  color: #4a5168;
  font-size: 16px;
  line-height: 1.7;
  max-width: 65ch;
}

/* ---------- Card grid ---------- */
.guide-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.guide-grid--2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.guide-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.guide-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  padding: 24px 24px 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.guide-section--alt .guide-card { background: #fff; }
.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(15,22,46,.08);
  border-color: rgba(176,137,64,.4);
}
.guide-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #b08940;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.guide-card h3 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: #1d2540;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.guide-card p {
  color: #4a5168;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.guide-card p + p { margin-top: 8px; }

/* ---------- Two-col list (breweries) ---------- */
.guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 6px 28px;
}
.guide-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #353c54;
  font-size: 15px;
  line-height: 1.55;
}
.guide-list li strong {
  color: #1d2540;
  font-weight: 600;
}

/* ---------- Business / employers section ---------- */
.guide-section h3 + p,
.guide-section h4 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-weight: 500;
}
.guide-section h3 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: 1.5rem;
  color: #1d2540;
  margin: 36px 0 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.guide-section h3:first-child { margin-top: 0; }
.guide-section h4 {
  font-size: 1.05rem;
  color: #1d2540;
  margin: 0 0 6px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
}
.guide-section .business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 36px;
}
.guide-section .business-grid > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.guide-section .business-grid p {
  color: #4a5168;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Deep dives ---------- */
.guide-deep__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.guide-deep__card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  padding: 26px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.guide-deep__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(15,22,46,.08);
  border-color: rgba(176,137,64,.4);
}
.guide-deep__card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #b08940;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.guide-deep__card h3 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #1d2540;
  margin: 0 0 10px;
  line-height: 1.3;
}
.guide-deep__card p {
  color: #4a5168;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.guide-deep__card .arrow {
  font-size: 13px;
  font-weight: 600;
  color: #b08940;
  letter-spacing: .04em;
}

/* ---------- CTA ---------- */
.guide-cta {
  background: #1d2540;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.guide-cta h2 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #fff;
  margin: 0 0 14px;
  font-weight: 500;
}
.guide-cta p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  max-width: 56ch;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* ---------- Source attribution ---------- */
.guide-source {
  padding: 30px 0 60px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #faf8f3;
}
.guide-source p {
  color: #6b7080;
  font-size: 13px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.guide-source a { color: #b08940; }

@media (max-width: 720px) {
  .guide-hero { padding: 120px 0 60px; min-height: 380px; }
  .guide-toc { top: 60px; padding: 10px 0; }
  .guide-toc__list { gap: 6px 8px; }
  .guide-toc a { padding: 6px 12px; font-size: 12px; }
  .guide-section { padding: 56px 0; }
  .guide-section__head { margin-bottom: 28px; }
}

/* ============================================================
   CONTACT PAGE — split layout (info column + form panel)
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- Left column ---------- */
.contact-info__title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  color: #1d2540;
  margin: 0 0 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.contact-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-method__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(176,137,64,.12);
  color: #b08940;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-method__body { min-width: 0; }
.contact-method__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b7080;
  margin: 0 0 4px;
}
.contact-method__value {
  display: block;
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: #1d2540;
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
a.contact-method__value:hover { color: #b08940; }
.contact-method__value--plain { font-family: var(--serif, 'Playfair Display', serif); }
.contact-method__sublink {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #1d2540;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(176,137,64,.4);
  padding-bottom: 1px;
}
.contact-method__sublink:hover {
  color: #b08940;
  border-bottom-color: #b08940;
}
.contact-method__note {
  margin: 4px 0 0;
  color: #6b7080;
  font-size: 13.5px;
  line-height: 1.4;
}

/* ---------- Right column: form panel ---------- */
.contact-panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 18px 50px rgba(15,22,46,.06);
}
.contact-panel__title {
  font-size: 1.6rem;
  color: #1d2540;
  margin: 0 0 28px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ---------- Form fields ---------- */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-form__row .field { margin-bottom: 0; }
.contact-form .field__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b7080;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #1d2540;
  background: #faf8f3;
  border: 1px solid rgba(29,37,64,.12);
  border-radius: 6px;
  transition: border-color .15s, box-shadow .15s, background .15s;
  min-height: 46px;
  box-sizing: border-box;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
  font-family: inherit;
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(29,37,64,.22);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #b08940;
  box-shadow: 0 0 0 3px rgba(176,137,64,.15);
}
.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: rgba(176,40,40,.5);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231d2540' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ---------- Honeypot (off-screen) ---------- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Footer row: microcopy + send button ---------- */
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.contact-form__microcopy {
  margin: 0;
  color: #6b7080;
  font-size: 13.5px;
}
.contact-send {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b08940;
  color: #fff;
  border: 0;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  min-height: 44px;
}
.contact-send:hover {
  background: #98762f;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(176,137,64,.28);
}
.contact-send:active { transform: translateY(0); }
.contact-send:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(176,137,64,.35);
}
.contact-send.is-busy {
  opacity: .7;
  cursor: progress;
}
.contact-send[disabled] { cursor: not-allowed; }
.contact-send .send-icon {
  transition: transform .2s;
}
.contact-send:hover .send-icon { transform: translate(2px, -2px); }

/* ---------- Status + legal ---------- */
.contact-form__status {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  min-height: 0;
}
.contact-form__status:empty { margin-top: 0; }
.contact-form__status--success {
  color: #205d3b;
  background: #ecf6ee;
  border: 1px solid #c6e3cd;
  border-radius: 6px;
  padding: 14px 16px;
}
.contact-form__status--error {
  color: #8a2222;
  background: #fbecec;
  border: 1px solid #f0c8c8;
  border-radius: 6px;
  padding: 14px 16px;
}
.contact-form__legal {
  margin: 18px 0 0;
  color: #9aa0b3;
  font-size: 12px;
  line-height: 1.5;
}
.contact-form__legal a {
  color: #b08940;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 920px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-panel { padding: 28px; }
}
@media (max-width: 560px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .contact-send { justify-content: center; }
  .contact-method__value { font-size: 1.25rem; }
}

/* ============================================================
   BEST-RATE BANNER (site-wide direct-book strip)
   Injected by includes.js as the very first body element.
   Sits ABOVE the fixed header. We push the header down by
   banner height via the body class .has-rate-banner.
   ============================================================ */
.rate-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  z-index: 110;
  border-bottom: 1px solid rgba(212, 160, 59, 0.35);
}
/* Push header down when banner is on. JS toggles .has-rate-banner on <body>. */
body.has-rate-banner .header { top: 38px; }
@media (max-width: 600px) {
  body.has-rate-banner .header { top: 64px; }
}
.rate-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 48px 9px 24px;
  text-align: center;
  flex-wrap: wrap;
}
.rate-banner__text { color: #fff; }
.rate-banner__text strong { color: var(--gold-bright); font-weight: 600; }
.rate-banner__cta {
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 180, 83, 0.45);
  transition: color .15s;
  white-space: nowrap;
}
.rate-banner__cta:hover { color: #fff; border-bottom-color: #fff; }
.rate-banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.65);
  padding: 4px;
  line-height: 0;
}
.rate-banner__close:hover { color: #fff; }
@media (max-width: 600px) {
  .rate-banner__inner { font-size: 12.5px; padding: 8px 40px 8px 16px; gap: 8px; }
}

/* ============================================================
   LANDING PAGE TEMPLATE (used by /hotels-near-* and /packages)
   Light hero + content sections. Reuses .poi-card / .drive-card.
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 6vh, 64px);
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.lp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.lp-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,39,73,.35) 0%, rgba(18,39,73,.85) 100%);
}
.lp-hero__content { position: relative; z-index: 2; max-width: 800px; }
.lp-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 60px); margin-bottom: 18px; }
.lp-hero p.lead { color: rgba(255,255,255,.92); max-width: 620px; }
.lp-hero .eyebrow { color: var(--gold-bright); }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.lp-key {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.lp-key__item { text-align: center; }
.lp-key__item .num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--navy-deep);
  font-weight: 500;
  line-height: 1;
}
.lp-key__item .label {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: 500;
}

.lp-prose { max-width: 72ch; }
.lp-prose p { color: var(--ink-soft); margin: 0 0 18px; line-height: 1.75; }
.lp-prose h3 { margin-top: 36px; margin-bottom: 14px; color: var(--navy-deep); }
.lp-prose ul { padding-left: 22px; color: var(--ink-soft); line-height: 1.8; }
.lp-prose ul li { margin-bottom: 6px; }

/* ============================================================
   PACKAGES GRID
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
.pkg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pkg-card__media { aspect-ratio: 16/9; background: var(--bg-soft); overflow: hidden; }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pkg-card:hover .pkg-card__media img { transform: scale(1.04); }
.pkg-card__body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.pkg-card__tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.pkg-card h3 { font-size: 26px; color: var(--navy-deep); margin-bottom: 12px; }
.pkg-card__price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
}
.pkg-card__price small { font-size: 13px; color: var(--muted); font-family: var(--sans); margin-left: 4px; }
.pkg-card__desc { color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; }
.pkg-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.pkg-card__includes li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}
.pkg-card__includes li:first-child { border-top: none; }
.pkg-card__includes li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.pkg-card__cta { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.pkg-disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   POI CARDS — used on landing pages, homepage Reviews, link mesh
   Promoted from local-area.html inline CSS so it works everywhere.
   ============================================================ */
.poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.poi-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.poi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,30,55,.10);
}
.poi-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: #1d2540; }
.poi-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.poi-card:hover .poi-card__media img { transform: scale(1.04); }
.poi-card__body { padding: 18px 22px 22px; }
.poi-card__meta,
.poi-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep, #b08940);
  margin-bottom: 8px;
}
.poi-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy-deep, #1d2540);
  margin: 0 0 8px;
}
.poi-card p { color: var(--ink-soft, #4a5168); font-size: 14px; line-height: 1.65; margin: 0; }

/* Drive-times mini grid (also referenced by mega-page) */
.drive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.drive-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 10px;
  padding: 18px 20px;
}
.drive-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep, #b08940);
  margin-bottom: 6px;
}
.drive-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy-deep, #1d2540);
  margin: 0 0 4px;
}
.drive-card p { color: var(--ink-soft, #4a5168); font-size: 13px; margin: 0; }
