/* ==========================================================================
   VISIT DUNSTER — Design System
   Heritage-editorial: parchment, moss green, gold, Norman-arch motif
   Fonts: Fraunces (display) + Karla (body), loaded via Google Fonts
   ========================================================================== */

:root {
  --ink: #26231c;
  --ink-soft: #57503f;
  --parchment: #f7f3ea;
  --cream: #fffdf7;
  --stone-line: #e3dbc7;
  --moss: #24422f;
  --moss-deep: #16291d;
  --moss-tint: #eaf0e7;
  --gold: #b98a2e;
  --gold-soft: #c9a253;
  --burgundy: #7d2f38;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;
  --arch: 999px 999px 14px 14px;
  --shadow: 0 18px 45px -18px rgba(38, 35, 28, 0.35);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--moss); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topline { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold)); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-line);
}

.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-mark { font-family: var(--serif); font-size: 1.65rem; font-weight: 700; color: var(--moss); letter-spacing: -0.01em; }
.brand-mark em { font-style: italic; font-weight: 400; color: var(--gold); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; }
.main-nav a { text-decoration: none; }

.nav-item { position: relative; }
.nav-link {
  display: inline-block; padding: 10px 13px;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ink); border-radius: 6px;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--burgundy); }
.nav-link.active { color: var(--burgundy); }
.nav-link .caret { font-size: 0.6rem; vertical-align: 2px; margin-left: 3px; color: var(--gold); }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--cream); border: 1px solid var(--stone-line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow); border-radius: 0 0 10px 10px;
  padding: 10px 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.18s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 22px; font-size: 0.92rem; font-weight: 500; color: var(--ink);
}
.dropdown a:hover { background: var(--moss-tint); color: var(--moss); padding-left: 26px; transition: all 0.15s; }
.dropdown a.active { color: var(--burgundy); font-weight: 700; }

.btn-contact {
  margin-left: 12px; padding: 10px 22px;
  background: var(--moss); color: #fff !important;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 999px; transition: background 0.2s;
}
.btn-contact:hover { background: var(--burgundy); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--moss); transition: all 0.25s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-size: cover; background-position: center;
  color: #fff; overflow: hidden;
}
.hero.hero-short { min-height: 46vh; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22, 41, 29, 0.42) 0%, rgba(22, 41, 29, 0.28) 45%, rgba(22, 41, 29, 0.72) 100%);
}
.hero-content { position: relative; max-width: 860px; padding: 110px 24px 90px; }
.hero-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: "—"; margin: 0 12px; color: rgba(201, 162, 83, 0.6); }
.hero h1 {
  font-size: clamp(2.9rem, 8vw, 5.6rem); color: #fff; font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 620px; margin: 0 auto 38px; color: rgba(255, 253, 247, 0.92); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  margin: 10px auto 0;
}

/* Buttons */
.btn {
  display: inline-block; padding: 15px 34px; border-radius: 999px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; transition: all 0.22s ease; border: 1.5px solid transparent;
  background: transparent;
}
.btn-gold { background: var(--gold); color: var(--moss-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-moss { background: var(--moss); color: #fff; }
.btn-moss:hover { background: var(--moss-deep); transform: translateY(-2px); }
.btn-outline-moss { border-color: var(--moss); color: var(--moss); }
.btn-outline-moss:hover { background: var(--moss); color: #fff; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.eyebrow {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--burgundy);
  margin-bottom: 16px;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 18px; letter-spacing: -0.01em; }
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

.rule {
  width: 64px; height: 3px; background: var(--gold); border: none; margin: 0 0 26px;
}
.centered .rule { margin-left: auto; margin-right: auto; }

/* Alternating editorial rows */
.story-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  margin-bottom: 96px;
}
.story-row:last-child { margin-bottom: 0; }
.story-row.flip .story-media { order: 2; }
.story-num {
  font-family: var(--serif); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.32em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.story-text h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.story-text p { color: var(--ink-soft); margin-bottom: 16px; }
.story-text p:last-of-type { margin-bottom: 0; }
.story-link {
  display: inline-block; margin-top: 20px; font-weight: 700; font-size: 0.92rem;
  color: var(--burgundy); text-decoration: none; letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold); padding-bottom: 3px;
}
.story-link:hover { color: var(--moss); }

.story-media { position: relative; }
.story-media img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: var(--arch); box-shadow: var(--shadow);
}
.story-media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--gold); border-radius: var(--arch); z-index: -1;
}
.story-row.flip .story-media::after { inset: 14px 14px -14px -14px; }
.story-media.landscape img { aspect-ratio: 4 / 3; border-radius: 14px; }
.story-media.landscape::after { border-radius: 14px; }

