:root {
  --offwhite: #F8F7F4;
  --anthracite: #232323;
  --bordeaux: #7A1F28;
  --greige: #D8D2C8;
  --white: #ffffff;
  --muted: #68625b;
  --border: rgba(35, 35, 35, 0.14);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--anthracite);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 18px clamp(20px, 4vw, 64px);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--offwhite);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 247, 244, 0.96);
  border-bottom-color: var(--border);
  color: var(--anthracite);
  box-shadow: 0 16px 40px rgba(35, 35, 35, 0.06);
}

.brand {
  display: grid;
  gap: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto 5px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 84px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: auto;
  padding: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--bordeaux);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: min(980px, 92%);
  font-size: clamp(2.98rem, 5.78vw, 6.12rem);
  color: var(--offwhite);
  line-height: 1.18;
  text-shadow: 0 16px 46px rgba(35, 35, 35, 0.44);
}

h1 span {
  display: block;
}

.headline-slide {
  opacity: 0;
  transform: translateX(-72px);
  animation: headlineSlideIn 1400ms cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

@keyframes headlineSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

h2 {
  max-width: 840px;
  font-size: clamp(2.7rem, 5.5vw, 6.2rem);
}

h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
}

.lead {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--bordeaux);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--anthracite);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--anthracite);
  color: var(--offwhite);
}

.button-primary:hover {
  border-color: var(--bordeaux);
  background: var(--bordeaux);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}

.hero-media {
  position: relative;
  min-height: clamp(560px, 70vw, 820px);
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  filter: saturate(1) contrast(1.01);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(45,40,35,0.42) 0%,
    rgba(45,40,35,0.25) 35%,
    rgba(45,40,35,0.08) 70%,
    rgba(45,40,35,0) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: clamp(28px, 5vw, 68px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  --hero-bottom-offset: clamp(12px, 2vw, 36px);
  --hero-lower-group-gap: 92px;
}

.hero-overlay h1 {
  transform: translateY(2.7cm);
}

.hero-overlay-copy {
  max-width: 580px;
  margin-top: 3.35cm;
  color: var(--offwhite);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.26);
}

.hero-overlay-copy p {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.6rem);
  font-weight: 500;
  line-height: 1.78;
}

.hero-overlay-copy p + p {
  margin-top: 14px;
}

.hero-mobile-copy {
  display: none;
}

.hero-overlay-copy .hero-signature {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-top: 30px;
  color: rgba(243, 239, 232, 0.65);
  font-family: "Allura", cursive;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(12px);
  animation: heroSignatureFade 1100ms ease 2s forwards;
}

.hero-signature span,
.hero-signature small {
  display: block;
}

.hero-signature small {
  color: rgba(243, 239, 232, 0.68);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes heroSignatureFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-overlay .hero-actions .button {
  border-color: rgba(248, 247, 244, 0.86);
  background: rgba(248, 247, 244, 0.9);
  color: var(--anthracite);
  backdrop-filter: blur(8px);
}

.hero-overlay .hero-actions {
  margin-top: auto;
  margin-bottom: var(--hero-bottom-offset);
}

.hero-ceremony-line {
  position: absolute;
  left: 0;
  top: auto;
  bottom: calc(var(--hero-bottom-offset) + var(--hero-lower-group-gap));
  max-width: 620px;
  margin: 0;
  color: var(--offwhite);
  font-size: clamp(1.06rem, 1.21vw, 1.24rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.62;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.hero-overlay .hero-actions .button-primary {
  border-color: var(--offwhite);
  background: var(--offwhite);
}

.hero-overlay .hero-actions .button:hover {
  border-color: var(--offwhite);
  background: var(--bordeaux);
  color: var(--offwhite);
}

.intro {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 4.7rem);
  line-height: 1.08;
}

.image-interlude {
  position: relative;
  width: 100%;
  height: clamp(460px, 56vw, 760px);
  margin: clamp(72px, 10vw, 140px) 0;
  overflow: hidden;
}

.image-interlude img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: sepia(0.16) saturate(0.92) contrast(0.96) brightness(1.03);
}

.image-interlude p {
  position: absolute;
  left: clamp(28px, 12vw, 180px);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  color: rgba(243, 239, 232, 0.7);
  font-family: "Allura", cursive;
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.9;
  pointer-events: none;
}

.split,
.about-section,
.home-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 120px);
}

