:root {
  --olive: #6b8e23;
  --olive-deep: #4d6818;
  --ivory: #fffff0;
  --ivory-soft: #f6f0e4;
  --burgundy: #33091b;
  --chocolate: #362017;
  --sand: #dfbe8b;
  --teal: #072d33;
  --sage: #9abcab;
  --rose: #8f5c64;
  --ink: #2c2020;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  visibility: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 48%, rgba(107, 142, 35, 0.19), transparent 24%),
    var(--teal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(223, 190, 139, 0.28);
}

.loader::after {
  inset: 34px;
  border-color: rgba(154, 188, 171, 0.13);
}

.loader.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.loader-logo,
.closing-seal {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 3.3rem;
  letter-spacing: -0.08em;
}

.loader-logo i,
.closing-seal i,
.monogram i {
  margin: 0 8px 0 4px;
  color: var(--sand);
  font-size: 0.64em;
  font-weight: 400;
}

.loader-bar {
  width: 160px;
  height: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 240, 0.18);
}

.loader-bar i {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--sand);
  animation: loading 1.1s ease-in-out infinite;
}

.loader p {
  margin: 18px 0 0;
  color: rgba(255, 255, 240, 0.62);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.13em;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 5vw;
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 240, 0.12);
  transition: min-height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
  min-height: 72px;
  background: rgba(7, 45, 51, 0.96);
  box-shadow: 0 12px 35px rgba(25, 7, 14, 0.18);
  backdrop-filter: blur(16px);
}

.monogram {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.monogram::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 40px;
  border: 1px solid rgba(223, 190, 139, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-11deg);
}

.header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.header nav a {
  position: relative;
  color: rgba(255, 255, 240, 0.84);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.header nav > a:not(.nav-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.header nav > a:hover::after,
.header nav > a:focus-visible::after {
  transform: scaleX(1);
}

.header nav a:hover,
.header nav a:focus-visible {
  color: var(--ivory);
}

.nav-button {
  padding: 13px 18px;
  border: 1px solid rgba(223, 190, 139, 0.63);
  background: rgba(51, 9, 27, 0.24);
}

.nav-button:hover,
.nav-button:focus-visible {
  color: var(--burgundy) !important;
  background: var(--sand);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: var(--teal);
}

.slides,
.slide,
.hero-shade,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.slide {
  z-index: -5;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.45s ease, transform 10s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(7, 45, 51, 0.9), rgba(7, 45, 51, 0.48) 43%, rgba(51, 9, 27, 0.57)),
    linear-gradient(0deg, rgba(25, 6, 13, 0.94), transparent 58%, rgba(7, 45, 51, 0.64));
}

.hero-pattern {
  z-index: -3;
  opacity: 0.13;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 240, 0.72) 19px 20px, transparent 21px 39px),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(223, 190, 139, 0.7) 19px 20px, transparent 21px 39px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 20%, transparent 80%, #000);
}

.hero-frame {
  position: absolute;
  z-index: 1;
  inset: 118px 4vw 42px;
  border: 1px solid rgba(223, 190, 139, 0.28);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "◆";
  position: absolute;
  top: 50%;
  color: var(--sand);
  font-size: 0.48rem;
}

.hero-frame::before {
  left: -4px;
}

.hero-frame::after {
  right: -4px;
}

.hero-cultural-medallion {
  position: absolute;
  z-index: 2;
  bottom: 74px;
  left: 5vw;
  width: 112px;
  height: 112px;
  padding: 7px;
  border: 1px solid rgba(223, 190, 139, 0.45);
  border-radius: 50%;
  background: rgba(7, 45, 51, 0.34);
  box-shadow: 0 0 0 8px rgba(223, 190, 139, 0.06);
  overflow: hidden;
}

.hero-cultural-medallion::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(255, 255, 240, 0.32);
  border-radius: 50%;
}

.hero-cultural-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.55) sepia(0.35) saturate(0.7);
  opacity: 0.56;
}

