:root {
  --forest-950: #0d2921;
  --forest-900: #15382d;
  --forest-800: #1d4a3b;
  --forest-100: #dce8df;
  --ink: #1f2924;
  --muted: #68736c;
  --ivory: #f6f2e9;
  --paper: #fcfaf5;
  --sand: #e9e1d1;
  --brass: #b98d4d;
  --brass-ink: #8a632d;
  --brass-light: #d8b879;
  --terracotta: #a76047;
  --white: #fffdf8;
  --line: rgba(21, 56, 45, 0.14);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow-sm: 0 8px 28px rgba(13, 41, 33, 0.07);
  --shadow-lg: 0 28px 80px rgba(13, 41, 33, 0.16);
  --radius-sm: 12px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 4vw, 52px);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

ul {
  list-style: none;
}

svg {
  display: block;
}

.skip-link {
  background: var(--brass);
  color: var(--forest-950);
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 2000;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: clamp(78px, 10vw, 132px) 0;
  position: relative;
}

.section-muted {
  background: var(--ivory);
}

.section-dark {
  background: var(--forest-900);
  color: var(--white);
  overflow: hidden;
}

.section-dark::before {
  border: 1px solid rgba(216, 184, 121, 0.14);
  border-radius: 50%;
  content: "";
  height: 480px;
  position: absolute;
  right: -220px;
  top: -260px;
  width: 480px;
}

.section-dark::after {
  background: repeating-linear-gradient(135deg, rgba(216, 184, 121, 0.05) 0 1px, transparent 1px 28px);
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  align-items: center;
  color: var(--brass-ink);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 28px;
}

.section-heading h1,
.section-heading h2 {
  color: var(--forest-900);
  font-family: "Newsreader", serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-top: 18px;
}

.section-heading h2 {
  font-size: clamp(40px, 6vw, 70px);
}

.section-heading h1 em,
.section-heading h2 em {
  color: var(--brass-ink);
  font-style: italic;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 16px;
  margin-top: 22px;
  max-width: 610px;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-dark .eyebrow {
  color: var(--brass-light);
}

.section-dark .section-heading h1,
.section-dark .section-heading h2 {
  color: var(--white);
}

.section-dark .section-heading h1 em,
.section-dark .section-heading h2 em {
  color: var(--brass-light);
}

.section-dark .section-heading p {
  color: rgba(255, 253, 248, 0.7);
}

.btn {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 50px;
  padding: 13px 22px;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brass);
  box-shadow: 0 12px 28px rgba(185, 141, 77, 0.23);
  color: var(--forest-950);
}

.btn-primary:hover {
  background: var(--brass-light);
  box-shadow: 0 16px 34px rgba(185, 141, 77, 0.3);
  transform: translateY(-2px);
}

.btn-quiet {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--forest-900);
}

.btn-quiet:hover {
  border-color: var(--brass-ink);
  color: var(--brass-ink);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--forest-900);
}

.btn-light:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
}

.text-link {
  align-items: center;
  color: var(--forest-900);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--brass-ink);
  font-size: 18px;
  line-height: 0;
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-dark .text-link {
  color: var(--white);
}

.section-dark .text-link span {
  color: var(--brass-light);
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.site-header {
  color: var(--white);
  left: 0;
  padding: 18px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 250ms var(--ease), box-shadow 250ms var(--ease), color 250ms var(--ease), padding 250ms var(--ease);
  z-index: 1000;
}

.site-header.is-scrolled {
  background: rgba(252, 250, 245, 0.94);
  box-shadow: 0 5px 25px rgba(13, 41, 33, 0.08);
  color: var(--forest-900);
  padding: 11px 0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.nav-open {
  background: var(--forest-900);
  color: var(--white);
}

.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Newsreader", serif;
  font-size: 24px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1101;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  display: inline-flex;
  font-family: "Newsreader", serif;
  font-size: 19px;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  width: 34px;
}

.brand-name span {
  color: var(--brass);
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 27px;
}

.nav-menu a:not(.nav-cta) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.82;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-menu a:not(.nav-cta)::after {
  background: var(--brass);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
  width: 100%;
}

 .nav-menu a:not(.nav-cta):hover,
 .nav-menu a:not(.nav-cta).is-current {
  color: var(--brass-ink);
  opacity: 1;
}

 .nav-menu:not(.is-open) a:not(.nav-cta).is-current {
  color: inherit;
}

 .nav-menu a:not(.nav-cta):hover::after,
 .nav-menu a:not(.nav-cta).is-current::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--brass);
  border-radius: 999px;
  color: var(--forest-950);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 17px;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 1101;
}