/* Stat band */
.stat-band {
  background: var(--moss-deep) url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 6l4 8h-8z' fill='%23203a2b' fill-opacity='0.6'/%3E%3C/svg%3E");
  color: var(--parchment); text-align: center;
  padding: 76px 0;
}
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 880px; margin: 0 auto; }
.stat-num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 600; color: var(--gold-soft); line-height: 1; }
.stat-label { margin-top: 10px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 243, 234, 0.75); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream); border: 1px solid var(--stone-line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 253, 247, 0.94); color: var(--moss);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card-actions { margin-top: 20px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.card-actions .story-link { margin-top: 0; }
.card-phone { font-weight: 700; color: var(--moss); text-decoration: none; font-size: 0.95rem; }
.card-phone:hover { color: var(--burgundy); }
.card-meta { font-size: 0.85rem; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 8px; text-transform: uppercase; }

/* Dark section */
.dark-section { background: var(--moss-deep); color: var(--parchment); }
.dark-section .eyebrow { color: var(--gold-soft); }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: rgba(247, 243, 234, 0.82); }
.dark-section .card { background: rgba(255, 253, 247, 0.05); border-color: rgba(227, 219, 199, 0.16); }
.dark-section .card-body h3 { color: #fff; }
.dark-section .card-body p { color: rgba(247, 243, 234, 0.75); }

/* Quote band */
.quote-band {
  position: relative; background-size: cover; background-position: center;
  padding: 130px 0; text-align: center; color: #fff;
}
.quote-band::before { content: ""; position: absolute; inset: 0; background: rgba(22, 41, 29, 0.68); }
.quote-band blockquote { position: relative; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.quote-band blockquote p {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1.45; color: #fff;
}
.quote-band cite { display: block; margin-top: 24px; font-style: normal; font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-soft); }

/* Link tiles */
.link-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.link-tile {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--cream); border: 1px solid var(--stone-line); border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 20px 24px; text-decoration: none;
  transition: all 0.2s ease;
}
.link-tile:hover { border-left-color: var(--burgundy); transform: translateX(4px); background: #fff; }
.link-tile strong { color: var(--moss); font-size: 1.02rem; }
.link-tile span { color: var(--ink-soft); font-size: 0.88rem; }

/* CTA */
.cta-section {
  background: var(--moss); color: #fff; text-align: center; padding: 90px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: "✦"; position: absolute; font-size: 26rem; color: rgba(255,255,255,0.04);
  top: 50%; left: 50%; transform: translate(-50%, -50%); line-height: 1;
}
.cta-section h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 16px; position: relative; }
.cta-section p { max-width: 560px; margin: 0 auto 36px; color: rgba(247, 243, 234, 0.85); position: relative; }
.cta-section .hero-actions { position: relative; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-grid a { display: block; margin-bottom: 18px; break-inside: avoid; border-radius: 12px; overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(22, 41, 29, 0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 22px; right: 30px; background: none; border: none;
  color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 26px; }
.lightbox-next { right: 26px; }

/* --------------------------------------------------------------------------
   What's On — seasonal
   -------------------------------------------------------------------------- */
.season-block { margin-bottom: 72px; }
.season-block:last-child { margin-bottom: 0; }
.season-head { display: flex; align-items: baseline; gap: 20px; border-bottom: 2px solid var(--stone-line); padding-bottom: 14px; margin-bottom: 30px; }
.season-head h3 { font-size: 2rem; }
.season-head span { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.event-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.event-list li { display: flex; gap: 14px; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--stone-line); }
.event-when { flex: 0 0 88px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--burgundy); }
.event-list a { font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--gold); }
.event-list a:hover { color: var(--burgundy); }
.event-list .no-link { font-weight: 600; }
.event-note { font-size: 0.85rem; color: var(--ink-soft); display: block; }