.hero-cultural-medallion span {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-shadow: 0 2px 12px var(--teal);
}

.hero-raffia-fringe {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  opacity: 0.55;
  background:
    linear-gradient(135deg, transparent 40%, var(--sand) 41% 50%, transparent 51%) 0 0 / 28px 16px,
    linear-gradient(45deg, transparent 40%, var(--olive) 41% 50%, transparent 51%) 14px 0 / 28px 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 88vw);
  padding-top: 60px;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-eyebrow i {
  width: 54px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9.7rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 60px rgba(17, 3, 8, 0.36);
}

.hero h1 em {
  color: var(--sand);
  font-size: 0.46em;
  font-weight: 400;
}

.type-word {
  display: inline-block;
  width: 0;
  padding: 0 0.035em 0.08em 0;
  overflow: hidden;
  border-right: 2px solid transparent;
  white-space: nowrap;
}

.type-gevy {
  --type-width: 4ch;
  animation:
    type-name 1s steps(4, end) 1.35s forwards,
    type-caret 0.5s step-end 1.35s 3,
    type-caret-off 0.01s linear 2.65s forwards;
}

.hero-ampersand {
  opacity: 0;
  animation: ampersand-in 0.45s ease 2.45s forwards;
}

.type-rodrygo {
  --type-width: 7ch;
  animation:
    type-name 1.4s steps(7, end) 2.75s forwards,
    type-caret 0.5s step-end 2.75s 4,
    type-caret-off 0.01s linear 4.85s forwards;
}

.hero-tagline {
  margin: 24px 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-style: italic;
  letter-spacing: 0.05em;
}

.countdown {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 18px 35px 23px;
  border: 1px solid rgba(255, 255, 240, 0.18);
  background:
    linear-gradient(90deg, rgba(51, 9, 27, 0.57), rgba(7, 45, 51, 0.48)),
    rgba(7, 45, 51, 0.16);
  box-shadow: 0 20px 55px rgba(17, 3, 8, 0.22);
  backdrop-filter: blur(14px);
}

.countdown-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--sand);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.countdown-heading i {
  color: var(--olive);
  font-size: 0.46rem;
}

.countdown-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  max-width: 735px;
  margin: 0 auto;
}

.count-item {
  display: grid;
  justify-items: center;
}

