/* =========================================================
   RoVer's Roost RV Retreat — Shared Stylesheet
   Desert-inspired palette, mobile-first, WCAG-friendly contrast
   ========================================================= */

:root {
  /* Brand palette — refined magazine: deep navy, calm accents */
  --navy: #1e3a5f;          /* refined navy for headlines and accents */
  --navy-dark: #122845;     /* deeper navy for hover / footer */
  --blue: #4a90c2;           /* soft mid-blue for links */
  --sky: #87b7d8;           /* pale sky highlight */
  --red: #c8302e;           /* understated rooster red */
  --red-dark: #9a2120;      /* deep red for hover */
  --gold: #d4a543;          /* muted gold accent */
  --cream: #fff8e8;         /* warm cream backgrounds */
  --cream-light: #fffcf2;
  --warm-brown: #3a2a18;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --white: #ffffff;
  --line: #d8e2ef;
  --focus: #2563eb;

  /* Legacy aliases so any old references keep working without breakage */
  --sage: var(--navy);
  --sage-dark: var(--navy-dark);
  --terracotta: var(--red);
  --terracotta-dark: var(--red-dark);
  --sunset: var(--gold);
  --sand: var(--cream);
  --sand-light: var(--cream-light);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --radius: 6px;
  --radius-lg: 10px;
  --max-width: 1180px;
  --font-body: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-label: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-light);
}

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

a {
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--sage-dark); }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; margin-top: 0; letter-spacing: -0.005em; font-weight: 400; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 400; margin-top: 2rem; }
h3 { font-size: 1.35rem; font-weight: 600; font-family: var(--font-label); margin-top: 1.5rem; color: var(--navy); }
h4 { font-size: 1.05rem; font-weight: 700; font-family: var(--font-label); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Skip link for accessibility ---------- */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  background: var(--warm-brown);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Header & Navigation ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--sage);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-brown);
  text-decoration: none;
}
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-head);
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.brand:hover .brand-mark { opacity: 0.85; }
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}
.brand small { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 400; }

.nav-toggle {
  display: none;
  background: var(--sage);
  color: var(--white);
  border: 0;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}
.site-nav ul {
  display: flex; gap: 0.25rem;
  list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap;
}
.site-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--warm-brown);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--sage);
  color: var(--white);
}

