:root {
  --ivory: #f7f2e8;
  --paper: #efe5d4;
  --paper-deep: #e2d2bc;
  --ink: #201a16;
  --muted-ink: #6e625a;
  --soft-brown: #8a6f5c;
  --sage: #9aa58c;
  --champagne: #d7c3a3;
  --clay: #b98272;
  --white: #fffaf2;
  --shadow: 0 24px 80px rgba(36, 27, 20, 0.13);
  --soft-shadow: 0 14px 45px rgba(36, 27, 20, 0.1);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --serif2: "Fanwood Text", serif;
  --serif1: "Fraunces", serif;
  --sans: "brandon-grotesque", sans-serif;
  --max: 1180px;
  --section-pad: clamp(5.5rem, 10vw, 10rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(215, 195, 163, 0.35),
      transparent 34rem
    ),
    radial-gradient(
      circle at 85% 40%,
      rgba(154, 165, 140, 0.18),
      transparent 30rem
    ),
    linear-gradient(135deg, var(--ivory), #fbf7ef 42%, var(--paper));
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: -1;
  background-image:
    linear-gradient(rgba(32, 26, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 26, 22, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: multiply;
}

img,
video {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
}

a {
  color: inherit;
}

.text-block a,
.package-group-label a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(185, 130, 114, 0.45);
  text-underline-offset: 0.18em;
}

p {
  line-height: 1.75;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--ivory);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  z-index: 999;
}

.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;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 9999;
  pointer-events: none;
  animation: loaderFallback 0.7s ease 0.6s forwards;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 9998;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1180px);
  display: block;
  padding: 0.85rem 1rem 0.85rem 1.2rem;
  border: 1px solid rgba(255, 250, 242, 0.45);

  /* This fixes the weird oval pop */
  border-radius: 30px;

  background: rgba(247, 242, 232, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(32, 26, 22, 0.09);
  overflow: hidden;
  max-height: 74px;
  transition:
    max-height 0.52s cubic-bezier(0.18, 0.72, 0.22, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header.is-scrolled {
  background: rgba(247, 242, 232, 0.274);
  border-color: rgba(255, 250, 242, 0.42);
  box-shadow: 0 12px 44px rgba(32, 26, 22, 0.1);
  backdrop-filter: blur(18px) saturate(1.08);
}

body.mobile-menu-open .site-header {
  height: calc(100dvh - 20px);
  max-height: calc(100dvh - 20px);
  border-radius: 30px;
  background: rgba(247, 242, 232, 0.74);
  border-color: rgba(255, 250, 242, 0.56);
  box-shadow: 0 28px 90px rgba(21, 17, 13, 0.24);
  backdrop-filter: blur(22px) saturate(1.1);

  display: flex;
  flex-direction: column;
}

.site-header-row {
  flex: 0 0 auto;
}

.mobile-menu {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  pointer-events: none;

  display: flex;
  flex-direction: column;

  transition:
    max-height 0.52s cubic-bezier(0.18, 0.72, 0.22, 1),
    opacity 0.18s ease,
    transform 0.34s cubic-bezier(0.18, 0.72, 0.22, 1);
}

.mobile-menu.is-open {
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(100dvh - 6rem);
  opacity: 1;
  overflow-y: auto;
  transform: translateY(0);
  pointer-events: auto;
  overscroll-behavior: contain;
  padding-bottom: 0.35rem;

  transition:
    max-height 0.52s cubic-bezier(0.18, 0.72, 0.22, 1),
    opacity 0.22s ease 0.08s,
    transform 0.34s cubic-bezier(0.18, 0.72, 0.22, 1) 0.04s;
}

.mobile-menu-links,
.mobile-menu-chapters {
  flex: 0 0 auto;
}

.mobile-menu-contact {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 0.85rem;
  padding-bottom: 0.2rem;
  border-top: 1px solid rgba(138, 111, 92, 0.16);
  color: var(--muted-ink);
}

@media (max-height: 640px), (max-width: 380px) {
  body.mobile-menu-open .site-header {
    height: calc(100dvh - 12px);
    max-height: calc(100dvh - 12px);
  }

  .mobile-menu.is-open {
    max-height: calc(100dvh - 5rem);
  }

  .mobile-menu-contact {
    margin-top: 0.85rem;
  }

  .mobile-menu-links a {
    min-height: 48px;
    padding-top: 0.52rem;
    padding-bottom: 0.52rem;
  }

  .mobile-menu-chapters {
    gap: 0.34rem;
  }

  .mobile-menu-chapters a {
    padding: 0.42rem 0.55rem;
  }
}

.brand-mark {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.58rem;
  line-height: 0.9;
}

.brand-emblem {
  width: clamp(2rem, 3vw, 2.45rem);
  height: clamp(2rem, 3vw, 2.45rem);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
}

.brand-script {
  font-family: var(--serif2);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.brand-small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-ink);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.header-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(32, 26, 22, 0.78);
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.header-nav a:hover {
  background: rgba(32, 26, 22, 0.07);
  color: var(--ink);
}

.header-nav .nav-cta {
  background: var(--ink);
  color: var(--ivory);
}

.header-nav .nav-cta:hover {
  background: #3a2e26;
  color: var(--ivory);
}

.mobile-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.mobile-menu-toggle span {
  display: none;
}

.mobile-menu-toggle::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: url("/weddings/icons/menu-icon.png") center / contain no-repeat;
  transform: perspective(500px) rotateY(0deg);
  transform-origin: center;
  transition: transform 0.48s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.mobile-menu-toggle[aria-expanded="true"]::before {
  transform: perspective(500px) rotateY(180deg);
}

.mobile-menu-links {
  display: grid;
  gap: 0.48rem;
  padding: 2rem 0;
}

.mobile-menu-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 0.82rem;
  padding: 0.64rem 1rem 0.64rem 0.72rem;
  border-radius: 50px;
  background: rgba(206, 125, 70, 0.055);
  border: 1px solid rgba(138, 111, 92, 0.1);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif2);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.02;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.mobile-menu-links a img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex: 0 0 auto;
  /* background: rgba(206, 125, 70, 0.055);
  border: 1px solid rgba(138, 111, 92, 0.1);
  border-radius: 50%;
  padding: 5px; */
}

