:root {
  --green-deep: #2d4a1f;
  --green-moss: #4a6b2b;
  --green-olive: #6b7d3c;
  --green-soft: #8a9d5a;
  --cream: #f5ecd5;
  --cream-soft: #faf6e9;
  --paper: #fbf8ef;
  --wood: #5b3a1e;
  --wood-light: #8a6235;
  --gold: #c9a961;
  --ink: #2a2520;
  --ink-soft: #4a4338;
  --line: #d8cfb3;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; color-scheme: light; }

/* Accessibility utility: visually hidden until focused (skip link) */
.skip-link {
  position: absolute;
  top: 0; left: 0;
  padding: 0.6rem 1rem;
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transform: translateY(-100%);
  z-index: 1000;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Visible focus indicator for all interactive elements */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
button, a, input, label { touch-action: manipulation; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { margin-bottom: 1.1em; max-width: 64ch; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--green-deep);
  font-weight: 500;
}
.brand img.brand__logo {
  width: auto;
  height: clamp(60px, 7vw, 88px);
  border-radius: 0;
  object-fit: contain;
  margin: -16px 0;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--green-deep);
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--green-deep);
  padding: 0.3rem;
}

/* Mobile-first nav: collapsed by default, JS toggles .open */
.nav-links {
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: var(--paper);
  padding: 1rem var(--gutter);
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  display: none;
}
.nav-links.open { display: flex; }

@media (min-width: 821px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 2rem;
    border-bottom: 0;
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(1.05);
  z-index: 1;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem var(--gutter);
  width: 100%;
  color: var(--cream);
}
.hero-content h1 {
  color: var(--cream);
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.hero-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 52ch;
  color: rgba(245, 236, 213, 0.92);
  font-weight: 400;
}
.hero-disclaimer {
  position: absolute;
  bottom: 1rem;
  right: var(--gutter);
  font-size: 0.72rem;
  color: rgba(245, 236, 213, 0.6);
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ===== Sections ===== */
section { padding: clamp(3rem, 8vw, 6rem) var(--gutter); }
.wrap { max-width: var(--max); margin: 0 auto; }
.wrap-narrow { max-width: 780px; margin: 0 auto; }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-moss);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-intro h2 { margin-bottom: 1.2rem; }
.section-intro p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ===== Chapter cards ===== */
.chapters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.chapter {
  position: relative;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  transition: transform 0.4s ease;
  border: 1px solid var(--line);
}
.chapter:hover { transform: translateY(-4px); }
.chapter-img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #4a6b2b, #8a9d5a);
}
.chapter-body { padding: 1.4rem 1.5rem 1.7rem; }
.chapter-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--wood);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}
.chapter h3 {
  margin-bottom: 0.5rem;
  color: var(--green-deep);
}
.chapter p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ===== Article (story page) ===== */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--green-deep);
}
.article-hero img,
.article-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
  z-index: 1;
  display: block;
}
.article-hero-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem var(--gutter);
  color: var(--cream);
  max-width: var(--max);
  margin: 0 auto;
}
.article-hero-text .kicker { color: var(--gold); }
.article-hero-text h1 { color: var(--cream); max-width: 22ch; }

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
}
.article p { font-size: 1.08rem; line-height: 1.75; }
.article h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.lede {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-style: italic;
}
.pullquote {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--green-deep);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.fact-grid dt {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-moss);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.fact-grid dd {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--green-deep);
  line-height: 1.2;
}

.figure {
  margin: 2.5rem 0;
}
.figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
.figure figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.7rem;
  font-style: italic;
}

.next-chapter {
  position: relative;
  display: block;
  margin: 5rem auto 0;
  max-width: 980px;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  color: var(--cream);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  border-radius: 4px;
  background: var(--green-deep);
  box-shadow: 0 20px 50px -20px rgba(45, 74, 31, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.next-chapter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--nc-bg, none);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.6s ease;
  filter: saturate(0.85);
}
.next-chapter::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 35, 12, 0.45) 0%, rgba(20, 35, 12, 0.78) 100%),
    radial-gradient(80% 60% at 50% 50%, rgba(45, 74, 31, 0.2), rgba(20, 35, 12, 0.55));
}
.next-chapter:hover {
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 30px 70px -20px rgba(45, 74, 31, 0.55);
}
.next-chapter:hover::before { transform: scale(1.04); }