.count-item strong {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.3vw, 4.5rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.count-item span {
  margin-top: 9px;
  color: rgba(255, 255, 240, 0.61);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown-row > b {
  margin-top: 3px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  opacity: 0.52;
}

.dots {
  position: absolute;
  z-index: 3;
  right: 5.4vw;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dots button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 240, 0.34);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.dots button.active {
  width: 48px;
  background: var(--sand);
}

.discover {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 240, 0.69);
  transform: translateX(-50%);
}

.discover span {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.discover i {
  position: relative;
  width: 1px;
  height: 24px;
  overflow: hidden;
  background: rgba(255, 255, 240, 0.25);
}

.discover i::after {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 1px;
  height: 11px;
  background: var(--sand);
  animation: scroll 1.6s ease-in-out infinite;
}

.story {
  position: relative;
  padding: 150px 0 170px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 240, 0.94), rgba(255, 255, 240, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(54, 32, 23, 0.07) 24px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(107, 142, 35, 0.14);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--burgundy);
}

.orbit-one {
  top: -180px;
  right: -210px;
  width: 570px;
  height: 570px;
}

.orbit-one::after {
  bottom: 74px;
  left: 82px;
}

.orbit-two {
  bottom: -260px;
  left: -230px;
  width: 540px;
  height: 540px;
}

.orbit-two::after {
  top: 52px;
  right: 95px;
  background: var(--olive);
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(65px, 8vw, 115px);
}

.story-cultural-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.story-cultural-layer img {
  position: absolute;
  mix-blend-mode: multiply;
  filter: grayscale(1) sepia(0.7);
}

.story-blade {
  top: 17%;
  left: 0;
  width: 105px;
  opacity: 0.12;
  transform: rotate(-4deg);
}

.story-figures {
  right: 1.5vw;
  bottom: 28px;
  width: 205px;
  opacity: 0.1;
  mask-image: linear-gradient(#000 65%, transparent);
}

.story-photos {
  position: relative;
  min-height: 660px;
}

.photo-main {
  width: 84%;
  height: 570px;
  padding: 12px;
  border: 1px solid rgba(54, 32, 23, 0.18);
  background: var(--ivory);
  box-shadow: 0 28px 65px rgba(54, 32, 23, 0.14);
}

.photo-main img,
.photo-small img {
  height: 100%;
  object-fit: cover;
}

.photo-main img {
  object-position: 47% center;
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 278px;
  padding: 8px;
  border: 1px solid rgba(54, 32, 23, 0.17);
  background: var(--ivory);
  box-shadow: 0 20px 55px rgba(54, 32, 23, 0.18);
}

.photo-small img {
  object-position: center 49%;
}

.seal {
  position: absolute;
  top: 38px;
  right: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 240, 0.45);
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 16px 35px rgba(77, 104, 24, 0.2);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.seal::before,
.seal::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px dashed rgba(107, 142, 35, 0.66);
  border-radius: inherit;
}

.seal::after {
  inset: -15px;
  border-color: rgba(107, 142, 35, 0.2);
}

.seal i {
  margin: 0 5px;
  color: var(--sand);
  font-size: 0.8em;
}

.raffia-lines {
  position: absolute;
  right: 33%;
  bottom: -10px;
  width: 150px;
  height: 50px;
  opacity: 0.55;
  background:
    repeating-linear-gradient(90deg, var(--burgundy) 0 2px, transparent 2px 9px),
    linear-gradient(var(--sand), var(--sand)) center / 100% 1px no-repeat;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.section-title {
  margin-bottom: 30px;
}

.section-title .eyebrow {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--olive-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-title h2 {
  max-width: 650px;
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.title-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 150px;
  margin-top: 22px;
  color: var(--sand);
}

.title-ornament i {
  width: 52px;
  height: 1px;
  background: currentColor;
}

.title-ornament b {
  color: var(--olive);
  font-size: 0.47rem;
}

.story-copy > p {
  margin: 0 0 18px;
  color: #604c46;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.84;
}

.story-copy .lead::first-letter {
  float: left;
  margin: 4px 10px 0 0;
  color: var(--burgundy);
  font-size: 4.5rem;
  line-height: 0.78;
}

.story-copy blockquote {
  margin: 36px 0 0;
  padding: 18px 0 4px 30px;
  color: var(--burgundy);
  border-left: 2px solid var(--olive);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.45;
}

.story-copy cite {
  display: block;
  margin-top: 11px;
  color: var(--rose);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.promise {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 30%, rgba(107, 142, 35, 0.28), transparent 25%),
    linear-gradient(120deg, #062a30, var(--teal) 45%, #0c3d43);
}

.promise-pattern {
  position: absolute;
  inset: -70px;
  opacity: 0.15;
  background:
    radial-gradient(circle, transparent 45%, var(--sand) 46% 47%, transparent 48%) 0 0 / 160px 160px,
    linear-gradient(45deg, transparent 47%, var(--sand) 48% 49%, transparent 50%) 0 0 / 80px 80px,
    linear-gradient(-45deg, transparent 47%, var(--sand) 48% 49%, transparent 50%) 0 0 / 80px 80px;
  transform: rotate(3deg);
}

.promise-blade {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 4vw;
  width: 104px;
  max-height: 78%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(0.35);
  mix-blend-mode: screen;
  opacity: 0.16;
  transform: translateY(-50%) rotate(-5deg);
}

.promise-cultural-disc {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 4vw;
  width: 245px;
  height: 245px;
  padding: 9px;
  border: 1px solid rgba(223, 190, 139, 0.38);
  border-radius: 50%;
  box-shadow:
    0 0 0 16px rgba(223, 190, 139, 0.05),
    0 0 0 34px rgba(154, 188, 171, 0.04);
  opacity: 0.24;
  transform: translateY(-50%);
  overflow: hidden;
}

.promise-cultural-disc img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.45) sepia(0.35);
}

.promise-content {
  z-index: 2;
  position: relative;
  width: min(1100px, calc(100% - 45px));
  padding: 70px 0;
  text-align: center;
}

.promise-content::before,
.promise-content::after {
  content: "";
  position: absolute;
  top: 52%;
  width: 15vw;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand));
}

