:root {
  --navy: #0E1826;
  --light: #F4F1EA;
  --gold: #B99257;
  --ink: #1C2532;
  --muted: #5C6470;
  --gold-rule: rgba(185, 146, 87, 0.45);
  --serif: 'Marcellus', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--light);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.top-rule {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 80;
}

.diamond {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.wrap--narrow {
  max-width: 680px;
}

.section {
  padding: 6.5rem 1.5rem;
}

.section--compact {
  padding: 4.5rem 1.5rem;
}

.center {
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.eyebrow--left {
  justify-content: flex-start;
}

.eyebrow--left::after {
  display: none;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.25;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-head h2 {
  font-size: 2.3rem;
  margin-top: 1.2rem;
}

.section-head .lead {
  color: var(--muted);
  margin-top: 1.1rem;
  max-width: 620px;
}

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

.site-header {
  padding: 3.2rem 1.5rem 0;
  text-align: center;
}

.site-header .diamond {
  margin: 0 auto 1.4rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.95rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: inline-block;
}

.tagline {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  margin: 1.6rem auto 0;
  background: none;
  border: 1px solid var(--gold-rule);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 0.65rem 1.6rem;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.site-nav {
  margin-top: 2rem;
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  padding: 1.05rem 1rem;
}

.site-nav a {
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 9rem 1.5rem;
  overflow: hidden;
  text-align: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 38, 0.74);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero h1 {
  color: var(--light);
  font-size: 3.4rem;
  margin-top: 1.6rem;
}

.hero p {
  color: rgba(244, 241, 234, 0.82);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1.6rem auto 2.6rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 1.05rem 2.6rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--solid {
  background: var(--gold);
  color: var(--navy);
}

.btn--solid:hover {
  background: transparent;
  color: var(--gold);
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 1.5rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy strong {
  color: var(--ink);
  font-weight: 500;
}

.focus-row {
  display: grid;
  grid-template-columns: 90px 320px 1fr;
  gap: 2rem;
  align-items: baseline;
  border-top: 1px solid var(--gold-rule);
  padding: 2.6rem 0;
}

.focus-row:last-of-type {
  border-bottom: 1px solid var(--gold-rule);
}

.focus-num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.focus-row h3 {
  font-size: 1.55rem;
}

.focus-row p {
  color: var(--muted);
  font-size: 0.98rem;
}

.stats {
  background: var(--navy);
  padding: 5rem 1.5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 2.8rem;
  line-height: 1.1;
}

.stat-label {
  margin-top: 0.7rem;
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 1rem;
}

.framed {
  position: relative;
  margin: 16px;
}

.framed img {
  width: 100%;
}

.framed::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

figcaption {
  margin-top: 2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.split__text h2 {
  font-size: 2.2rem;
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.split__text p {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.split__text p:last-of-type {
  margin-bottom: 0;
}

.stagger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.stagger .push {
  margin-top: 5.5rem;
}

.quote-band {
  background: var(--navy);
  padding: 7rem 1.5rem;
  text-align: center;
}

.quote-band blockquote {
  max-width: 760px;
  margin: 0 auto;
}

.quote-band p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--light);
  font-size: 2rem;
  line-height: 1.5;
}

.quote-band cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.page-hero {
  background: var(--navy);
  padding: 6rem 1.5rem 5.5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--light);
  font-size: 2.9rem;
  margin-top: 1.5rem;
}

.page-hero p {
  color: rgba(244, 241, 234, 0.75);
  max-width: 560px;
  margin: 1.3rem auto 0;
}

.prose h2 {
  font-size: 1.7rem;
  margin: 2.6rem 0 1rem;
}

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

.prose p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.prose ul {
  list-style: none;
  margin: 0 0 1.4rem;
}

.prose ul li {
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.55rem;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.prose .updated {
  color: var(--gold);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 2rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1.8rem;
  font-size: 0.92rem;
}

.policy-table th,
.policy-table td {
  border: 1px solid var(--gold-rule);
  padding: 0.8rem 1rem;
  text-align: left;
  vertical-align: top;
  color: var(--muted);
}

.policy-table th {
  color: var(--ink);
  font-weight: 500;
  background: rgba(185, 146, 87, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-details h2,
.form-block h2 {
  font-size: 1.9rem;
  margin-bottom: 1.6rem;
}

.contact-line {
  margin-bottom: 1.6rem;
}

.contact-line .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-line p,
.contact-line a {
  color: var(--muted);
}

.contact-line a:hover {
  color: var(--gold);
}

.form-field {
  margin-bottom: 1.4rem;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gold-rule);
  background: #FBFAF7;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.2rem 0 1.8rem;
  font-style: italic;
}

.map-embed {
  width: 100%;
  border: 0;
  min-height: 360px;
  display: block;
  filter: grayscale(0.35);
}

.site-footer {
  background: var(--navy);
  padding: 5.5rem 1.5rem 3rem;
  text-align: center;
}

.site-footer .diamond {
  margin: 0 auto 1.6rem;
}

.footer-name {
  font-family: var(--serif);
  color: var(--light);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2rem;
}

.footer-nav a {
  color: rgba(244, 241, 234, 0.8);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-contact {
  margin-top: 2.4rem;
  color: rgba(244, 241, 234, 0.6);
  font-size: 0.92rem;
  line-height: 2;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-policies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(185, 146, 87, 0.3);
}

.footer-policies a {
  color: rgba(244, 241, 234, 0.55);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer-policies a:hover {
  color: var(--gold);
}

.fine-print {
  margin-top: 2rem;
  color: rgba(244, 241, 234, 0.38);
  font-size: 0.78rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-top: 1px solid var(--gold);
  padding: 1.4rem 1.5rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner p {
  color: rgba(244, 241, 234, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.9rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.75rem 1.7rem;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: background 0.25s ease, color 0.25s ease;
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--navy);
}

.cookie-btn--accept:hover {
  background: transparent;
  color: var(--gold);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--gold);
}

.cookie-btn--decline:hover {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 960px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 4.5rem 1.25rem;
  }

  .focus-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 2rem 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .spread {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .stagger {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .stagger .push {
    margin-top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    border-bottom: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .site-nav li {
    border-bottom: 1px solid var(--gold-rule);
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0.5rem;
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 520px;
    padding: 6.5rem 1.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .quote-band p {
    font-size: 1.45rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