.bigger-icon {
  width: 1.2rem !important;
  height: 1.2rem !important;
}

.mobile-menu-links a span {
  display: block;
  padding-top: 0.05rem;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  transform: translateX(3px);
  background: rgba(255, 250, 242, 0.72);
  border-color: rgba(138, 111, 92, 0.2);
}

.mobile-menu-links a:hover img,
.mobile-menu-links a:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.mobile-menu-links a::after {
  content: none !important;
}

.mobile-menu-chapters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  padding: 0 0 0.9rem;
}

.mobile-menu-chapters .mini-label,
.mobile-menu-contact .mini-label {
  flex-basis: 100%;
  margin-bottom: 0.15rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.mobile-menu-chapters a {
  text-decoration: none;
  padding: 0.48rem 0.62rem;
  border-radius: 999px;
  background: rgba(32, 26, 22, 0.055);
  color: rgba(32, 26, 22, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(138, 111, 92, 0.16);
  color: var(--muted-ink);
}

.mobile-menu-contact p {
  margin: 0.25rem 0;
  line-height: 1.45;
  font-size: 0.86rem;
}

.mobile-menu-contact a {
  display: inline-flex;
  margin: 0.35rem 0.55rem 0 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration-color: rgba(185, 130, 114, 0.45);
  text-underline-offset: 0.18em;
}

.mobile-menu-links a,
.mobile-menu-chapters .mini-label,
.mobile-menu-chapters a,
.mobile-menu-contact .mini-label,
.mobile-menu-contact p,
.mobile-menu-contact a {
  opacity: 0;
  translate: 0 -10px;
  filter: blur(2px);
  transition:
    opacity 0.5s ease,
    translate 0.6s cubic-bezier(0.18, 0.72, 0.22, 1),
    filter 0.66s ease;
}

.mobile-menu.is-open .mobile-menu-links a,
.mobile-menu.is-open .mobile-menu-chapters .mini-label,
.mobile-menu.is-open .mobile-menu-chapters a,
.mobile-menu.is-open .mobile-menu-contact .mini-label,
.mobile-menu.is-open .mobile-menu-contact p,
.mobile-menu.is-open .mobile-menu-contact a {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(1) {
  transition-delay: 0.11s;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(3) {
  transition-delay: 0.19s;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(4) {
  transition-delay: 0.23s;
}

.mobile-menu.is-open .mobile-menu-chapters .mini-label {
  transition-delay: 0.28s;
}

.mobile-menu.is-open .mobile-menu-chapters a:nth-of-type(1) {
  transition-delay: 0.31s;
}

.mobile-menu.is-open .mobile-menu-chapters a:nth-of-type(2) {
  transition-delay: 0.34s;
}

.mobile-menu.is-open .mobile-menu-chapters a:nth-of-type(3) {
  transition-delay: 0.37s;
}

.mobile-menu.is-open .mobile-menu-chapters a:nth-of-type(4) {
  transition-delay: 0.4s;
}

.mobile-menu.is-open .mobile-menu-chapters a:nth-of-type(5) {
  transition-delay: 0.43s;
}

.mobile-menu.is-open .mobile-menu-chapters a:nth-of-type(6) {
  transition-delay: 0.46s;
}

.mobile-menu.is-open .mobile-menu-contact .mini-label {
  transition-delay: 0.5s;
}

.mobile-menu.is-open .mobile-menu-contact p {
  transition-delay: 0.53s;
}

.mobile-menu.is-open .mobile-menu-contact a:nth-of-type(1) {
  transition-delay: 0.56s;
}

.mobile-menu.is-open .mobile-menu-contact a:nth-of-type(2) {
  transition-delay: 0.59s;
}

.mobile-menu.is-open .mobile-menu-contact a:nth-of-type(3) {
  transition-delay: 0.62s;
}

/* Chapter dots */

.chapter-nav {
  position: fixed;
  z-index: 90;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.8rem;
}

.chapter-nav a {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(32, 26, 22, 0.2);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.chapter-nav a span {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  background: rgba(32, 26, 22, 0.88);
  color: var(--ivory);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.chapter-nav a:hover span,
.chapter-nav a.is-active span {
  opacity: 1;
}

.chapter-nav a.is-active {
  background: var(--ink);
  transform: scale(1.35);
}

/* Shared */

.section {
  position: relative;
  padding: var(--section-pad) 1.25rem;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(100%, 980px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.chapter-label,
.eyebrow,
.mini-label {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--soft-brown);
  font-weight: 700;
}

.eyebrow {
  color: var(--paper);
}

h1 {
  font-family: var(--serif1) !important;
  letter-spacing: 0 !important;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif2);
  font-weight: 600;
  line-height: 0.9;
}

h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  /* letter-spacing: -0.04em; */
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  /* letter-spacing: -0.025em; */
}

.section-heading p,
.text-block p,
.guide-copy p,
.final-cta-content p {
  color: var(--muted-ink);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.button:focus-visible {
  outline: 2px solid rgba(243, 220, 184, 0.72);
  outline-offset: 4px;
}

.button-primary {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.button-primary:hover {
  background: #fff;
}

.button-ghost {
  color: var(--ivory);
  border: 1px solid rgba(255, 250, 242, 0.55);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(10px);
}

.button-ghost.dark {
  color: var(--ink);
  border-color: rgba(32, 26, 22, 0.2);
  background: rgba(247, 242, 232, 0.55);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px) scale(1.01);
  }

  .button-primary:hover {
    background: #fff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.17);
  }

  .button-ghost:hover {
    border-color: rgba(255, 250, 242, 0.78);
    background: rgba(255, 250, 242, 0.16);
  }

  .button-ghost.dark:hover {
    border-color: rgba(32, 26, 22, 0.32);
    background: rgba(255, 250, 242, 0.78);
  }
}

/* ==========================================================
   Premium wedding mini-site enhancements
   ========================================================== */

.scene-note {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(138, 111, 92, 0.74);
  font-weight: 700;
}

.chapter-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.chapter-label::before,
.chapter-label::after {
  content: "";
  width: 1.45rem;
  height: 1px;
  background: rgba(138, 111, 92, 0.35);
}

.editorial-note {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 250, 242, 0.86),
    rgba(239, 229, 212, 0.68)
  );
  border: 1px solid rgba(138, 111, 92, 0.15);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.editorial-note::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(215, 195, 163, 0.34);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.editorial-note p {
  color: var(--muted-ink);
}

.editorial-note .signature {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ink);
}

.quote-card {
  position: relative;
  width: min(100%, 900px);
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(215, 195, 163, 0.32),
      transparent 22rem
    ),
    rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(138, 111, 92, 0.14);
  box-shadow: var(--soft-shadow);
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--serif1);
  font-size: clamp(1rem, 1.5vw, 1.9rem);
  line-height: 1.16;
  letter-spacing: 0;
  color: var(--ink);
}

.quote-card p {
  margin: 1.2rem auto 0;
  color: var(--muted-ink);
  max-width: 620px;
}

.frame-mark {
  position: relative;
}

.frame-mark::before,
.frame-mark::after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  pointer-events: none;
  opacity: 0.65;
}

.frame-mark::before {
  top: -0.65rem;
  left: -0.65rem;
  border-top: 1px solid rgba(215, 195, 163, 0.8);
  border-left: 1px solid rgba(215, 195, 163, 0.8);
}

.frame-mark::after {
  right: -0.65rem;
  bottom: -0.65rem;
  border-right: 1px solid rgba(215, 195, 163, 0.8);
  border-bottom: 1px solid rgba(215, 195, 163, 0.8);
}

.audio-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  margin: 1.35rem auto 0;
  height: 2.4rem;
}