/* Dropdown nav item (used to group Our Story + Gallery) */
.site-nav li.has-submenu { position: relative; }
.site-nav li.has-submenu > a::after {
  content: " ▾";
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 0.15rem;
}
.site-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  border-radius: var(--radius);
  padding: 0.35rem;
  margin: 0;
  list-style: none;
  z-index: 100;
}
.site-nav li.has-submenu:hover .submenu,
.site-nav li.has-submenu:focus-within .submenu {
  display: block;
}
.site-nav .submenu li { margin: 0; }
.site-nav .submenu a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius);
  white-space: nowrap;
}
.site-nav .submenu a:hover,
.site-nav .submenu a:focus {
  background: var(--sand);
  color: var(--navy);
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .site-nav { width: 100%; display: none; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0.15rem; }
  .site-nav a { padding: 0.75rem 1rem; }
  /* Mobile: dropdown becomes inline list with sub-indent */
  .site-nav .submenu {
    display: block;
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    min-width: 0;
  }
  .site-nav .submenu a { padding-left: 2rem; font-size: 0.95rem; }
  .site-nav li.has-submenu > a::after { content: ""; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--white);
  padding: 1.5rem 1.25rem 1rem;
}
.hero h1 { color: var(--ink); }
.hero .lede { color: var(--ink); }
/* Magazine-style overlay hero — full-width photo with serif heading on top */
.hero.hero-photo {
  background:
    var(--hero-img, none) center/cover no-repeat,
    #1e3a5f;
  color: var(--white);
  padding: 0;
  text-align: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.hero.hero-photo.with-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.55) 100%),
    var(--hero-img, none) center/cover no-repeat,
    #1e3a5f;
  padding: 5rem 1.25rem 5.5rem;
}
.hero.hero-photo > .container { width: 100%; }
.hero.hero-photo h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero.hero-photo p.lede {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero h1 { color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.hero p.lede {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 1rem auto 1.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.hero .image-placeholder {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* ---------- Buttons (clean & refined) ---------- */
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }

/* ---------- Section layout ---------- */
section.block { padding: 3rem 0; }
section.block.alt { background: var(--sand); }
.section-head { max-width: 760px; margin: 0 auto 1.75rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
.card h3 { margin-top: 0.25rem; color: var(--navy); }
.icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 700;
  font-family: var(--font-label);
  margin-bottom: 0.5rem;
}

/* ---------- Special offer banner ---------- */
.offer-banner {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-weight: 600;
}
.offer-banner strong { display: block; font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 0.15rem; }
.offer-banner a { color: var(--white); text-decoration: underline; }

/* ---------- Photo frame (for inserted real photos) ---------- */
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
  background: var(--sand);
  aspect-ratio: 4 / 3;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Image placeholder ---------- */
.img-placeholder {
  background:
    repeating-linear-gradient(45deg, var(--sand) 0 14px, var(--sand-light) 14px 28px);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--muted);
  font-style: italic;
  min-height: 220px;
  padding: 1rem;
  text-align: center;
}

/* ---------- Rates Table ---------- */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rates-table caption {
  caption-side: top;
  text-align: left;
  padding: 0.5rem 0 1rem;
  color: var(--muted);
  font-style: italic;
}
.rates-table th, .rates-table td {
  padding: 1rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.rates-table thead {
  background: var(--sage);
  color: var(--white);
}
.rates-table thead th { font-family: var(--font-head); }
.rates-table tbody tr:nth-child(even) { background: var(--sand-light); }
.rates-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Day-trip categories ---------- */
.trip-cat h3 { color: var(--red-dark); display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.trip-cat ul { padding-left: 1.1rem; }
.trip-cat li { margin-bottom: 0.4rem; }

/* Trip cards: image on top, content below, external-link arrow */
.trip-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trip-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.trip-card .trip-img {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  position: relative;
}
.trip-card .trip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.trip-card .trip-img:hover img { transform: scale(1.04); }
.trip-card .trip-body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.trip-card h3 { margin-top: 0; }
.trip-card h3 a { color: var(--red-dark); text-decoration: none; }
.trip-card h3 a:hover { color: var(--red); text-decoration: underline; }
.trip-card p { margin-bottom: 0.85rem; flex: 1; }
.trip-card .trip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  margin-top: auto;
}
.trip-card .trip-link::after { content: "↗"; font-size: 1.05em; }
.trip-card .trip-link:hover { color: var(--red); }

/* Activity gallery cards — photo + caption only, no external link */
.activity-gallery .gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.activity-gallery .gallery-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.activity-gallery .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activity-gallery .gallery-body {
  padding: 1rem 1.25rem 1.25rem;
}
.activity-gallery .gallery-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.activity-gallery h3 {
  margin: 0.25rem 0 0.4rem;
  color: var(--navy-dark);
  font-size: 1.15rem;
}
.activity-gallery p { margin: 0; color: var(--ink); }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--white);
  border-left: 6px solid var(--sunset);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--warm-brown);
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 1.5rem auto;
}
.testimonial cite { display: block; margin-top: 0.75rem; font-style: normal; font-weight: 700; color: var(--sage-dark); font-size: 0.95rem; }

/* ---------- FAQ accordion ---------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.25rem;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.75rem 1rem;
  font-family: var(--font-head);
  color: var(--warm-brown);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--terracotta); }
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 1rem 1rem; }

/* ---------- Contact form ---------- */
.contact-form { display: grid; gap: 1rem; max-width: 620px; }
.contact-form label { display: block; font-weight: 600; color: var(--warm-brown); margin-bottom: 0.35rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--focus);
}

