:root {
  --ink: #17211c;
  --muted: #5d6a63;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --line: rgba(23, 33, 28, 0.16);
  --moss: #4e6b54;
  --clay: #a85d3f;
  --gold: #d1a14a;
  --white: #ffffff;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.93);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle {
  flex-direction: column;
  gap: 4px;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(78, 107, 84, 0.12);
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 25, 18, 0.76), rgba(13, 25, 18, 0.38) 48%, rgba(13, 25, 18, 0.1)),
    linear-gradient(0deg, rgba(13, 25, 18, 0.58), rgba(13, 25, 18, 0.08) 44%);
}

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

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3.4rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 610px;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #8f4a34;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(78, 107, 84, 0.12);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.alt {
  background: var(--paper-strong);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.media-block {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
}

.media-block img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.text-flow {
  display: grid;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-flow strong {
  color: var(--ink);
}

.rule-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.rule-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.rule-item span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.rule-item p {
  color: var(--muted);
}

.wide-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.statement {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.18;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.story-item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--paper);
}

.story-item span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-item p {
  color: var(--muted);
}

.quote-band {
  background: var(--moss);
  color: var(--white);
}

.quote-band blockquote {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.6vw, 4.4rem);
  line-height: 1.08;
}

.quote-band cite {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.timeline {
  display: grid;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.3rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.timeline-row p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 0.78rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  min-height: 1.6rem;
  color: var(--clay);
  font-size: 0.94rem;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 840px) {
  :root {
    --header: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.8rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 243, 234, 0.98);
    transform: translateY(-120%);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 4px;
    font-size: 1.05rem;
  }

  .hero {
    min-height: calc(92svh - var(--header));
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 25, 18, 0.78), rgba(13, 25, 18, 0.42)),
      linear-gradient(0deg, rgba(13, 25, 18, 0.62), rgba(13, 25, 18, 0.08));
  }

  .two-col,
  .two-col.reverse,
  .wide-statement,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .media-block,
  .media-block img {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .wrap,
  .hero-content {
    width: min(100% - 24px, 1160px);
  }

  .brand strong {
    font-size: 1.38rem;
  }

  .brand span {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .rule-item {
    grid-template-columns: 1fr;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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