.audio-wave span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: rgba(138, 111, 92, 0.38);
  animation: waveLift 2.6s ease-in-out infinite;
}

.audio-wave span:nth-child(1) {
  height: 0.65rem;
  animation-delay: 0s;
}
.audio-wave span:nth-child(2) {
  height: 1.2rem;
  animation-delay: 0.12s;
}
.audio-wave span:nth-child(3) {
  height: 1.8rem;
  animation-delay: 0.24s;
}
.audio-wave span:nth-child(4) {
  height: 1rem;
  animation-delay: 0.36s;
}
.audio-wave span:nth-child(5) {
  height: 2.2rem;
  animation-delay: 0.48s;
}
.audio-wave span:nth-child(6) {
  height: 1.35rem;
  animation-delay: 0.6s;
}
.audio-wave span:nth-child(7) {
  height: 0.8rem;
  animation-delay: 0.72s;
}

@keyframes waveLift {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.46;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.mini-site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--ink);
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.9rem;
}

.mini-site-footer a {
  text-decoration: none;
  color: var(--ivory);
}

/* Hero */

.hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ivory);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  overflow: hidden;
  filter: saturate(0.92) contrast(0.95);
}

.hero-video iframe,
.final-cta-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78svh);
  height: max(100svh, 56.25vw);
  transform: translate(-50%, -50%) scale(1.02);
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(
      circle at 55% 45%,
      transparent 0%,
      rgba(21, 17, 13, 0.12) 34%,
      rgba(21, 17, 13, 0.68) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(21, 17, 13, 0.48),
      rgba(21, 17, 13, 0.1) 40%,
      rgba(21, 17, 13, 0.66)
    );
}

/* Sticky scroll-over hero reveal */
/* Sticky scroll-over hero reveal */

main {
  position: relative;
  isolation: isolate;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
}

main
  > section:not(.hero):not(.final-cta):not(.portfolio-hero):not(
    .pricing-hero
  ):not(.inquire-hero) {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

main
  > section:not(.hero):not(.final-cta):not(.portfolio-hero):not(
    .pricing-hero
  ):not(.inquire-hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 8%,
      rgba(215, 195, 163, 0.24),
      transparent 28rem
    ),
    radial-gradient(
      circle at 85% 34%,
      rgba(154, 165, 140, 0.1),
      transparent 30rem
    ),
    linear-gradient(135deg, var(--ivory), #fbf7ef 42%, var(--paper));
}

.hero + .section {
  margin-top: -1px;
  box-shadow: 0 -34px 90px rgba(21, 17, 13, 0.16);
}

.hero-video,
.final-cta-video {
  transform: none;
}

.hero-content[data-hero-drift],
.final-cta-content[data-hero-drift],
.portfolio-hero-content[data-hero-drift],
.pricing-hero-content[data-hero-drift],
.inquire-hero-content[data-hero-drift],
.hero-title-line[data-hero-drift] {
  opacity: 1;
}

.hero-content {
  width: min(100%, 1500px);
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 span,
h2 span {
  display: block;
  font-style: italic;
  color: #f3dcb8;
}

.split-hero-title .hero-title-line {
  transform: translate3d(var(--hero-drift-x, 0px), var(--hero-drift-y, 0px), 0);
  will-change: transform;
}

.hero h1 .hero-title-main {
  font-style: normal;
  color: inherit;
}

.hero-copy {
  width: min(100%, 680px);
  margin: 1.35rem auto 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 250, 242, 0.72);
  display: grid;
  place-items: center;
  gap: 0.5rem;
}

.scroll-cue span {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    rgba(255, 250, 242, 0),
    rgba(255, 250, 242, 0.9)
  );
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.65);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Feature film */

.feature-section {
  background: linear-gradient(
    to bottom,
    rgba(247, 242, 232, 0.92),
    rgba(239, 229, 212, 0.78)
  );
}

.film-shell {
  position: relative;
  padding: clamp(0.7rem, 1.4vw, 1.2rem);
  border-radius: calc(var(--radius-lg) + 12px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.62),
      rgba(239, 229, 212, 0.82)
    ),
    var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 26, 22, 0.08);
}

.film-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #16120f;
  aspect-ratio: 16 / 9;
}

.film-frame video,
.film-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.film-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.5rem 0.15rem;
  color: var(--muted-ink);
}

.film-caption span {
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.film-caption p {
  margin: 0;
  max-width: 580px;
  font-size: 0.92rem;
}

.feature-invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-top: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(138, 111, 92, 0.14);
  box-shadow: var(--soft-shadow);
}