.contact {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.about-section {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  background: var(--white);
}

.home-section {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.home-content {
  width: min(100%, 860px);
  max-width: 860px;
  margin: 0 auto;
}

.home-media-editorial {
  width: 100%;
  height: clamp(360px, 42vw, 500px);
  justify-self: center;
  overflow: hidden;
  border-radius: 0;
}

.home-media-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-content {
  max-width: 820px;
}

.about-inline-image {
  width: min(100%, 680px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0 0 clamp(32px, 5vw, 58px);
  border-radius: 2px;
}

.about-subtitle {
  margin: 26px 0 0;
  color: var(--bordeaux);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.about-text {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin-top: 42px;
}

.split-content p,
.about-text p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-text p {
  margin: 0;
}

.about-text .about-highlight {
  color: var(--bordeaux);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
}

.about-media {
  min-height: clamp(520px, 58vw, 760px);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.home-media {
  min-height: clamp(420px, 48vw, 620px);
  background: var(--greige);
}

.home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.76;
  filter: saturate(0.88) contrast(0.96);
}

.home-content p:not(.eyebrow) {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.78;
}

.home-content .eyebrow {
  letter-spacing: 0.16em;
}

.home-intro {
  max-width: 700px;
}

.story-blocks {
  display: grid;
  gap: clamp(44px, 6vw, 78px);
  margin-top: clamp(48px, 6vw, 74px);
}

.story-block {
  max-width: 600px;
}

.story-block h3 {
  margin: 0 0 18px;
  color: var(--bordeaux);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-content .story-block p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.16vw, 1.15rem);
  line-height: 1.82;
}

.home-content .story-block p + p {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(36px, 6vw, 80px);
}

.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.ceremony-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ceremony-image {
  width: calc(100% + clamp(52px, 6vw, 84px));
  max-width: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: calc(clamp(26px, 3vw, 42px) * -1) calc(clamp(26px, 3vw, 42px) * -1) clamp(26px, 3vw, 42px);
}

.ceremony-image-muted {
  opacity: 0.38;
  filter: saturate(0.74) contrast(0.9);
}

.ceremony-card:hover,
.ceremony-card:focus-within {
  border-color: rgba(122, 31, 40, 0.38);
  box-shadow: 0 22px 58px rgba(35, 35, 35, 0.08);
  transform: translateY(-3px);
}

.ceremony-card span {
  display: inline-block;
  min-height: clamp(54px, 7vw, 92px);
  margin-bottom: 0;
  color: var(--bordeaux);
  font-size: 0.78rem;
  font-weight: 700;
}

.ceremony-card h3 {
  min-height: 2.35em;
}

.ceremony-card p {
  color: var(--muted);
}

.ceremony-card > p {
  min-height: 3.25em;
  margin: 20px 0 0;
  font-size: 1.02rem;
}

.card-toggle {
  align-self: flex-start;
  margin-top: 28px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--bordeaux);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.card-toggle::after {
  content: "+";
  display: inline-block;
  margin-left: 10px;
  transition: transform 220ms ease;
}

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

.card-accordion {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 26px;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 360ms ease, opacity 260ms ease;
}

.card-accordion.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.card-accordion-inner {
  min-height: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.card-accordion-inner p {
  margin: 0;
}

.card-accordion-inner p + p {
  margin-top: 16px;
}

.card-accordion-inner .accordion-lead {
  color: var(--anthracite);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.2;
}

.special-moments {
  background: var(--white);
}

.special-moments-content {
  max-width: 820px;
}

.special-moments-content h2 {
  max-width: 780px;
}

.special-moments-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.78;
}

.special-moments-content .card-accordion {
  max-width: 680px;
}

.ritual-section {
  background: var(--offwhite);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px) clamp(34px, 6vw, 92px);
  border-top: 1px solid var(--border);
}

.promise-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(82px, auto) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding-top: clamp(28px, 4vw, 54px);
}

.promise-item::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 68px;
  height: 1px;
  content: "";
  background: var(--bordeaux);
}