.promise-content::before {
  left: 0;
}

.promise-content::after {
  right: 0;
  transform: rotate(180deg);
}

.promise-content > span {
  color: var(--sage);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.promise-content h2 {
  margin: 22px 0 2px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.promise-content p {
  margin: 0;
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-style: italic;
}

.gallery {
  padding: 145px 0 165px;
  background: var(--ivory);
}

.gallery .section-title {
  display: grid;
  justify-items: center;
  margin-bottom: 62px;
  text-align: center;
}

.culture-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: -34px auto 46px;
}

.culture-divider > i {
  width: min(13vw, 125px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand));
}

.culture-divider > i:last-child {
  transform: rotate(180deg);
}

.culture-divider > b {
  color: var(--olive);
  font-size: 0.42rem;
}

.culture-thumb {
  display: block;
  width: 55px;
  height: 55px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(54, 32, 23, 0.18);
  border-radius: 50%;
  background: var(--ivory);
}

.culture-thumb img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  filter: grayscale(0.35) sepia(0.2);
}

.culture-thumb-blade {
  width: 39px;
  border-radius: 22px;
}

.culture-thumb-blade img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.culture-thumb-figures img {
  object-position: center 35%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 390px 330px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--chocolate);
}

.gallery-grid .wide {
  grid-column: span 7;
}

.gallery-grid .tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid .portrait {
  grid-column: span 3;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(51, 9, 27, 0.84), transparent 49%);
  opacity: 0.74;
  transition: opacity 0.4s ease;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-grid .wide img {
  object-position: center 32%;
}

.gallery-grid .tall img {
  object-position: 66% center;
}

.gallery-grid figure:nth-child(3) img {
  object-position: center 48%;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gallery-grid figure:hover::after {
  opacity: 0.92;
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--ivory);
}

.gallery-grid figcaption span {
  color: var(--sand);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.gallery-grid figcaption b {
  max-width: 235px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
}

.closing {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--teal);
}

.closing-bg,
.closing-shade,
.closing-border {
  position: absolute;
  inset: 0;
}

.closing-bg {
  background: url("../images/couple-1.jpeg") center 37% / cover no-repeat;
}

.closing-shade {
  background:
    linear-gradient(0deg, rgba(7, 45, 51, 0.97), rgba(7, 45, 51, 0.2) 56%, rgba(51, 9, 27, 0.45)),
    linear-gradient(90deg, rgba(7, 45, 51, 0.72), transparent 50%, rgba(51, 9, 27, 0.56));
}

.closing-border {
  z-index: 1;
  inset: 35px;
  border: 1px solid rgba(223, 190, 139, 0.3);
}

.closing-culture-blade {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 5vw;
  width: 105px;
  max-height: 64%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(0.35);
  mix-blend-mode: screen;
  opacity: 0.17;
  transform: translateY(-50%) rotate(-4deg);
}

.closing-cultural-echo {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5vw;
  width: 170px;
  height: 170px;
  padding: 8px;
  border: 1px dashed rgba(223, 190, 139, 0.45);
  border-radius: 50%;
  opacity: 0.18;
  transform: translateY(-50%);
  overflow: hidden;
}

.closing-cultural-echo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.5) sepia(0.35);
}

.closing::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  opacity: 0.25;
  background:
    linear-gradient(135deg, transparent 40%, var(--sand) 41% 50%, transparent 51%) 0 0 / 52px 42px,
    linear-gradient(45deg, transparent 40%, var(--olive) 41% 50%, transparent 51%) 26px 0 / 52px 42px;
  mask-image: linear-gradient(0deg, #000, transparent);
}

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(820px, 84vw);
  padding: 90px 0;
  text-align: center;
}