.feature-invite h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.feature-invite p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

/* Intro */

.intro-section {
  overflow: hidden;
}

.paper-shadow {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(1px);
}

.paper-shadow-one {
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  right: 0;
  top: 12%;
  background: radial-gradient(
    circle,
    rgba(154, 165, 140, 0.5),
    transparent 68%
  );
}

.image-stack {
  position: relative;
  min-height: 640px;
}

.stack-img {
  position: absolute;
  display: block;
  overflow: hidden;
  line-height: 0;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Premium Chapter Two photo-card hover */
.stack-img {
  isolation: isolate;
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.45s ease;
  will-change: transform;
}

.stack-img img {
  transition:
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.65s ease;
}

.stack-img::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 26px;
  opacity: 0;
  transition:
    opacity 0.45s ease,
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.image-stack:hover .stack-img {
  box-shadow: 0 34px 90px rgba(36, 27, 20, 0.2);
}

.image-stack:hover .stack-img-large {
  transform: translate3d(0, -8px, 0) scale(1.015);
}

.image-stack:hover .stack-img-small {
  transform: translate3d(6px, -10px, 0) rotate(2deg) scale(1.025);
}

.image-stack:hover .stack-img img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.02) brightness(1.03);
}

.image-stack:hover .stack-img::before {
  opacity: 1;
  transform: translateX(120%) rotate(8deg);
}

.image-stack:hover .stack-img::after {
  opacity: 1;
  transform: scale(0.985);
}

@media (hover: none) {
  .image-stack:hover .stack-img,
  .image-stack:hover .stack-img-large,
  .image-stack:hover .stack-img-small,
  .image-stack:hover .stack-img img,
  .image-stack:hover .stack-img::before,
  .image-stack:hover .stack-img::after {
    transform: none;
  }

  .stack-img-small {
    transform: rotate(3deg);
  }
}

.stack-img-large {
  inset: 0 auto auto 0;
  width: min(86%, 520px);
  height: 620px;
  border-radius: 38px;
}

.stack-img-small {
  right: 0;
  bottom: 0;
  width: min(52%, 310px);
  aspect-ratio: 4 / 5;
  border: 10px solid var(--ivory);
  border-radius: 28px;
  transform: rotate(3deg);
}

.text-block {
  max-width: 620px;
}

.videographer-note {
  width: min(100%, 720px);
  margin: clamp(6rem, 15vw, 10rem) auto;
  text-align: center;
}

.videographer-note p {
  margin: 0 auto;
  color: var(--muted-ink);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}

/* Need video */

.need-video-section {
  background: rgba(255, 250, 242, 0.42);
}

.memory-section {
  overflow: hidden;
}

.memory-lower {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.memory-answer-block {
  padding: clamp(1.7rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(138, 111, 92, 0.12);
  background: linear-gradient(
    145deg,
    rgba(255, 250, 242, 0.74),
    rgba(239, 229, 212, 0.48)
  );
}

.memory-answer-block {
  margin-bottom: clamp(1.4rem, 4vw, 2.2rem);
}

.film-feeling-block {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.film-feeling-block .section-heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.3rem);
}

.film-feeling-block .style-card-grid {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.64);
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: var(--soft-shadow);
}

.comparison-card p {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.comparison-card-dark {
  background: linear-gradient(
    135deg,
    rgba(32, 26, 22, 0.96),
    rgba(74, 57, 44, 0.95)
  );
  color: var(--ivory);
}

.comparison-card-dark p {
  color: rgba(255, 250, 242, 0.78);
}

.card-number {
  color: var(--clay);
  font-weight: 700;
}

.quiet-line {
  text-align: center;
  color: var(--soft-brown);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 780px;
}

.question-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(247, 242, 232, 0.88),
    rgba(255, 250, 242, 0.76)
  );
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: var(--soft-shadow);
  margin-bottom: 2rem;
}

.question-list {
  display: grid;
  gap: 0.7rem;
}

.memory-panel .audio-wave {
  grid-column: 1 / -1;
}

.question-list p {
  margin: 0;
  padding: 1rem 1rem 1rem 2.6rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--muted-ink);
  position: relative;
}

.question-list p::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: var(--sage);
  font-weight: 700;
}

/* Guide */

.guide-section {
  overflow: hidden;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.soft-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.soft-list li {
  position: relative;
  color: var(--muted-ink);
  padding-left: 1.8rem;
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--clay);
}

.guide-card {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: calc(var(--radius-lg) + 10px);
  background:
    radial-gradient(
      circle at top right,
      rgba(215, 195, 163, 0.6),
      transparent 18rem
    ),
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(239, 229, 212, 0.86));
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: var(--shadow);
}

.guide-mockup {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(32, 26, 22, 0.04), transparent),
    rgba(247, 242, 232, 0.74);
  position: relative;
}

.guide-sticker {
  position: absolute;
  top: 1rem;
  right: 1rem;
  transform: rotate(5deg);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: var(--soft-shadow);
}

.guide-cover {
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  padding: 1.3rem;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(rgba(32, 26, 22, 0.18), rgba(32, 26, 22, 0.6)),
    url("images/film-06.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(32, 26, 22, 0.25);
}

.guide-cover p,
.guide-cover span {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.guide-cover h3 {
  font-size: 2.3rem;
  color: var(--ivory);
}

.guide-form label {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.input-row {
  display: flex;
  gap: 0.6rem;
}

.input-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(32, 26, 22, 0.12);
  border-radius: 999px;
  padding: 0.95rem 1rem;
  background: rgba(255, 250, 242, 0.8);
  font: inherit;
  color: var(--ink);
}

.input-row input:focus {
  outline: 2px solid rgba(185, 130, 114, 0.28);
  border-color: rgba(185, 130, 114, 0.5);
}

.input-row button {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--ivory);
  background: var(--ink);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.input-row button:hover {
  transform: translateY(-2px);
  background: #3a2e26;
}

.form-note,
.form-message {
  color: var(--muted-ink);
  font-size: 0.9rem;
  margin: 0.8rem 0 0;
}

.form-message {
  min-height: 1.3em;
  color: var(--sage);
  font-weight: 700;
}

/* Styles */

.style-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.style-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.style-card:hover,
.style-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  outline: none;
}

.style-card picture,
.style-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.style-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-card div {
  padding: 1.35rem;
}

.style-card span {
  color: var(--clay);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.style-card p {
  color: var(--muted-ink);
}

.definition-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.definition-grid-eyebrow {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0 0 0.35rem;
  text-align: center;
}

.definition-card div {
  padding: 1.35rem;
}

.definition-card h3 {
  margin-top: 0.4rem;
}

.definition-entry {
  position: relative;
}

.definition-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clay);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.definition-kicker::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: rgba(185, 130, 114, 0.35);
  transition: width 0.35s ease;
}