.promise-item span {
  color: var(--bordeaux);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 600;
  line-height: 0.82;
}

.promise-item p {
  max-width: 520px;
  margin: 0;
  color: var(--anthracite);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
}

.questions {
  background: var(--greige);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-top: 1px solid rgba(35, 35, 35, 0.22);
}

details:last-child {
  border-bottom: 1px solid rgba(35, 35, 35, 0.22);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--bordeaux);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: -6px 0 28px;
  color: #534f49;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 84px) 0;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.contact-closing-copy {
  padding: 0 clamp(20px, 5vw, 84px) clamp(36px, 5vw, 64px);
}

.contact-closing-image {
  width: 100%;
  height: clamp(520px, 64vw, 860px);
  margin-left: 0;
  margin-right: 0;
}

.contact-note {
  font-size: clamp(1.4rem, 2.2vw, 2rem) !important;
  line-height: 1.35;
}

.signature {
  width: min(100%, 520px);
  margin: 14px 0 0 !important;
  color: var(--bordeaux) !important;
  font-family: "Allura", cursive !important;
  font-size: clamp(3.5rem, 5.4vw, 5.7rem) !important;
  font-weight: 400 !important;
  text-align: right;
  line-height: 0.82 !important;
  transform: translateX(-3cm);
}

.contact-image {
  width: min(100%, 520px);
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
  margin-top: 42px;
  border-radius: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.52);
  color: var(--anthracite);
  font: inherit;
  padding: 15px 16px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--bordeaux);
}

.form-status {
  margin: 10px 0 0;
  color: var(--bordeaux);
  font-weight: 500;
  line-height: 1.6;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(122, 31, 40, 0.22);
  border-color: var(--bordeaux);
}

.closing-section {
  padding: clamp(72px, 10vw, 140px) 0 0;
  background: var(--offwhite);
}

.closing-copy {
  display: grid;
  gap: 24px;
  max-width: 860px;
  padding: 0 clamp(20px, 5vw, 84px) clamp(44px, 7vw, 86px);
}

.closing-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
  line-height: 1.7;
}

.closing-copy .button {
  width: fit-content;
}

.closing-image {
  position: relative;
  width: 100%;
  height: clamp(620px, 76vw, 980px);
  overflow: hidden;
}

.closing-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(28% - 3cm);
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
}

.closing-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(248, 247, 244, 0) 0%, rgba(248, 247, 244, 0.16) 100%);
  pointer-events: none;
}

.closing-image p {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  right: auto;
  top: clamp(34px, 7vw, 96px);
  bottom: auto;
  z-index: 1;
  margin: 0;
  color: rgba(142, 74, 84, 0.7);
  font-family: "Allura", cursive;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 0.9;
  opacity: 0;
  transform: translateY(10px);
  animation: closingSignatureFade 1200ms ease 1.5s forwards;
}

@keyframes closingSignatureFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.7fr) minmax(180px, auto);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 84px) clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--offwhite);
}

.footer-seal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: clamp(18px, 3vw, 32px);
}

.footer-seal img {
  width: min(64px, 18vw);
  height: auto;
  display: block;
  opacity: 0.64;
}

.site-footer p {
  margin: 0;
}

