/* ==========================================================================
   Burgess Fund Management DAC — Global Stylesheet
   Responsive design system (mobile-first, desktop enhanced)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #061527;
  --navy-800: #0a1f3d;
  --navy-700: #12335f;
  --navy-600: #1a447c;
  --gold-500: #b98a3c;
  --gold-400: #c9a24b;
  --gold-300: #d8b96e;
  --cream: #f6f5f0;
  --cream-dark: #efede6;
  --ink: #1c2430;
  --ink-soft: #3c4656;
  --muted: #5a6473;
  --line: #e3e0d7;
  --white: #ffffff;
  --success: #2e7d4f;
  --error: #b3392f;

  --serif: "Playfair Display", "Georgia", "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 3px rgba(6, 21, 39, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 21, 39, 0.10);
  --shadow-lg: 0 18px 48px rgba(6, 21, 39, 0.16);

  --container: 1180px;
  --gutter: 1.5rem;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--gold-500);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--navy-800); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: 4.5rem 0;
}

.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-800); color: #dbe3ef; }
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.85rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn--primary:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--outline-dark {
  border-color: var(--navy-700);
  color: var(--navy-700);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-800);
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--navy-800);
}

.brand__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* Nav */
.nav { display: flex; align-items: center; gap: 0.25rem; }

.nav__link {
  display: block;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
}
.nav__link:hover { color: var(--navy-700); background: var(--cream); }
.nav__link[aria-current="page"] {
  color: var(--navy-700);
  font-weight: 600;
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background-color: var(--navy-900);
  background-image:
    radial-gradient(circle at 78% 22%, rgba(201, 162, 75, 0.16), transparent 38%),
    radial-gradient(circle at 12% 82%, rgba(26, 68, 124, 0.55), transparent 46%),
    linear-gradient(112deg, #061527 0%, #0a1f3d 52%, #12335f 100%);
  padding: 6rem 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 0h44M0 0v44'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 44px 44px;
}

.hero__inner { max-width: 760px; }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 5.5vw, 3.9rem);
}

.hero__lede {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #d7e0ec;
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Page hero (subpages) */
.page-hero {
  background-color: var(--navy-900);
  background-image:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 75, 0.14), transparent 40%),
    linear-gradient(112deg, #061527 0%, #0a1f3d 60%, #12335f 100%);
  color: var(--white);
  padding: 3.75rem 0;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero__lede {
  color: #d7e0ec;
  max-width: 680px;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-300); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.6; }
.breadcrumb .current { color: #c9d4e2; }

/* ---------- Grids & cards ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--gold-500);
  margin-bottom: 1.15rem;
}

.card__icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 0.65rem; }
.card p { color: var(--ink-soft); font-size: 0.96rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-700);
}
.card__link:hover { color: var(--gold-500); }

/* Feature / split layout */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-700);
  min-height: 260px;
}

.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Stat band */
.stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.stat__value {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9d4e2;
}

/* Industry classification list */
.nace-list {
  display: grid;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.nace-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2.1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.nace-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 75, 0.45);
  box-shadow: 0 20px 45px rgba(6, 21, 39, 0.4);
}

.nace-item__num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.45);
  background: rgba(201, 162, 75, 0.1);
  color: var(--gold-300);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.nace-item:hover .nace-item__num {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.nace-item__text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
}

@media (min-width: 900px) {
  .nace-list { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* ---------- Lists ---------- */
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--gold-400);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23061527' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 0.68rem;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Registry facts table ---------- */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fact-table tbody tr {
  border-bottom: 1px solid var(--line);
}
.fact-table tbody tr:last-child { border-bottom: none; }

.fact-table th,
.fact-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  vertical-align: top;
}

.fact-table th {
  width: 38%;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--cream);
  font-size: 0.9rem;
}

.fact-table td { color: var(--ink-soft); font-size: 0.95rem; }

.fact-table td small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------- Callout / notice ---------- */
.callout {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-left: 4px solid var(--gold-500);
  background: var(--cream);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.callout__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-500);
}

.callout p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 1.75rem;
  border-left: 2px solid var(--line);
  margin-top: 1rem;
}

.timeline__item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.06rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500);
}

.timeline__date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.35rem;
}

.timeline h3 { margin-bottom: 0.4rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card__photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: var(--cream-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.team-card__initials {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-600);
}

.team-card h3 { margin-bottom: 0.2rem; }
.team-card__role {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-block h3 { margin-bottom: 0.75rem; }

.contact-block address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.8;
}

.contact-block a { color: var(--navy-700); font-weight: 500; }
.contact-block a:hover { color: var(--gold-500); }

.form { display: grid; gap: 1.1rem; }

.form__row { display: grid; gap: 1.1rem; }

.form__field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(185, 138, 60, 0.15);
}

.form__field textarea { resize: vertical; min-height: 140px; }

.form__note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form__status {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}
.form__status--ok { display: block; background: #e8f4ec; color: var(--success); }
.form__status--err { display: block; background: #fbeae9; color: var(--error); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #b8c4d6;
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}

.site-footer a { color: #b8c4d6; }
.site-footer a:hover { color: var(--gold-300); }

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.site-footer__brand { max-width: 380px; }

.site-footer__brand .brand__name { color: var(--white); }

.site-footer__tagline {
  margin-top: 1rem;
  color: #aab7c9;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.site-footer__links li { margin-bottom: 0.55rem; }

.site-footer__address {
  font-style: normal;
  line-height: 1.9;
  color: #aab7c9;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8b9ab0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #7f8ea5;
}

/* ---------- Prose / legal content ---------- */
.prose {
  max-width: 800px;
}

.prose h2 {
  margin: 2.5rem 0 0.75rem;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin: 1.75rem 0 0.5rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.prose ul li {
  margin-bottom: 0.4rem;
}

.prose .updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

/* Tablet (≥ 640px) */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop (≥ 900px) */
@media (min-width: 900px) {
  :root { --gutter: 2rem; }
  .section { padding: 6rem 0; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 2.5rem; }
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .page-hero { padding: 4.75rem 0; }
  .hero { padding: 7.5rem 0; }
}

/* Large desktop (≥ 1180px) */
@media (min-width: 1180px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile navigation (≤ 899px) */
@media (max-width: 899px) {
  .nav__toggle { display: flex; }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem var(--gutter) 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--cream-dark);
    border-radius: 0;
  }

  .nav__cta { margin-left: 0; margin-top: 0.9rem; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