.definition-card:hover .definition-kicker::after,
.definition-card:focus-visible .definition-kicker::after {
  width: 2.6rem;
}

.definition-entry h3 {
  margin-top: 0.65rem;
}

.definition-subline {
  margin: 0.55rem 0 0;
  color: var(--soft-brown);
  font-family: var(--serif2);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.35;
}

.definition-copy {
  margin: 1.15rem 0 0;
}

.definition-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.definition-footnote {
  margin: 1.15rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(138, 111, 92, 0.16);
  color: rgba(110, 98, 90, 0.82);
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feeling-picker {
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(215, 195, 163, 0.36),
      transparent 18rem
    ),
    linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(239, 229, 212, 0.7));
  border: 1px solid rgba(138, 111, 92, 0.18);
  box-shadow: var(--shadow);
}

.feeling-picker-heading {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.feeling-picker-heading h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.feeling-picker-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.feeling-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.feeling-chips button {
  border: 1px solid rgba(255, 250, 242, 0.72);
  background: linear-gradient(
    135deg,
    rgba(255, 250, 242, 0.78),
    rgba(255, 250, 242, 0.22) 46%,
    rgba(215, 195, 163, 0.34)
  );
  border-radius: 999px;
  padding: 0.8rem 1.18rem;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -10px 22px rgba(255, 250, 242, 0.28),
    0 12px 28px rgba(36, 27, 20, 0.09);
  backdrop-filter: blur(16px) saturate(1.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border 0.2s ease;
}

.feeling-chips button:hover {
  transform: translateY(-2px);
}

.feeling-chips button.is-selected {
  background: linear-gradient(
    135deg,
    rgba(32, 26, 22, 0.94),
    rgba(82, 63, 49, 0.9) 48%,
    rgba(215, 195, 163, 0.44)
  );
  color: var(--ivory);
  border-color: rgba(255, 250, 242, 0.36);
}

.feeling-result {
  width: min(100%, 850px);
  margin: 1.45rem auto 0;
  padding: clamp(0.9rem, 2vw, 1.25rem) 0 0;
  border-top: 1px solid rgba(138, 111, 92, 0.16);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.75;
  text-align: center;
}

/* Moments */

.moments-section {
  background: linear-gradient(
    to bottom,
    rgba(239, 229, 212, 0.58),
    rgba(247, 242, 232, 0.66)
  );
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.moment-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.66);
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: var(--soft-shadow);
}

.moment-card span {
  color: var(--clay);
  font-weight: 700;
}

.moment-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

/* Wedding story preview */

.story-preview-section {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(215, 195, 163, 0.22),
      transparent 28rem
    ),
    linear-gradient(
      to bottom,
      rgba(255, 250, 242, 0.52),
      rgba(239, 229, 212, 0.5)
    );
}

.story-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-preview-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 250, 242, 0.82),
    rgba(239, 229, 212, 0.62)
  );
  border: 1px solid rgba(138, 111, 92, 0.14);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.story-preview-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.story-preview-media {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #16120f;
}

.story-preview-media picture,
.story-preview-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
  transition:
    transform 0.7s cubic-bezier(0.18, 0.72, 0.22, 1),
    opacity 0.35s ease;
}

.story-preview-card:hover .story-preview-media img {
  transform: scale(1.05);
  opacity: 0.82;
}

.story-preview-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-play-mark {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.84);
  color: var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.story-preview-copy {
  padding: 1.35rem;
}

.story-preview-copy p {
  color: var(--muted-ink);
}

.feature-film-thumbnail {
  height: 100%;
  isolation: isolate;
}

.feature-film-thumbnail picture,
.feature-film-thumbnail img {
  height: 100%;
}

.feature-film-thumbnail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 250, 242, 0.08),
      rgba(21, 17, 13, 0.08) 34%,
      rgba(21, 17, 13, 0.46) 100%
    ),
    linear-gradient(to bottom, rgba(21, 17, 13, 0.08), rgba(21, 17, 13, 0.42));
  opacity: 0.88;
  transition:
    opacity 0.35s ease,
    background 0.35s ease;
}

.feature-film-thumbnail::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: calc(var(--radius-lg) - 10px);
  opacity: 0.7;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.feature-play-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 1rem 0.72rem 0.78rem;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(
    135deg,
    rgba(255, 250, 242, 0.92),
    rgba(247, 242, 232, 0.68)
  );
  border: 1px solid rgba(255, 250, 242, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.1);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.feature-play-icon {
  width: clamp(1.3rem, 3vw, 2.5rem);
  height: clamp(1.3rem, 3vw, 2.5rem);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: radial-gradient(
    circle at 35% 28%,
    rgba(255, 255, 255, 0.95),
    rgba(215, 195, 163, 0.68)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 28px rgba(36, 27, 20, 0.18);
}

.feature-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid var(--ink);
}

.feature-play-copy {
  display: grid;
  gap: 0.05rem;
  text-align: left;
  line-height: 1;
}

.feature-play-copy strong {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
}

.feature-play-copy small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(32, 26, 22, 0.62);
}

.feature-film-thumbnail:hover img {
  transform: scale(1.035);
  opacity: 0.82;
  filter: grayscale(0.18) saturate(0.78) contrast(0.98) brightness(1.04);
}

.feature-film-thumbnail:hover::before {
  opacity: 0.72;
}

.feature-film-thumbnail:hover::after {
  opacity: 0.95;
  transform: scale(0.985);
}

