@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #103f2e;
  --forest-deep: #092f22;
  --fern: #42765b;
  --sage: #dce8dc;
  --sage-soft: #edf3ea;
  --ivory: #f8f5ed;
  --paper: #fffdf8;
  --gold: #bd9138;
  --gold-soft: #e9d6a2;
  --ink: #17231d;
  --muted: #617066;
  --line: rgba(16, 63, 46, 0.16);
  --shadow: 0 24px 70px rgba(20, 48, 36, 0.13);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--paper);
  background: var(--forest);
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.7vw, 7.7rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.23rem;
  line-height: 1.35;
}

p {
  color: var(--muted);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 150px);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--forest-deep);
  background: var(--gold);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.button--small {
  min-height: 46px;
  padding: 12px 20px;
}

.button--light {
  color: var(--forest-deep);
  background: var(--paper);
  border-color: var(--paper);
}

.button--light:hover {
  color: var(--forest-deep);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button--outline {
  color: var(--forest-deep);
  background: transparent;
  border-color: var(--forest);
}

.button--outline:hover {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

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

.section-heading--row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 60px;
}

.section-heading--row h2,
.section-heading--row p {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset: 12px auto auto 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--forest-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

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