.menu-toggle span {
  background: currentColor;
  height: 1px;
  transition: transform 220ms var(--ease), opacity 220ms ease;
  width: 23px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-scrim {
  background: rgba(13, 41, 33, 0.56);
  border: 0;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease, visibility 220ms ease;
  visibility: hidden;
  z-index: 1050;
}

body.nav-open .nav-scrim {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.page-hero {
  background: var(--forest-950);
  color: var(--white);
  overflow: hidden;
  padding: 150px 0 84px;
  position: relative;
}

.page-hero::before {
  background: radial-gradient(circle, rgba(185, 141, 77, 0.2), transparent 67%);
  content: "";
  height: 520px;
  position: absolute;
  right: -220px;
  top: -210px;
  width: 520px;
}

.page-hero::after {
  background: repeating-linear-gradient(135deg, rgba(216, 184, 121, 0.05) 0 1px, transparent 1px 30px);
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.page-hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--brass-light);
}

.page-hero h1 {
  color: var(--white);
  font-family: "Newsreader", serif;
  font-size: clamp(54px, 11vw, 100px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-top: 25px;
  max-width: 850px;
}

.page-hero h1 em {
  color: var(--brass-light);
  font-style: italic;
}

.page-hero p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  margin-top: 26px;
  max-width: 570px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.image-slot {
  background-color: #536a5b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.image-slot-meta {
  bottom: 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  left: 20px;
  position: absolute;
  z-index: 1;
}

.image-slot-meta strong {
  font-family: "Newsreader", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.image-slot-meta small {
  color: rgba(255, 253, 248, 0.6);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-caption {
  bottom: 19px;
  color: var(--white);
  left: 19px;
  position: absolute;
  z-index: 1;
}

.gallery-caption strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.gallery-caption small {
  color: rgba(255, 253, 248, 0.62);
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 12px;
  margin-top: 45px;
}

.numbered-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 23px 20px;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.numbered-card:hover {
  border-color: rgba(185, 141, 77, 0.7);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.numbered-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.numbered-card-icon {
  align-items: center;
  background: var(--forest-900);
  border-radius: 10px;
  color: var(--brass-light);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.numbered-card-index {
  color: var(--brass-ink);
  font-family: "Newsreader", serif;
  font-size: 19px;
}

.numbered-card h3 {
  color: var(--forest-900);
  font-family: "Newsreader", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-top: 25px;
}

.numbered-card p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 9px;
}

.split-layout {
  display: grid;
  gap: 42px;
}

.split-copy > p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 27px;
}

.feature-list,
.detail-list,
.contact-facts {
  border-top: 1px solid var(--line);
  margin-top: 32px;
}

.feature-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 17px 0;
}

.feature-icon {
  align-items: center;
  background: var(--forest-100);
  border-radius: 50%;
  color: var(--forest-900);
  display: inline-flex;
  flex: 0 0 auto;
  height: 30px;
  justify-content: center;
  margin-top: 1px;
  width: 30px;
}

.feature-item h3 {
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 700;
}

.feature-item p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.quote-card {
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  color: var(--white);
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.quote-card::before {
  color: var(--brass);
  content: "“";
  font-family: "Newsreader", serif;
  font-size: 140px;
  left: 20px;
  line-height: 0.8;
  opacity: 0.55;
  position: absolute;
  top: 26px;
}

.quote-card p {
  font-family: "Newsreader", serif;
  font-size: 32px;
  line-height: 1.05;
  margin-top: 74px;
  max-width: 390px;
  position: relative;
}

.quote-card small {
  bottom: 27px;
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
}

.story-stat {
  align-items: center;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 21px 24px;
}

.story-stat strong {
  color: var(--forest-900);
  font-family: "Newsreader", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.story-stat span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  max-width: 150px;
  text-align: right;
  text-transform: uppercase;
}

.occasion-list {
  display: grid;
  gap: 10px;
  margin-top: 45px;
}

.occasion-item {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  gap: 15px;
  padding: 17px 0;
}

.occasion-item-index {
  color: var(--brass-light);
  font-family: "Newsreader", serif;
  font-size: 18px;
  min-width: 27px;
}

.occasion-item h3 {
  font-family: "Newsreader", serif;
  font-size: 25px;
  font-weight: 500;
}

.occasion-item p {
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
  margin-left: auto;
  text-align: right;
}

.detail-list div,
.contact-fact {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
}

.detail-list dt,
.contact-fact dt {
  color: var(--muted);
  font-size: 13px;
}

.detail-list dd {
  color: var(--forest-900);
  font-family: "Newsreader", serif;
  font-size: 24px;
}

.capacity-card {
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  color: var(--white);
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.capacity-card::before {
  border: 1px solid rgba(216, 184, 121, 0.24);
  border-radius: 50%;
  content: "";
  height: 310px;
  position: absolute;
  right: -150px;
  top: -150px;
  width: 310px;
}

.capacity-card > * {
  position: relative;
  z-index: 1;
}

.capacity-card .eyebrow {
  color: var(--brass-light);
}

.capacity-number {
  color: var(--brass-light);
  font-family: "Newsreader", serif;
  font-size: clamp(90px, 21vw, 180px);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.8;
  margin-top: 62px;
}

.capacity-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-top: 20px;
  text-transform: uppercase;
}

.capacity-note {
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
  margin-top: 30px;
  padding-top: 17px;
}

.contact-section {
  background: var(--sand);
}

.contact-layout {
  display: grid;
  gap: 36px;
}

.contact-copy > p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 23px;
  max-width: 530px;
}

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(21, 56, 45, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.contact-card h2,
.contact-card h3 {
  color: var(--forest-900);
  font-family: "Newsreader", serif;
  font-size: 30px;
  font-weight: 500;
}

.contact-card > p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 7px;
}

.contact-number {
  color: var(--forest-900) !important;
  font-size: 14px !important;
  margin-top: 17px !important;
}

.contact-number a {
  color: var(--brass-ink);
  font-weight: 700;
}

.contact-facts {
  margin: 24px 0;
}

.contact-fact {
  display: block;
  padding: 13px 0;
}

.contact-fact dt {
  color: var(--brass-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-fact dd {
  color: var(--forest-900);
  font-size: 14px;
  margin-top: 2px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-card .btn {
  width: 100%;
}

.footer {
  background: var(--forest-950);
  color: rgba(255, 253, 248, 0.62);
  padding: 45px 0 24px;
}

.footer-main {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-brand p {
  font-size: 13px;
  margin-top: 14px;
  max-width: 310px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 21px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  gap: 7px;
  margin-top: 36px;
  padding-top: 18px;
}

.footer-bottom a {
  color: var(--brass-light);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 899px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 10px 14px;
    justify-content: flex-end;
  }

  .js .nav-menu {
    align-items: flex-start;
    background: var(--forest-900);
    box-shadow: -20px 0 60px rgba(13, 41, 33, 0.2);
    flex-direction: column;
    gap: 27px;
    height: 100dvh;
    justify-content: center;
    overflow-y: auto;
    padding: calc(90px + env(safe-area-inset-top)) 32px calc(40px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 350ms var(--ease);
    width: min(86vw, 360px);
    z-index: 1100;
  }

  .js .nav-menu.is-open {
    transform: translateX(0);
  }

  .js .nav-menu a:not(.nav-cta) {
    font-family: "Newsreader", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.02em;
    opacity: 1;
    text-transform: none;
  }

  .js .nav-menu a:not(.nav-cta)::after,
  .js .nav-menu a:not(.nav-cta).is-current::after {
    display: none;
  }

  .js .nav-menu a:not(.nav-cta).is-current {
    color: var(--brass-light);
  }

  .nav-cta {
    margin-top: 10px;
    padding: 14px 21px;
  }
}

@media (max-width: 639px) {
  .preview-head,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-head .text-link {
    margin-top: 2px;
  }

  .cta-band .btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .occasion-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}

@media (min-width: 900px) {
  .menu-toggle,
  .nav-scrim {
    display: none;
  }

  .split-layout {
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    gap: clamp(70px, 9vw, 140px);
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .occasion-list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 45px;
  }

  .occasion-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 23px 0;
  }

  .occasion-item p {
    margin-left: 0;
    text-align: left;
  }

  .detail-list div {
    padding: 19px 0;
  }

  .contact-layout {
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: clamp(70px, 10vw, 150px);
  }

  .contact-card {
    padding: 34px;
  }

  .footer-main,
  .footer-bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