/* --------------------------------------------------------------------------
   Community / info lists
   -------------------------------------------------------------------------- */
.info-card {
  background: var(--cream); border: 1px solid var(--stone-line); border-radius: 16px;
  padding: 34px 36px;
}
.info-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.info-card .card-meta { margin-bottom: 14px; }
.info-card ul { list-style: none; }
.info-card li { padding: 8px 0; border-bottom: 1px dashed var(--stone-line); color: var(--ink-soft); }
.info-card li:last-child { border-bottom: none; }
.info-card li strong { color: var(--ink); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-channel {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px 0;
  border-bottom: 1px solid var(--stone-line);
}
.contact-icon {
  flex: 0 0 48px; height: 48px; border-radius: 50%;
  background: var(--moss-tint); color: var(--moss);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-channel h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-channel a { color: var(--burgundy); font-weight: 700; text-decoration: none; }
.contact-channel a:hover { text-decoration: underline; }
.contact-channel p { color: var(--ink-soft); font-size: 0.95rem; }

.form-card {
  background: var(--cream); border: 1px solid var(--stone-line); border-radius: 18px;
  padding: 42px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--stone-line); border-radius: 10px;
  background: #fff; font-family: var(--sans); font-size: 1rem; color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }

/* Map */
.map-frame { border: none; width: 100%; height: 480px; border-radius: 18px; box-shadow: var(--shadow); }
.map-image img { border-radius: 18px; box-shadow: var(--shadow); margin: 0 auto; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--moss-deep); color: rgba(247, 243, 234, 0.78); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .brand-mark { color: var(--parchment); font-size: 1.5rem; }
.footer-brand p { margin-top: 16px; font-size: 0.95rem; max-width: 300px; }
.site-footer h4 { color: var(--gold-soft); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(247, 243, 234, 0.78); text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(227, 219, 199, 0.14); padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(247, 243, 234, 0.5);
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .card-grid, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .link-tiles { grid-template-columns: repeat(2, 1fr); }
  .story-row { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  /* backdrop-filter creates a containing block for fixed children — disable on
     mobile so the slide-out menu positions against the viewport, not the header */
  .site-header { backdrop-filter: none; background: var(--cream); }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--cream); overflow-y: auto; padding: 12px 24px 40px;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--stone-line); }
  .nav-link { display: block; padding: 14px 8px; font-size: 1.05rem; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-top: none; background: transparent;
    padding: 0 0 12px 18px; display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .btn-contact { margin: 20px 8px 0; display: inline-block; }
  .story-row, .story-row.flip { grid-template-columns: 1fr; gap: 36px; }
  .story-row.flip .story-media { order: 0; }
  .story-media::after, .story-row.flip .story-media::after { inset: 10px -10px -10px 10px; }
  .contact-grid, .info-grid { grid-template-columns: 1fr; }
  .event-list { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  section { padding: 68px 0; }
  .hero { min-height: 72vh; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid.two, .card-grid.four { grid-template-columns: 1fr; }
  .link-tiles { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { height: 68px; }
  .main-nav { top: 72px; }
}

/* --------------------------------------------------------------------------
   Cookie consent bar (GA4 Consent Mode v2)
   -------------------------------------------------------------------------- */
.consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: center;
  padding: 14px 20px; background: var(--moss-deep); color: var(--parchment);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}
.consent-bar p { margin: 0; font-size: 0.92rem; }
.consent-bar a { color: var(--gold-soft); }
.consent-actions { display: flex; gap: 10px; }
.consent-bar .btn { padding: 8px 18px; font-size: 0.88rem; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--moss-deep); color: var(--parchment);
  padding: 12px 20px; border-radius: 0 0 10px 0; text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Mobile brand: never wrap the wordmark, drop the sub-line */
@media (max-width: 640px) {
  .brand-mark { white-space: nowrap; font-size: 1.4rem; }
  .brand-sub { display: none; }
}