.feature-film-thumbnail:hover .feature-play-button,
.feature-film-thumbnail:focus-visible .feature-play-button {
  transform: translate(-50%, -50%) scale(1.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.feature-film-thumbnail:focus-visible {
  outline: 3px solid rgba(185, 130, 114, 0.48);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .feature-play-button {
    gap: 0.62rem;
    padding: 0.58rem 0.78rem 0.58rem 0.62rem;
  }

  .feature-play-copy small {
    display: none;
  }

  .feature-play-copy strong {
    font-size: 0.9rem;
    padding-top: 5%;
  }

  .feature-play-icon {
    width: 2rem;
    height: 2rem;
  }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

/* Experience */

.experience-section {
  overflow: hidden;
}

.experience-lower {
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.behind-camera-note {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  text-align: left;
}

.behind-camera-note h3 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.process-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(32, 26, 22, 0.94),
    rgba(77, 59, 46, 0.94)
  );
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
}

.process-step:first-child {
  padding-top: 0;
}

.process-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-step span {
  color: var(--champagne);
  font-weight: 700;
}

.process-step h3 {
  font-size: 1.8rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.74);
}

/* Packages */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.package-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.66);
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.package-group-label {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: clamp(1.85rem, 4vw, 2.7rem) 0 0.35rem;
  border-top: 1px solid rgba(138, 111, 92, 0.18);
}

.package-group-label:first-child {
  padding-top: 0;
  border-top: 0;
}

.package-group-label h3 {
  margin-bottom: 0;
  max-width: 720px;
  font-size: clamp(2.05rem, 3vw, 3.35rem);
}

.package-group-label p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted-ink);
}

.package-group-label .mini-label {
  margin-bottom: 0;
}

.package-card p {
  color: var(--muted-ink);
}

.package-card a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.package-card a::after,
.footer-links a::after,
.footer-contact a::after,
.mini-site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  transform: scaleX(0);
  transform-origin: right;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.package-card a:focus-visible {
  outline: 2px solid rgba(185, 130, 114, 0.42);
  outline-offset: 4px;
}

.package-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 250, 242, 0.72),
      transparent 18rem
    ),
    rgba(255, 250, 242, 0.72);
}

.package-card-wide h3 {
  max-width: 760px;
}

.package-card-wide p:not(.mini-label) {
  max-width: 860px;
  margin-bottom: 0;
}

.package-card-wide a {
  justify-self: end;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .film-shell:hover,
  .feature-invite:hover,
  .memory-answer-block:hover,
  .comparison-card:hover,
  .feeling-picker:hover,
  .package-card:hover,
  .photo-partner-card:hover,
  .process-card:hover,
  .editorial-note:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(138, 111, 92, 0.2);
  }

  .package-card:hover {
    background: rgba(255, 250, 242, 0.78);
  }

  .package-card a:hover {
    color: var(--clay);
    transform: translateX(2px);
  }

  .package-card a:hover::after,
  .footer-links a:hover::after,
  .footer-contact a:hover::after,
  .mini-site-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 0.65;
  }
}

.package-card:focus-within,
.film-shell:focus-within,
.feature-invite:focus-within,
.memory-answer-block:focus-within,
.comparison-card:focus-within,
.feeling-picker:focus-within,
.photo-partner-card:focus-within,
.process-card:focus-within,
.editorial-note:focus-within {
  border-color: rgba(185, 130, 114, 0.4);
  box-shadow:
    0 0 0 3px rgba(185, 130, 114, 0.12),
    var(--soft-shadow);
}

.film-shell,
.feature-invite,
.memory-answer-block,
.comparison-card,
.feeling-picker,
.photo-partner-card,
.process-card,
.editorial-note {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.package-glass-button {
  color: var(--ink);
  border: 1px solid rgba(255, 250, 242, 0.72);
  background: linear-gradient(
    135deg,
    rgba(255, 250, 242, 0.78),
    rgba(255, 250, 242, 0.34)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 16px 38px rgba(36, 27, 20, 0.13);
  backdrop-filter: blur(16px);
}

.package-glass-button:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 250, 242, 0.92),
    rgba(255, 250, 242, 0.48)
  );
}

.featured-package {
  background:
    radial-gradient(
      circle at top right,
      rgba(215, 195, 163, 0.58),
      transparent 15rem
    ),
    rgba(255, 250, 242, 0.88);
  transform: translateY(-18px);
}

.stories-heading {
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

/* Photo partner */

.photo-partner-section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(215, 195, 163, 0.24),
      transparent 26rem
    ),
    rgba(255, 250, 242, 0.42);
}

.photo-partner-card {
  position: relative;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 250, 242, 0.82),
    rgba(239, 229, 212, 0.68)
  );
  border: 1px solid rgba(138, 111, 92, 0.16);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.photo-partner-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(215, 195, 163, 0.35);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.photo-partner-card h2 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 820px;
  margin: 0 auto;
}

.photo-partner-card p {
  max-width: 650px;
  margin: 1.2rem auto 0;
  color: var(--muted-ink);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.photo-partner-card strong {
  color: var(--ink);
  font-weight: 700;
}

.photo-partner-card .button {
  margin-top: 1.6rem;
}

.photo-film-process {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center;
  margin: clamp(1.4rem, 4vw, 2.2rem) auto 0;
  max-width: 860px;
  text-align: left;
}

.photo-film-video {
  --video-radius: calc(var(--radius-lg) - 14px);

  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border-radius: var(--video-radius);
  background: transparent;
  line-height: 0;

  /* Stronger iframe/video clipping than border-radius alone */
  mask-image: linear-gradient(#000, #000);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(#000, #000);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
}

.photo-film-video video,
.photo-film-video img,
.photo-film-video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.photo-film-video video,
.photo-film-video img {
  object-fit: cover;
  background: #16120f;
}

.photo-film-video iframe {
  top: -3%;
  left: -3%;
  width: 106%;
  height: 106%;
  transform: none;
  background: transparent;
}

.photo-film-process-copy a {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(185, 130, 114, 0.45);
  text-underline-offset: 0.18em;
}

.photo-film-process-copy p {
  margin-left: 0;
  margin-right: 0;
}

.photo-film-process-copy .scene-note {
  margin-top: 0;
}

.process-thumbnail-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 12px);
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

.process-thumbnail-card:focus-visible {
  outline: 2px solid rgba(243, 220, 184, 0.74);
  outline-offset: 5px;
}

.process-thumbnail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.92) contrast(0.96);
  transition:
    transform 0.7s cubic-bezier(0.18, 0.72, 0.22, 1),
    opacity 0.35s ease;
}