.footer-brand p:first-child {
  color: var(--anthracite);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.footer-brand p + p {
  margin-top: 10px;
}

.footer-claim {
  margin-top: 22px !important;
  color: var(--bordeaux);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 12px;
}

.footer-contact {
  font-style: normal;
}

.footer-contact a,
.footer-links button {
  width: fit-content;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0 0 4px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-copy {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px !important;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-contact a:hover,
.footer-links button:hover,
.footer-contact a:focus-visible,
.footer-links button:focus-visible {
  border-bottom-color: var(--bordeaux);
  color: var(--bordeaux);
  outline: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 35, 35, 0.42);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--offwhite);
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(35, 35, 35, 0.18);
}

.modal-dialog h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.modal-content {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  color: var(--muted);
}

.modal-content p {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--anthracite);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

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

  .headline-slide {
    opacity: 1;
    transform: none;
  }

  .hero-overlay-copy .hero-signature {
    opacity: 1;
    transform: none;
  }

  .closing-image p {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 32px;
    background: rgba(248, 247, 244, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 260ms ease;
  }

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

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

  .hero,
  .split,
  .about-section,
  .home-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .home-media-editorial {
    height: clamp(340px, 62vw, 460px);
  }

  .hero-media {
    min-height: 620px;
  }

  .about-section {
    align-items: start;
  }

  .about-media {
    min-height: 480px;
    order: -1;
  }

  .home-media {
    min-height: 420px;
  }

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

  .ceremony-card {
    min-height: auto;
  }

  .ceremony-card span {
    min-height: 44px;
  }

  .ceremony-card h3,
  .ceremony-card > p {
    min-height: 0;
  }

  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .section {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(2.3rem, 9.35vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4.3rem);
  }

  .lead {
    margin-top: 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .closing-copy .button {
    width: 100%;
  }

  .closing-image {
    height: 620px;
  }

  .closing-image p {
    left: 22px;
    right: auto;
    top: 32px;
    bottom: auto;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

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

  .promise-item {
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  }

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

  .signature {
    width: 100%;
    font-size: clamp(3.4rem, 15vw, 5.3rem) !important;
    transform: translateX(-1.2cm);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .modal {
    align-items: flex-start;
    padding: 12px;
  }

  .modal-dialog {
    max-height: calc(100dvh - 24px);
    padding: 28px 20px;
  }

  .hero-media {
    min-height: 680px;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-position: 56% bottom;
  }

  .hero-overlay {
    inset: 24px 18px;
    --hero-bottom-offset: 22px;
    --hero-lower-group-gap: 128px;
  }

  .hero-overlay h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 1.04;
    transform: translateY(1.05cm);
  }

  .hero-overlay-copy {
    max-width: 92%;
    margin-top: 1.35cm;
  }

  .hero-overlay-copy > p:not(.hero-signature) {
    display: none;
  }

  .hero-overlay-copy .hero-signature {
    margin-top: -22px;
    margin-bottom: 46px;
  }

  .hero-signature span {
    font-size: clamp(2.4rem, 11vw, 3.45rem);
  }

  .hero-signature small {
    font-size: 0.68rem;
  }

  .hero-ceremony-line {
    position: static;
    max-width: 92%;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .hero-overlay .hero-actions {
    margin-top: 18px;
    margin-bottom: 0;
  }

  .hero-mobile-copy {
    display: grid;
    gap: 18px;
    padding: 30px 18px 0;
    color: var(--muted);
  }

  .hero-mobile-copy p {
    max-width: 640px;
    margin: 0;
    font-size: clamp(1.04rem, 5vw, 1.22rem);
    line-height: 1.7;
  }

  .about-media {
    min-height: 360px;
  }

  .home-media {
    min-height: 320px;
  }

  .home-media-editorial {
    height: 340px;
    border-radius: 0;
  }

  .home-media-editorial img {
    object-position: center 8%;
  }

  .story-blocks {
    gap: 38px;
    margin-top: 42px;
  }

  .image-interlude {
    height: 520px;
    margin: 64px 0;
  }

  .image-interlude img {
    object-position: 56% center;
  }

  .image-interlude p {
    left: 22px;
    top: 46%;
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .intro p {
    font-size: clamp(1.85rem, 9vw, 3.25rem);
  }

  summary {
    align-items: flex-start;
    padding: 22px 0;
  }
}
