:root {
  --wine: #4a1b24;
  --wine-deep: #2e1016;
  --wine-mid: #6e2a36;
  --brick: #8f3d34;
  --brick-light: #b85c4e;
  --gold: #c4a15a;
  --gold-dim: #9a7d3e;
  --cream: #f6f0e4;
  --paper: #efe6d3;
  --parchment: #e4d7be;
  --ink: #1c1614;
  --ink-soft: #3d342f;
  --muted: #6a5f56;
  --line: rgba(196, 161, 90, 0.45);
  --white: #fffaf3;
  --max: 72rem;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--wine-mid);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brick);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.crenel {
  height: 0.7rem;
  background:
    repeating-linear-gradient(
      90deg,
      var(--wine-deep) 0 1.15rem,
      transparent 1.15rem 1.7rem
    );
  background-color: var(--gold-dim);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wine-deep);
  color: var(--cream);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-place {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 0.4rem 0.7rem;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.15rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--wine-deep) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46, 16, 22, 0.15) 0%, rgba(46, 16, 22, 0.78) 72%),
    linear-gradient(90deg, rgba(46, 16, 22, 0.45), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 16ch;
}

.lede {
  font-size: 1.2rem;
  max-width: 42rem;
  color: var(--paper);
  margin: 1.1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.72rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--wine-deep);
}

.btn-gold:hover {
  background: var(--cream);
  color: var(--wine-deep);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--cream);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--wine-deep);
}

.btn-wine {
  background: var(--wine);
  color: var(--cream);
}

.btn-wine:hover {
  background: var(--wine-mid);
  color: var(--white);
}

.page-hero {
  background: var(--wine);
  color: var(--cream);
  padding: 3.2rem 1.25rem 2.6rem;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-hero .lede {
  color: var(--paper);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.2rem 1.25rem;
}

.narrow {
  max-width: 46rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--wine);
}

.gold-rule {
  width: 4.5rem;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0.9rem 0 1.3rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.stat {
  background: var(--wine);
  color: var(--cream);
  padding: 1.4rem 1rem;
  text-align: center;
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--parchment);
  padding: 1.4rem 1.3rem 1.5rem;
}

.card h2,
.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  margin: 0 0 0.55rem;
  color: var(--wine);
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose > :not(.figure):not(.split):not(.cost-options):not(.facts-table-wrap) {
  max-width: 46rem;
}

.prose h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--wine);
  margin: 2.4rem 0 0.7rem;
  scroll-margin-top: 5.5rem;
}

.prose h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: var(--wine-mid);
  margin: 1.8rem 0 0.5rem;
}

.prose .caption,
figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.45rem;
}

.figure {
  margin: 1.6rem 0 2rem;
}

.figure img {
  width: 100%;
  object-fit: cover;
}

.figure-wide {
  margin: 0;
  background: var(--wine-deep);
}

.figure-wide img {
  width: 100%;
  max-height: 34rem;
  object-fit: cover;
}

.figure-wide figcaption {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem 1.1rem;
  color: var(--parchment);
}

.figure-wide figcaption a {
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.post-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.post-list li {
  margin: 0 0 1.05rem;
  padding: 0 0 1.05rem;
  border-bottom: 1px solid var(--parchment);
}

.post-list time {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 700;
}

.post-list a {
  font-weight: 600;
}

.timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-left: 2px solid var(--gold);
}

.timeline li {
  position: relative;
  padding: 0 0 1.6rem 1.4rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 0.35rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--wine);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.timeline time {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 700;
}

.timeline strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: var(--wine);
}

.toc {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0 2rem;
}

.toc h2 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--wine);
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.toc a {
  text-decoration: none;
}

.quote {
  margin: 1.8rem 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 3px solid var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--wine);
}

.quote cite {
  display: block;
  margin-top: 0.55rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-grid a {
  display: block;
  background: var(--wine-deep);
  text-decoration: none;
  color: inherit;
}

.gallery-grid img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: opacity 0.25s var(--ease);
}

.gallery-grid a:hover img,
.gallery-grid a:focus img {
  opacity: 0.82;
}

.gallery-grid figcaption {
  padding: 0.55rem 0.7rem 0.8rem;
  color: var(--paper);
  background: var(--wine-deep);
}

.gallery-grid figcaption a {
  color: var(--gold);
}

.span-2 {
  grid-column: span 2;
}

.span-2 img {
  height: 22rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  background: rgba(28, 22, 20, 0.92);
  padding: 1.5rem;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 68rem);
  max-height: 78vh;
}

.lightbox p {
  color: var(--parchment);
  max-width: 50rem;
  margin: 0.8rem auto 0;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font: inherit;
}

.sources {
  font-size: 0.95rem;
}

.sources a {
  overflow-wrap: anywhere;
}

.campaign-band {
  background: var(--wine-deep);
  color: var(--cream);
}

.campaign-band .section-title {
  color: var(--cream);
}

.campaign-band .prose p,
.campaign-band p {
  color: var(--paper);
  max-width: 46rem;
}

.campaign-band img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
}

.facts-table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0 2rem;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.98rem;
}

.facts-table caption {
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--wine);
  margin-bottom: 0.7rem;
}

.facts-table th,
.facts-table td {
  border-bottom: 1px solid var(--parchment);
  padding: 0.65rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.facts-table th {
  width: 32%;
  color: var(--wine);
  font-weight: 700;
  background: var(--paper);
}

.cost-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1.2rem 0 1.6rem;
}

.cost-options article {
  background: var(--white);
  border: 1px solid var(--parchment);
  padding: 1.1rem 1rem;
}

.cost-options h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
  color: var(--wine);
}

.cost-options p {
  margin: 0;
  color: var(--ink-soft);
}

.cost-options .price {
  display: block;
  margin-top: 0.55rem;
  font-weight: 700;
  color: var(--wine-mid);
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--parchment);
  padding: 1.6rem;
}

.contact-panel address {
  font-style: normal;
}

.site-footer {
  background: var(--wine-deep);
  color: var(--parchment);
  padding: 2.4rem 1.25rem 1.4rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.6rem;
}

.site-footer h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.site-footer a {
  color: var(--cream);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.disclaimer {
  max-width: var(--max);
  margin: 1.6rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(196, 161, 90, 0.25);
  font-size: 0.85rem;
  color: #cbbba8;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 110;
    background: var(--wine);
    padding: 0.6rem 1.25rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stats,
  .cards,
  .split,
  .gallery-grid,
  .footer-inner,
  .cost-options {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .span-2 img,
  .gallery-grid img {
    height: 14rem;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .gallery-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .span-2 {
    grid-column: span 2;
  }
}
