:root {
  --ink: #1a1f2e;
  --ink-soft: #2d3347;
  --parchment: #f8f6f1;
  --gold: #c8993e;
  --gold-pale: #e8d5a3;
  --sage: #6b8f71;
  --rust: #b35a3a;
  --mist: #e9e5dc;
  --slate: #6e7181;
  --off-white: #fdfcf9;
  --rule: #d5d0c5;
  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-text: 'Manrope', 'Helvetica Neue', sans-serif;
  --col-max: 1080px;
  --sp: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--ff-text);
  background: var(--parchment);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rust); }

/* ── TOP BAR ── */
.topbar {
  background: var(--ink);
  color: var(--parchment);
  font-size: .72rem;
  letter-spacing: .05em;
  text-align: center;
  padding: .45rem 1rem;
}

/* ── SITE NAV ── */
.site-nav {
  background: var(--off-white);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 90;
}
.site-nav__wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: .65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand em { font-style: normal; color: var(--gold); }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger svg { width: 24px; height: 24px; stroke: var(--ink); }

.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a {
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

@media (max-width: 740px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: .6rem;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--off-white);
    padding: 1rem 1.25rem;
    border-bottom: 2px solid var(--ink);
  }
  .nav-links.show { display: flex; }
}

/* ── COVER ── */
.cover {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
}
.cover__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
.cover__body {
  position: relative;
  z-index: 2;
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  color: var(--parchment);
}
.cover__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.cover h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  max-width: 640px;
}
.cover__sub {
  margin-top: .8rem;
  max-width: 480px;
  opacity: .85;
  font-size: .95rem;
}

/* ── SECTION SHELLS ── */
.col-wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.bg-mist { background: var(--mist); }
.bg-ink { background: var(--ink); color: var(--parchment); }
.bg-ink a { color: var(--gold-pale); }

.sec-head {
  margin-bottom: 2rem;
}
.sec-head__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.sec-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.sec-head p { color: var(--slate); margin-top: .3rem; max-width: 540px; }

/* ── MOSAIC GRID (3-col asymmetric) ── */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp);
}
.mosaic__tile {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--rule);
}
.mosaic__tile--wide { grid-column: span 2; }
.mosaic__tile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.mosaic__tile--wide img { aspect-ratio: 2/1; }
.mosaic__cap {
  padding: 1rem 1.15rem;
}
.mosaic__cap h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  margin-bottom: .25rem;
}
.mosaic__cap p { font-size: .85rem; color: var(--slate); }
.mosaic__cap a {
  display: inline-block;
  margin-top: .5rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rust);
}
.mosaic__cap a::after { content: ' ›'; }

@media (max-width: 640px) {
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__tile--wide { grid-column: span 1; }
}

/* ── SPLIT (text + image side-by-side) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.split--reverse img { order: -1; }
.split img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin-bottom: .4rem;
}
.split h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  margin: 1.2rem 0 .3rem;
}
.split p { color: var(--slate); margin-bottom: .5rem; }

@media (max-width: 640px) {
  .split { grid-template-columns: 1fr; gap: 1.25rem; }
  .split--reverse img { order: 0; }
}

/* ── ITEMS LIST (horizontal scroll on mobile) ── */
.hscroll-row {
  display: flex;
  gap: var(--sp);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}
.hscroll-row::-webkit-scrollbar { height: 4px; }
.hscroll-row::-webkit-scrollbar-thumb { background: var(--rule); }
.h-card {
  flex: 0 0 260px;
  background: var(--off-white);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.h-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.h-card__body { padding: 1rem; }
.h-card__body h3 { font-family: var(--ff-display); font-size: 1rem; margin-bottom: .2rem; }
.h-card__body p { font-size: .83rem; color: var(--slate); }

/* ── ACCORDION (pure CSS) ── */
.accordion { border-top: 1px solid var(--rule); }
.acc-item { border-bottom: 1px solid var(--rule); }
.acc-item summary {
  padding: .85rem 0;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform .2s; }
.acc-item[open] summary::after { content: '−'; }
.acc-item .acc-body { padding: 0 0 1rem; color: var(--slate); font-size: .9rem; }

/* ── INLINE TABLE ── */
.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin: 1rem 0;
}
.ref-table th, .ref-table td {
  padding: .55rem .7rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.ref-table th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate);
  background: var(--mist);
}

/* ── CONTACT PANEL ── */
.contact-panel {
  max-width: 520px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--rule);
  padding: 2rem;
}
.contact-panel label {
  display: block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
  margin-bottom: .2rem;
}
.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  padding: .55rem .7rem;
  border: 1px solid var(--rule);
  background: var(--parchment);
  font-family: var(--ff-text);
  font-size: .9rem;
  margin-bottom: .9rem;
  color: var(--ink);
}
.contact-panel textarea { min-height: 100px; resize: vertical; }
.primary-btn {
  background: var(--ink);
  color: var(--parchment);
  padding: .6rem 2rem;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.primary-btn:hover { background: var(--gold); color: var(--ink); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: var(--slate);
  font-size: .82rem;
}
.footer-grid {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer h5 {
  font-family: var(--ff-display);
  color: var(--parchment);
  font-size: .95rem;
  margin-bottom: .5rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .3rem; }
.site-footer a { color: var(--slate); }
.site-footer a:hover { color: var(--gold-pale); }
.footer-rule {
  max-width: var(--col-max);
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-copy {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: .72rem;
  color: var(--slate);
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ARTICLE (inner pages) ── */
.page-banner {
  background: var(--ink);
  color: var(--parchment);
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}
.page-banner p { color: var(--slate); margin-top: .3rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.crumb {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: .6rem 1.25rem;
  font-size: .75rem;
  color: var(--slate);
}
.crumb a { color: var(--gold); }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.article-body h2 { font-family: var(--ff-display); font-size: 1.35rem; margin: 2rem 0 .4rem; }
.article-body h3 { font-family: var(--ff-display); font-size: 1.1rem; margin: 1.4rem 0 .3rem; }
.article-body p { margin-bottom: .9rem; }
.article-body ul, .article-body ol { margin: .4rem 0 1rem 1.15rem; }
.article-body li { margin-bottom: .25rem; color: var(--slate); }
.article-body img { margin: 1.5rem 0; width: 100%; }

/* ── CALLOUT BOX ── */
.callout {
  border-left: 3px solid var(--gold);
  background: var(--mist);
  padding: .9rem 1.15rem;
  margin: 1.5rem 0;
  font-size: .88rem;
  color: var(--ink-soft);
}

/* ── NOTICE ── */
.notice {
  background: var(--mist);
  border: 1px solid var(--rule);
  padding: .9rem 1.15rem;
  font-size: .8rem;
  color: var(--slate);
  margin: 2rem 0;
  line-height: 1.6;
}

/* ── PILL TAG ── */
.pill {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  padding: 2rem 1.25rem;
}
.cta-band h2 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: .3rem; }
.cta-band p { max-width: 480px; margin: 0 auto .8rem; font-size: .9rem; }
.cta-band .primary-btn { background: var(--ink); color: var(--parchment); }
.cta-band .primary-btn:hover { background: var(--ink-soft); }
