:root {
  --background: #f7f7f3;
  --foreground: #1f2421;
  --ink-soft: #4f5752;
  --maroon: #7a1f2a;
  --green: #0f5f57;
  --gold: #c9892a;
  --paper: #fffdf8;
  --line: #ddd7ca;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-nav {
  align-items: center;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  display: flex;
  gap: clamp(16px, 4vw, 36px);
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-nav a {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--maroon);
}

.hero {
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgb(18 21 18 / 0.82), rgb(18 21 18 / 0.35)),
    url("media/photo-10.jpeg") center / cover;
  color: white;
  display: flex;
  min-height: 78svh;
  padding: clamp(40px, 7vw, 88px);
}

.hero-copy {
  max-width: 760px;
  padding-bottom: clamp(10px, 4vw, 40px);
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  margin: 0;
}

.hero-line {
  color: rgb(255 255 255 / 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.35;
  margin: clamp(18px, 3vw, 32px) 0 0;
  max-width: 720px;
}

.intro-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(42px, 7vw, 78px) 24px;
}

.intro-inner,
.section-heading,
.blessing > div {
  margin: 0 auto;
  max-width: 980px;
}

.intro-inner h2,
.section-heading h2,
.blessing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  margin: 0;
}

.intro-inner p:last-child {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  margin: 22px 0 0;
  max-width: 720px;
}

.media-section {
  padding: clamp(46px, 7vw, 86px) 24px;
}

.media-section:nth-of-type(odd) {
  background: #eef5f1;
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.video-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.video-card,
.photo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.video-card video {
  aspect-ratio: 16 / 9;
  background: #151816;
  height: auto;
  width: 100%;
}

figcaption {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
  padding: 13px 14px 14px;
}

.photo-wall {
  background: #f8f5ef;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.photo-card img {
  aspect-ratio: 4 / 3;
  background: #e8e1d6;
  object-fit: cover;
  width: 100%;
}

.photo-card:nth-child(1),
.photo-card:nth-child(2),
.photo-card:nth-child(3) {
  grid-column: span 2;
}

.photo-card:nth-child(1) img,
.photo-card:nth-child(2) img,
.photo-card:nth-child(3) img {
  aspect-ratio: 16 / 10;
}

.blessing {
  background:
    linear-gradient(rgb(14 50 46 / 0.88), rgb(14 50 46 / 0.88)),
    url("media/photo-05.jpeg") center / cover;
  color: white;
  padding: clamp(56px, 9vw, 112px) 24px;
}

.blessing .section-kicker {
  color: #f2bd5c;
}

.blessing h2 {
  max-width: 850px;
}

@media (max-width: 860px) {
  .hero {
    background:
      linear-gradient(0deg, rgb(18 21 18 / 0.86), rgb(18 21 18 / 0.3)),
      url("media/photo-10.jpeg") center / cover;
    min-height: 76svh;
    padding: 30px 20px;
  }

  .video-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card:nth-child(1),
  .photo-card:nth-child(2),
  .photo-card:nth-child(3) {
    grid-column: span 1;
  }

  .photo-card img,
  .photo-card:nth-child(1) img,
  .photo-card:nth-child(2) img,
  .photo-card:nth-child(3) img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .site-nav {
    justify-content: space-between;
  }

  .hero {
    min-height: 72svh;
  }
}