.next-chapter .nc-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 2px;
}
.next-chapter .nc-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--cream);
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 22ch;
  margin: 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .next-chapter, .next-chapter::before { transition: none; }
  .next-chapter:hover { transform: none; }
  .next-chapter:hover::before { transform: none; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
  margin-top: 3rem;
}
.gallery-grid figure {
  overflow: hidden;
  margin: 0;
}
.gallery-grid .ph {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--green-moss);
  overflow: hidden;
}
.gallery-grid figure:nth-child(3n+1) .ph { aspect-ratio: 4 / 5; }
.gallery-grid figure:nth-child(5n+2) .ph { aspect-ratio: 4 / 3; }
.gallery-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }

/* ===== Locations map ===== */
.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 901px) {
  .map-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 4.5rem;
    align-items: start;
  }
  .map-figure { position: sticky; top: 6rem; }
}

.map-figure { margin: 0; }
.map-frame {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.1rem;
  box-shadow: 0 12px 40px -12px rgba(45, 74, 31, 0.25);
  overflow: hidden;
}
.map-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: sepia(0.08) saturate(0.95);
}
.map-stamp {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--wood);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(45, 74, 31, 0.15);
}
.map-figure figcaption {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1.2rem;
  line-height: 1.5;
}

.map-key-lede {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 1rem 0 1.5rem;
}

.loc-cards {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  counter-reset: loc;
}
.loc-card {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 6rem;
  transition: background-color 0.2s;
}
.loc-card:hover { background: rgba(201, 169, 97, 0.06); }
.loc-card:last-child { border-bottom: 0; }
.loc-card .loc-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--wood);
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0;
}
.loc-card h3 {
  font-size: 1.35rem;
  margin: -0.15rem 0 0.4rem;
}
.loc-card .loc-body p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(245, 236, 213, 0.85);
  padding: 4rem var(--gutter) 2rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 461px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 761px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.site-footer h3 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(245, 236, 213, 0.85); }
.site-footer a:hover { color: var(--gold); }
.footer-brand p {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(245, 236, 213, 0.7);
  font-style: italic;
}
.footer-bottom {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 236, 213, 0.15);
  font-size: 0.8rem;
  color: rgba(245, 236, 213, 0.78);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--cream);
  border-top: 2px solid var(--green-deep);
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-actions button {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--green-deep);
  background: transparent;
  color: var(--green-deep);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.cookie-actions button:hover {
  background: var(--green-deep);
  color: var(--cream);
}
.cookie-actions button[data-consent="accept"] {
  background: var(--green-deep);
  color: var(--cream);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--green-moss);
  border-color: var(--green-moss);
}

/* Customize modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(42, 37, 32, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-inner {
  background: var(--paper);
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  border-radius: 4px;
  max-height: 86vh;
  overflow-y: auto;
}
.cookie-modal h3 { margin-bottom: 1rem; }
.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.cookie-row:last-of-type { border-bottom: none; }
.cookie-row strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.cookie-row small { color: var(--ink-soft); font-size: 0.85rem; }
.toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: var(--line);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
}
.toggle:checked { background: var(--green-moss); }
.toggle:checked::after { transform: translateX(18px); }
.toggle:disabled { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--green-deep);
  background: var(--green-deep);
  color: var(--cream);
  cursor: pointer;
  border-radius: 2px;
}

/* ===== Legal pages ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem var(--gutter);
}
.legal h1 { margin-bottom: 0.5rem; }
.legal .meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal p, .legal li { font-size: 0.97rem; }
.legal ul, .legal ol { margin: 0.5rem 0 1rem 1.4rem; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
}
.legal th, .legal td {
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal th {
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.caps { text-transform: uppercase; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border-radius: 2px;
}
.btn:hover { background: var(--cream); transform: translateY(-2px); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ===== Utility ===== */
.ph {
  position: relative;
  background: linear-gradient(135deg, var(--green-moss), var(--green-soft));
  display: block;
}
.ph img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
  border: none;
}

.bg-cream { background: var(--cream); }
.bg-green {
  position: relative;
  isolation: isolate;
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
}
.bg-green::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/hero-home.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.9);
}
.bg-green::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(45, 74, 31, 0.55), rgba(45, 74, 31, 0.92) 70%, rgba(20, 35, 12, 0.97));
}
.bg-green h2, .bg-green h3 { color: var(--cream); }
.bg-green .kicker { color: var(--cream); }
.bg-green .fact-grid dt { color: var(--cream); }
.bg-green .fact-grid dd { color: var(--gold); }

/* Print/reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* logo (brand) */
.brand__logo {
  display: inline-block;
  height: clamp(60px, 7vw, 88px); margin: -16px 0;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