.process-thumbnail-card picture,
.process-thumbnail-card picture img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-thumbnail-card:hover img {
  transform: scale(1.04);
  opacity: 0.76;
}

@media (hover: hover) and (pointer: fine) {
  .process-thumbnail-card:hover .story-play-mark {
    transform: translate(-50%, -2px) scale(1.015);
  }
}

.process-thumbnail-card .story-play-mark {
  bottom: 1rem;
}

.photo-film-video .process-thumbnail-card {
  position: absolute;
  inset: 0;
}

.film-frame .feature-film-thumbnail {
  border-radius: 0;
  box-shadow: none;
}

.process-thumbnail-card {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.wedding-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 1rem;
}

.wedding-video-modal.is-open {
  display: grid;
}

.wedding-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 13, 0.72);
  backdrop-filter: blur(10px);
}

.wedding-video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 2rem), 1040px);
}

.wedding-video-modal-close {
  margin: 0 0 0.7rem auto;
  display: flex;
  border: 1px solid rgba(255, 250, 242, 0.35);
  background: rgba(247, 242, 232, 0.9);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.wedding-video-modal-frame {
  position: relative;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.wedding-video-modal-aspect {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}

.wedding-video-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}

/* About */

.about-photo picture,
.about-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border-radius: 50px;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(32, 26, 22, 0.08);
  box-shadow: 0 10px 30px rgba(32, 26, 22, 0.05);
  overflow: hidden;
  transition:
    border-radius 0.35s ease,
    background 0.3s ease,
    transform 0.25s ease;
}

.faq-list details:hover {
  transform: scale(0.99);
}

.faq-list details.open {
  border-radius: var(--radius-md);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.25;
  transition: padding 0.35s ease;
}

.faq-list details.open summary {
  padding-bottom: 0.7rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--clay);
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  color: var(--muted-ink);
  transition:
    max-height 0.42s cubic-bezier(0.2, 0.72, 0.2, 1),
    padding 0.42s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.faq-list details.open p {
  padding: 0.1rem 1.4rem 1.05rem;
}

/* Final CTA */

.final-cta {
  min-height: 78svh;
  min-height: 78dvh;
  display: grid;
  place-items: center;
  padding: var(--section-pad) 1.25rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
  isolation: isolate;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: none;
  background: transparent;
}

.final-cta-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  filter: saturate(0.9) contrast(0.95);
}

.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 250, 242, 0.08),
      transparent 28rem
    ),
    linear-gradient(rgba(32, 26, 22, 0.56), rgba(32, 26, 22, 0.7));
}

.final-cta-content {
  width: min(100%, 820px);
}

.final-cta h2 {
  font-family: var(--serif1);
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.final-cta-content p {
  color: rgba(255, 250, 242, 0.82);
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background:
    linear-gradient(135deg, rgba(32, 26, 22, 0.98), rgba(45, 35, 28, 0.98)),
    var(--ink);
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.9rem;
  border-top: 1px solid rgba(215, 195, 163, 0.18);
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand p {
  margin: 0;
  line-height: 1.45;
}

.footer-name {
  font-family: var(--serif1);
  font-size: 1.12rem;
  color: var(--ivory);
}

.footer-copy {
  margin-top: 0.25rem !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.52);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.85rem;
}

.site-footer a {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  text-decoration: none;
  color: var(--ivory);
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.footer-contact a {
  color: rgba(243, 220, 184, 0.92);
}

.site-footer a:focus-visible {
  outline: 2px solid rgba(243, 220, 184, 0.7);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer a:hover {
    color: #f3dcb8;
    transform: translateY(-1px);
  }
}

/* Reveal animations */

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.85s ease,
    transform 0.95s cubic-bezier(0.18, 0.72, 0.22, 1),
    filter 0.85s ease;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.992);
  filter: blur(2px);
}

body.reveal-ready .film-shell.reveal,
body.reveal-ready .feature-invite.reveal,
body.reveal-ready .memory-answer-block.reveal,
body.reveal-ready .comparison-card.reveal,
body.reveal-ready .feeling-picker.reveal,
body.reveal-ready .style-card.reveal,
body.reveal-ready .story-preview-card.reveal,
body.reveal-ready .package-card.reveal,
body.reveal-ready .photo-partner-card.reveal,
body.reveal-ready .process-card.reveal,
body.reveal-ready .about-photo.reveal,
body.reveal-ready .summary-panel.reveal,
body.reveal-ready .final-cta-content.reveal {
  transform: translate3d(0, 20px, 0) scale(0.985);
}

