:root {
  --cream: #f3ecdf;
  --paper: #faf6ef;
  --ink: #172c28;
  --green: #173e35;
  --sage: #98a78d;
  --terracotta: #c66e4e;
  --line: rgba(23, 44, 40, 0.2);
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.6rem 1rem;
  background: var(--paper);
  transform: translateY(-200%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: #fff;
  transition: background 250ms, color 250ms, height 250ms;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 72px;
  color: var(--ink);
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-name i,
.footer-brand i {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.35em;
  font-weight: 500;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 9vw 6rem;
  color: #fff;
  overflow: hidden;
  background: var(--green);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-landscape.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  animation: settle 1.6s ease-out forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 34, 29, 0.93) 0%, rgba(9, 34, 29, 0.65) 42%, rgba(9, 34, 29, 0.05) 75%),
    linear-gradient(0deg, rgba(9, 34, 29, 0.42), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 60vw);
}

.eyebrow,
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--terracotta);
}

h1,
h2,
.lead,
blockquote {
  margin: 0;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.5rem, 7.7vw, 7.7rem);
}

h1 em,
h2 em {
  color: #dc977a;
  font-family: var(--serif);
  font-weight: 500;
}

.hero-intro {
  max-width: 550px;
  margin: 2.25rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-link span {
  transition: transform 200ms;
}

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

.hero-note {
  position: absolute;
  z-index: 1;
  right: 5vw;
  bottom: 3rem;
  margin: 0;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) 9vw;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
  background: var(--cream);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.section-label span {
  color: var(--terracotta);
}

.section-label p {
  margin: 0;
}

.intro-copy {
  max-width: 1000px;
}

.lead {
  font-size: clamp(2.5rem, 5.1vw, 5.4rem);
}

.body-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  max-width: 750px;
  margin: 4rem 0 0 auto;
  color: rgba(23, 44, 40, 0.72);
}

.body-copy p {
  margin: 0;
}

.moments {
  color: #fff;
  background: var(--green);
}

.moments-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 5rem;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.7);
}

h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.moment-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.moment-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 250ms;
}

.moment-card:last-child {
  border-right: 0;
}

.moment-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.moment-number,
.moment-type {
  color: #d69175;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.moment-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 500;
}

.moment-card p:last-child {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.quote {
  text-align: center;
  background: var(--paper);
}

blockquote {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.4vw, 6.3rem);
  font-style: italic;
}

.quote > p {
  margin: 2.5rem 0 0;
  color: rgba(23, 44, 40, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
  background: #e1c7ad;
}

.contact-copy p {
  margin: 2rem 0 2.5rem;
}

.social-links {
  width: min(100%, 680px);
  border-top: 1px solid rgba(23, 44, 40, 0.35);
}

.social-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(23, 44, 40, 0.35);
  text-decoration: none;
  transition: padding 200ms, color 200ms;
}

.social-profile > span:first-child {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.social-profile strong {
  min-width: 3rem;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.social-profile > span:last-child {
  font-size: 1.2rem;
  transition: transform 200ms;
}

.social-profile:hover {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #8f3f2c;
}

.social-profile:hover > span:last-child {
  transform: translate(3px, -3px);
}

footer {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 5vw;
  color: rgba(255, 255, 255, 0.7);
  background: #102d27;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

footer a {
  text-decoration: none;
}

.footer-brand {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

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

@keyframes settle {
  to { transform: scale(1); }
}

@media (max-width: 800px) {
  .site-header {
    height: 72px;
    padding: 0 1.25rem;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: block;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
  }

  .menu-button span:not(.sr-only) {
    position: absolute;
    right: 5px;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms, top 200ms;
  }

  .menu-button span:nth-child(2) { top: 17px; }
  .menu-button span:nth-child(3) { top: 25px; }
  .menu-open .menu-button span:nth-child(2) { top: 21px; transform: rotate(45deg); }
  .menu-open .menu-button span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 71px 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem 2rem;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
    padding: 8rem 1.5rem 6rem;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(9, 34, 29, 0.95) 5%, rgba(9, 34, 29, 0.55) 65%, rgba(9, 34, 29, 0.2));
  }

  .hero-content {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 5.5rem 1.5rem;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .body-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .moments-heading {
    display: block;
  }

  .moments-heading h2 {
    margin-top: 3rem;
  }

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

  .moment-card {
    min-height: 290px;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  footer {
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