.closing-seal {
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-bottom: 34px;
  border: 1px solid rgba(223, 190, 139, 0.55);
  border-radius: 50%;
  font-size: 1.9rem;
  background: rgba(7, 45, 51, 0.28);
  backdrop-filter: blur(10px);
}

.closing-kicker {
  color: var(--sand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.closing-content h2 {
  margin: 15px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.5vw, 7.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.closing-content > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.17rem;
}

.closing-content > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(223, 190, 139, 0.5);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-content > a b {
  color: var(--sand);
  font-size: 0.85rem;
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 0 6vw;
  color: rgba(255, 255, 240, 0.58);
  border-top: 1px solid rgba(255, 255, 240, 0.1);
  background: #041f24;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  opacity: 0.52;
  background: repeating-linear-gradient(90deg, var(--sand) 0 2px, transparent 2px 9px);
}

footer strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

footer strong i {
  color: var(--sand);
  font-size: 0.8em;
}

footer > span {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes loading {
  from { transform: translateX(-110%); }
  to { transform: translateX(340%); }
}

@keyframes scroll {
  from { transform: translateY(0); }
  to { transform: translateY(44px); }
}

@keyframes type-name {
  from { width: 0; }
  to { width: var(--type-width); }
}

@keyframes type-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--sand); }
}

@keyframes type-caret-off {
  to { border-color: transparent; }
}

@keyframes ampersand-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.75);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .header nav {
    gap: 18px;
  }

  .header nav a {
    font-size: 0.62rem;
  }

  .story-grid {
    gap: 58px;
  }

  .photo-main {
    width: 88%;
  }

}