body.reveal-ready .hero-content.reveal,
body.reveal-ready .portfolio-hero-content.reveal,
body.reveal-ready .pricing-hero-content.reveal,
body.reveal-ready .inquire-hero-content.reveal {
  transform: translate3d(
      var(--hero-drift-x, 0px),
      calc(var(--hero-drift-y, 0px) + 16px),
      0
    )
    scale(0.996);
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.reveal-ready .hero-content.reveal.is-visible,
body.reveal-ready .portfolio-hero-content.reveal.is-visible,
body.reveal-ready .pricing-hero-content.reveal.is-visible,
body.reveal-ready .inquire-hero-content.reveal.is-visible,
body.reveal-ready .final-cta-content.reveal.is-visible {
  opacity: 1;
  transform: translate3d(var(--hero-drift-x, 0px), var(--hero-drift-y, 0px), 0)
    scale(1);
}

body.reveal-ready .stagger-reveal-item.reveal {
  transform: translate3d(0, 26px, 0) scale(0.975);
  filter: blur(3px);
}

body.reveal-ready .stagger-reveal-item.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Responsive */

@media (max-width: 980px) {
  :root {
    --section-pad: clamp(4rem, 9vw, 7rem);
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .chapter-nav {
    display: none;
  }

  .two-column,
  .two-column.reverse,
  .guide-layout,
  .question-panel,
  .photo-film-process,
  .feature-invite,
  .package-card-wide,
  .package-group-label {
    grid-template-columns: 1fr;
  }

  .two-column.reverse .text-block {
    order: -1;
  }

  .image-stack {
    width: min(100%, 720px);
    min-height: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .stack-img-large {
    height: 500px;
  }

  .comparison-grid,
  .style-card-grid,
  .story-preview-grid,
  .moments-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

  .package-card-wide a {
    justify-self: start;
    white-space: normal;
  }

  .package-group-label h3,
  .package-group-label p,
  .package-group-label .mini-label {
    grid-column: 1;
    grid-row: auto;
  }

  .package-group-label .mini-label {
    padding-top: 0;
  }

  .film-caption {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .two-column,
  .two-column.reverse {
    gap: clamp(2rem, 8vw, 3rem);
  }

  .film-caption {
    flex-direction: column;
  }

  .feature-invite {
    align-items: stretch;
  }

  .package-card-wide a {
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: clamp(3.6rem, 13vw, 5rem);
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .chapter-label::before,
  .chapter-label::after {
    width: 0.8rem;
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: min(calc(100% - 20px), 1180px);
    padding: 0.62rem 0.68rem 0.62rem 0.82rem;
    gap: 0.7rem;
  }

  .brand-script {
    font-size: clamp(1.08rem, 5vw, 1.35rem);
  }

  .brand-small {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .brand-emblem {
    width: 2rem;
    height: 2rem;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .section {
    padding-left: clamp(1rem, 4vw, 1.25rem);
    padding-right: clamp(1rem, 4vw, 1.25rem);
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 7rem 1rem 4.5rem;
    align-items: end;
  }

  .hero-content {
    padding-bottom: clamp(2rem, 8vh, 4rem);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14.5vw, 5rem);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: clamp(1rem, 4vw, 1.12rem);
    line-height: 1.65;
    max-width: 34rem;
  }

  h2 {
    font-size: clamp(2.18rem, 10.8vw, 3.65rem);
    line-height: 0.98;
  }

  h3 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
    line-height: 1;
  }

  .section-heading {
    margin-bottom: clamp(1.75rem, 8vw, 2.75rem);
  }

  .section-heading p,
  .text-block p,
  .final-cta-content p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1rem;
  }

  .memory-section .two-column {
    gap: clamp(1.5rem, 7vw, 2.4rem);
  }

  .image-stack {
    position: relative;
    display: block;
    width: min(100%, 430px);
    min-height: clamp(410px, 112vw, 540px);
    margin: 0 auto clamp(1rem, 5vw, 1.6rem);
  }

  .stack-img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(36, 27, 20, 0.16);
  }

  .stack-img-large {
    top: 0;
    left: 0;
    width: min(79%, 330px);
    height: clamp(360px, 98vw, 470px);
    border-radius: 30px;
  }

  .stack-img-small {
    right: 0;
    bottom: 0;
    width: min(48%, 210px);
    aspect-ratio: 4 / 5;
    border: 7px solid var(--ivory);
    border-radius: 20px;
    transform: rotate(3.5deg);
  }

  .stack-img-small img {
    border-radius: 0px;
  }

  .film-shell,
  .feature-invite,
  .memory-answer-block,
  .comparison-card,
  .question-panel,
  .feeling-picker,
  .style-card,
  .quote-card,
  .story-preview-card,
  .package-card,
  .photo-partner-card,
  .process-card {
    border-radius: 26px;
  }

  .feature-invite,
  .memory-answer-block,
  .question-panel,
  .quote-card,
  .feeling-picker,
  .photo-partner-card {
    padding: clamp(1.15rem, 5vw, 1.6rem);
  }

  .quote-card {
    background: none;
    border: none;
    box-shadow: none;
  }

  .quote-card blockquote {
    font-size: clamp(1.18rem, 6vw, 1.36rem);
  }

  .comparison-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .comparison-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .quiet-line {
    display: none;
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .question-panel {
    gap: 1rem;
  }

  .question-list {
    gap: 0.55rem;
  }

  .question-list p {
    border-radius: 18px;
    padding: 0.85rem 0.9rem 0.85rem 2.35rem;
    line-height: 1.55;
  }

  .story-preview-media img,
  .style-card img {
    aspect-ratio: 16 / 10;
  }

  .story-preview-copy,
  .style-card div {
    padding: 1.1rem;
  }

  .package-card {
    padding: 1.2rem;
  }

  .featured-package {
    transform: none;
  }

  .feeling-chips {
    justify-content: center;
    gap: 0.55rem;
  }

  .feeling-chips button {
    padding: 0.68rem 0.86rem;
    font-size: 0.92rem;
  }

  .feeling-result {
    text-align: center;
    font-size: 0.98rem;
  }

  .photo-film-process {
    text-align: center;
  }

  .photo-film-process-copy {
    text-align: left;
    padding: 0 0.2rem;
  }

  .photo-film-video {
    border-radius: 24px;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row button {
    width: 100%;
  }

  .question-list p {
    border-radius: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .footer-links,
  .footer-contact {
    justify-content: flex-start;
  }

  .site-footer a {
    min-height: 40px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.35rem);
  }

  .final-cta h2 {
    font-size: clamp(2.5rem, 12vw, 4.4rem);
    line-height: 0.98;
  }

  .section-heading p,
  .text-block p,
  .final-cta-content p {
    font-size: 0.98rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.65rem);
  }

  .image-stack {
    min-height: clamp(380px, 116vw, 500px);
  }

  .stack-img-large {
    width: 76%;
  }

  .stack-img-small {
    width: 50%;
    border-width: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  body.reveal-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-content[data-hero-drift],
  .final-cta-content[data-hero-drift],
  .portfolio-hero-content[data-hero-drift],
  .pricing-hero-content[data-hero-drift],
  .inquire-hero-content[data-hero-drift],
  .hero-title-line[data-hero-drift] {
    opacity: 1 !important;
    transform: none !important;
  }
}