/* ---------- Info strip ---------- */
.info-strip {
  background: var(--sage);
  color: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
}
.info-strip a { color: var(--white); }
.info-strip .grid-3 { gap: 1.5rem; }
.info-strip h3 { color: var(--white); margin: 0 0 0.25rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--warm-brown);
  color: var(--sand-light);
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: var(--sand); }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
}
.site-footer h4 { color: var(--sand-light); font-family: var(--font-head); margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.lead { font-size: 1.15rem; color: var(--ink); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

ul.checklist { list-style: none; padding-left: 0; }
ul.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

.badge {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 0.35rem;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.25rem;
}
.cta-band h2 { color: var(--white); font-weight: 400; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.08rem; }

/* Contact-info card: address + phone block, magazine-style */
.contact-card {
  background: transparent;
  padding: 0;
}
.contact-card .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-card .contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}
.contact-card .contact-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact-card .contact-value {
  margin: 0;
  line-height: 1.45;
}
.contact-card .contact-value a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.contact-card .contact-value a:hover { text-decoration: underline; }

/* ---------- Logo + tagline for the home hero ---------- */
.hero-logo {
  display: block;
  width: clamp(140px, 20vw, 220px);
  max-width: 90%;
  background: rgba(255,255,255,0.94);
  border-radius: 50%;
  padding: 0.85rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.30);
  flex-shrink: 0;
}
.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
}
/* Two-column magazine opener: title + lead on left, contact card on right */
.magazine-opener {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0 1rem;
  align-items: start;
}
.magazine-opener .opener-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.magazine-opener .opener-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}
.magazine-opener .opener-lead .lead-in {
  font-weight: 700;
  color: var(--ink);
}
.magazine-opener .btn-row { justify-content: flex-start; margin-top: 1.5rem; }
@media (max-width: 820px) {
  .magazine-opener { grid-template-columns: 1fr; gap: 2rem; }
  .magazine-opener .btn-row { justify-content: center; }
}

/* ---------- Brochure-style sections ---------- */
.brochure-section {
  padding: 2.5rem 0 2rem;
}
.brochure-section .container::after {
  content: "";
  display: table;
  clear: both;
}
.brochure-section.alt { background: var(--cream-light); }
.brochure-section p { margin: 0 0 0.9rem; font-size: 1.05rem; line-height: 1.65; }