@media (max-width: 800px) {
  .container {
    width: min(100% - 36px, 620px);
  }

  .header,
  .header.scrolled {
    min-height: 68px;
    padding: 0 22px;
    background: rgba(7, 45, 51, 0.91);
    backdrop-filter: blur(14px);
  }

  .monogram {
    font-size: 1.45rem;
  }

  .monogram::after {
    width: 47px;
    height: 32px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(223, 190, 139, 0.35);
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--ivory);
    transition: transform 0.25s ease;
  }

  .menu-button.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .header nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    padding: 88px 28px 40px;
    visibility: hidden;
    background:
      radial-gradient(circle at 50% 35%, rgba(107, 142, 35, 0.2), transparent 30%),
      var(--teal);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  }

  .header nav::before {
    content: "G  &  R";
    position: absolute;
    color: rgba(255, 255, 240, 0.04);
    font-family: var(--serif);
    font-size: 7rem;
    white-space: nowrap;
  }

  .header nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .header nav a {
    z-index: 1;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .header nav .nav-button {
    margin-top: 8px;
    padding: 13px 20px;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 790px;
    height: 100svh;
  }

  .slide {
    background-position: 52% center !important;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(25, 6, 13, 0.96), rgba(7, 45, 51, 0.25) 58%, rgba(7, 45, 51, 0.74)),
      linear-gradient(90deg, rgba(7, 45, 51, 0.58), rgba(51, 9, 27, 0.38));
  }

  .hero-frame {
    inset: 88px 18px 20px;
  }

  .hero-cultural-medallion {
    display: none;
  }

  .hero-raffia-fringe {
    height: 12px;
    background-size: 22px 12px, 22px 12px;
    background-position: 0 0, 11px 0;
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-top: 30px;
  }

  .hero-eyebrow {
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.54rem;
    letter-spacing: 0.17em;
  }

  .hero-eyebrow i {
    width: 25px;
  }

  .hero h1 {
    flex-direction: column;
    gap: 0;
    font-size: clamp(4.2rem, 21vw, 6.8rem);
    line-height: 0.75;
  }

  .hero h1 em {
    margin: 0 0 -1px;
    font-size: 0.37em;
  }

  .hero-tagline {
    margin: 21px 0 20px;
    font-size: 1rem;
  }

  .countdown {
    padding: 16px 13px 19px;
  }

  .countdown-heading {
    margin-bottom: 12px;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }

  .countdown-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .countdown-row > b {
    display: none;
  }

  .count-item strong {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .count-item span {
    margin-top: 7px;
    font-size: 0.46rem;
    letter-spacing: 0.11em;
  }

  .dots {
    right: 27px;
    bottom: 54px;
    gap: 9px;
  }

  .dots button {
    width: 19px;
  }

  .dots button.active {
    width: 33px;
  }

  .discover {
    bottom: 19px;
  }

  .story {
    padding: 100px 0 110px;
  }

  .story-blade {
    top: 6%;
    left: -25px;
    width: 76px;
    opacity: 0.09;
  }

  .story-figures {
    right: -30px;
    bottom: 6px;
    width: 150px;
    opacity: 0.07;
  }

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

  .story-photos {
    min-height: 510px;
  }

  .photo-main {
    width: 89%;
    height: 430px;
    padding: 8px;
  }

  .photo-small {
    width: 49%;
    height: 215px;
    padding: 6px;
  }

  .seal {
    top: 27px;
    right: 0;
    width: 90px;
    height: 90px;
    font-size: 1.1rem;
  }

  .seal::before { inset: -5px; }
  .seal::after { inset: -10px; }

  .section-title h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .story-copy > p {
    font-size: 1rem;
  }

  .story-copy blockquote {
    font-size: 1.13rem;
  }

  .promise {
    min-height: 380px;
  }

  .promise-blade {
    left: -23px;
    width: 76px;
    opacity: 0.1;
  }

  .promise-cultural-disc {
    right: -68px;
    width: 180px;
    height: 180px;
    opacity: 0.13;
  }

  .promise-content::before,
  .promise-content::after {
    display: none;
  }

  .promise-content h2 {
    font-size: clamp(2.25rem, 11.5vw, 4rem);
  }

  .gallery {
    padding: 100px 0;
  }

  .gallery .section-title {
    margin-bottom: 42px;
  }

  .culture-divider {
    gap: 9px;
    margin: -18px auto 35px;
  }

  .culture-divider > i {
    width: 34px;
  }

  .culture-thumb {
    width: 45px;
    height: 45px;
  }

  .culture-thumb-blade {
    width: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .gallery-grid figure,
  .gallery-grid .wide,
  .gallery-grid .tall,
  .gallery-grid .portrait {
    grid-column: 1;
    grid-row: auto;
    height: 315px;
  }

  .gallery-grid .tall {
    height: 410px;
  }

  .gallery-grid figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .gallery-grid figcaption b {
    font-size: 1.05rem;
  }

  .closing {
    min-height: 690px;
  }

  .closing-bg {
    background-position: 48% center;
  }

  .closing-border {
    inset: 18px;
  }

  .closing-culture-blade {
    left: -24px;
    width: 75px;
    opacity: 0.1;
  }

  .closing-cultural-echo {
    right: -55px;
    width: 135px;
    height: 135px;
    opacity: 0.1;
  }

  .closing-content {
    width: calc(100% - 50px);
  }

  .closing-seal {
    width: 98px;
    height: 98px;
    font-size: 1.55rem;
  }

  .closing-kicker {
    font-size: 0.54rem;
    letter-spacing: 0.19em;
  }

  .closing-content h2 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

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

@media (max-width: 430px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 38px);
  }

  .hero h1 {
    font-size: clamp(3.85rem, 20vw, 5.3rem);
  }

  .story-photos {
    min-height: 450px;
  }

  .photo-main {
    height: 385px;
  }

  .photo-small {
    height: 180px;
  }

  footer > span {
    max-width: 240px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .type-word {
    width: auto !important;
    border-color: transparent !important;
    animation: none !important;
  }

  .hero-ampersand {
    opacity: 1 !important;
    animation: none !important;
  }

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