/* Clean serif section heading (replaces old colored banner) */
.brochure-banner {
  margin: 0.25rem 0 1.5rem;
}
.brochure-banner h2 {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0 0 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

/* Blue subsection headers (no banner) */
.brochure-section h3 {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 1.4rem 0 0.35rem;
}
/* Body content under a subsection is indented */
.brochure-section h3 + p,
.brochure-section h3 + ul,
.brochure-sub {
  margin-left: 1.5rem;
}
.brochure-section ul { padding-left: 1.25rem; }
.brochure-section ul li { margin-bottom: 0.3rem; }
.brochure-section .intro-lede {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

/* Co-op thumbnail — small photo next to each sister-park name */
.coop-photo {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0.4rem 0 0.5rem;
  background: var(--sand);
}

/* Staff headshot — small inline portrait shown next to a name */
.staff-photo {
  display: block;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0.4rem 0 0.5rem;
}
/* Allow a larger photo for combined-couple cards */
.staff-photo.wide {
  max-width: 320px;
  aspect-ratio: 4 / 3;
}

/* Brochure photos that float in body */
.brochure-photo {
  display: block;
  width: clamp(220px, 38%, 360px);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  margin: 0.4rem 0 1rem;
  transition: transform 0.3s ease;
}
.brochure-photo.right {
  float: right;
  margin-left: 1.5rem;
}
.brochure-photo.left {
  float: left;
  margin-right: 1.5rem;
}
.brochure-photo:hover { transform: scale(1.02); }
@media (max-width: 640px) {
  .brochure-photo, .brochure-photo.left, .brochure-photo.right {
    float: none;
    width: 100%;
    margin: 0.5rem 0 1.2rem;
  }
}
.hero-tagline {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
  text-transform: uppercase;
}

/* On the home hero, increase height a touch and let content breathe */
.hero.hero-photo {
  min-height: 480px;
  padding: 5rem 1.25rem 5.5rem;
}
.cta-band h2 { color: var(--white); }
.cta-band p { font-size: 1.1rem; opacity: 0.95; }

/* ---------- White text inside ALL shaded (blue) boxes ---------- */
/* NOTE: scoped to hero.hero-photo only — plain .hero has a white bg */
.hero.hero-photo, .hero.hero-photo h1, .hero.hero-photo h2, .hero.hero-photo h3, .hero.hero-photo h4,
.hero.hero-photo p, .hero.hero-photo a, .hero.hero-photo .eyebrow,
.info-strip, .info-strip h1, .info-strip h2, .info-strip h3, .info-strip h4,
.info-strip p, .info-strip a, .info-strip .eyebrow,
.cta-band, .cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4,
.cta-band p, .cta-band a, .cta-band .eyebrow,
.rates-table thead, .rates-table thead th, .rates-table thead td,
.offer-banner, .offer-banner h1, .offer-banner h2, .offer-banner h3,
.offer-banner p, .offer-banner a, .offer-banner strong,
.badge,
.site-nav > ul > li > a[aria-current="page"], .site-nav > ul > li > a:hover,
.nav-toggle {
  color: var(--white) !important;
}
/* Keep dropdown submenu items dark on their light hover background */
.site-nav .submenu a,
.site-nav .submenu a:hover,
.site-nav .submenu a:focus,
.site-nav .submenu a[aria-current="page"] {
  color: var(--ink) !important;
  background: transparent;
}
.site-nav .submenu a:hover,
.site-nav .submenu a:focus {
  background: var(--sand);
  color: var(--navy) !important;
}
.site-nav .submenu a[aria-current="page"] {
  background: var(--sand);
  color: var(--navy) !important;
}

/* Keep buttons' own colors readable on shaded backgrounds */
.hero.hero-photo .btn-primary, .cta-band .btn-primary, .info-strip .btn-primary,
.hero.hero-photo .btn-ghost, .cta-band .btn-ghost, .info-strip .btn-ghost {
  color: var(--white) !important;
}
.hero.hero-photo .btn-secondary, .cta-band .btn-secondary, .info-strip .btn-secondary {
  color: var(--warm-brown) !important;
}

/* =========================================================
   VIDEO PLACEHOLDER & NEWSLETTER SIGNUP
   ========================================================= */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 1rem auto;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}
.video-frame .video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #122845 100%);
  color: var(--white);
  font-family: var(--font-head);
  padding: 1rem;
}
.video-frame .video-placeholder .play-icon {
  font-size: 3rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.newsletter-signup {
  max-width: 620px;
  margin: 1rem auto;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.newsletter-signup form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-signup input[type="email"] {
  flex: 1 1 240px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.newsletter-signup .small-print {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* =========================================================
   FLOATING QUICK CONTACT BUTTON (bottom-right, all pages)
   ========================================================= */
.quick-contact {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.quick-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, background 0.18s ease;
}
.quick-contact a:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.quick-contact a .qc-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .quick-contact { bottom: 0.85rem; right: 0.85rem; }
  .quick-contact a {
    padding: 0.65rem 0.95rem;
    font-size: 0.85rem;
  }
}

/* =========================================================
   RESPONSIVE OPTIMIZATIONS — iPhone, iPad, Laptop, Desktop
   ========================================================= */

/* Universal: prevent images from breaking layouts */
img { max-width: 100%; height: auto; }

/* Ensure base font size is comfortable on all devices */
html { font-size: 16px; -webkit-text-size-adjust: 100%; }

/* ---------- Laptop & Desktop (1024px+) — already default ---------- */

/* ---------- Tablet / iPad landscape (820px–1023px) ---------- */
@media (max-width: 1023px) {
  .container { padding: 0 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- iPad portrait & smaller (under 820px) ---------- */
@media (max-width: 820px) {
  /* Tighter section padding */
  .brochure-section { padding: 2rem 0 1.5rem; }
  .cta-band { padding: 2.5rem 1rem; }

  /* Hero photo: shorter so titles aren't lost in giant photo */
  .hero.hero-photo { min-height: 320px; }
  .hero.hero-photo.with-overlay { padding: 3.5rem 1rem 3rem; }
  .hero.hero-photo h1 { font-size: clamp(2rem, 7vw, 3rem); }

  /* Single-column footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }

  /* Mobile nav: tap-friendly targets */
  .site-nav.open ul { padding: 0.5rem 0; }
  .site-nav.open a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .site-nav.open a[aria-current="page"] { background: var(--sand); color: var(--navy); }

  /* Magazine-opener stacks — paragraph above contact card */
  .magazine-opener { grid-template-columns: 1fr; gap: 1.5rem; padding: 1rem 0; }
  .magazine-opener .btn-row { justify-content: flex-start; }

  /* Make sure rates table can be scrolled */
  .rates-table { font-size: 0.9rem; }
  .rates-table th, .rates-table td { padding: 0.75rem 0.6rem; }

  /* Trip cards 2 columns on tablet */
  .grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- iPhone & small phones (under 640px) ---------- */
@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Section headers smaller */
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1.1rem; }

  /* Tighter container */
  .container { padding: 0 1rem; }

  /* Brochure section: less padding */
  .brochure-section { padding: 1.5rem 0 1rem; }
  .brochure-banner h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .brochure-section h3 { font-size: 1.05rem; margin-top: 1rem; }

  /* Indent under subsection headers tighter */
  .brochure-section h3 + p,
  .brochure-section h3 + ul,
  .brochure-sub { margin-left: 0.8rem; }
  .brochure-section ul { padding-left: 1.1rem; }

  /* Single-column for everything */
  .grid.grid-2,
  .grid.grid-3,
  .grid.grid-4 { grid-template-columns: 1fr; }

  /* Hero photo: even shorter */
  .hero.hero-photo { min-height: 240px; }
  .hero.hero-photo.with-overlay { padding: 2.5rem 1rem 2rem; }

  /* Tap-friendly buttons (44px+ tall per Apple HIG) */
  .btn { padding: 0.95rem 1.4rem; font-size: 0.95rem; min-height: 44px; }
  .btn-row { gap: 0.6rem; }

  /* Logo header — smaller brand, tighter padding */
  .brand { font-size: 1rem; gap: 0.5rem; }
  .brand-mark { width: 44px; height: 44px; }
  .brand small { font-size: 0.7rem; }
  .nav-wrap { padding: 0.65rem 1rem; }

  /* Offer banner: smaller text on phones */
  .offer-banner { padding: 0.85rem 1rem; font-size: 0.92rem; }
  .offer-banner strong { font-size: 1.02rem; }

  /* CTA band: less padding */
  .cta-band { padding: 2rem 1rem; }
  .cta-band p { font-size: 1rem; }

  /* Brochure photos always full-width on phones (no float) */
  .brochure-photo,
  .brochure-photo.left,
  .brochure-photo.right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0.5rem 0 1rem;
  }

  /* Staff photo smaller on phones */
  .staff-photo { max-width: 160px; margin-left: auto; margin-right: auto; }

  /* Contact-info card padding tighter */
  .contact-card .contact-row { gap: 0.6rem; margin-bottom: 1rem; }

  /* Activity gallery: 2 columns on phones (was 3) */
  .activity-gallery.grid { grid-template-columns: repeat(2, 1fr); }

  /* FAQ accordion: roomier tap target */
  .faq summary { padding: 0.9rem 1rem; min-height: 44px; }

  /* Contact form inputs: full width, comfy tap targets */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* iOS won't zoom on focus when font is 16px+ */
    min-height: 44px;
  }

  /* Footer: smaller text */
  .site-footer { padding: 2rem 1rem 1rem; }
  .footer-bottom { font-size: 0.82rem; }

  /* Chamber line: tighter */
  .chamber-member { font-size: 0.85rem !important; }
}

/* ---------- Very small phones (under 400px) ---------- */
@media (max-width: 400px) {
  .activity-gallery.grid { grid-template-columns: 1fr; }
  .hero.hero-photo { min-height: 200px; }
  h1 { font-size: 1.6rem; }
  .brand small { display: none; }
}
