@font-face {
  font-family: "Buongiorno Rastellino";
  src: url("assets/fonts/Buongiorno%20Rastellino.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Prestigious";
  src: url("assets/fonts/Prestigious.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Griffiths";
  src: url("assets/fonts/Griffiths.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Bifore";
  src: url("assets/fonts/csbifore-regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Baskervald";
  src: url("assets/fonts/BaskervaldADFStd.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Baskervald Bold";
  src: url("assets/fonts/BaskervaldADFStd-Bold.otf") format("opentype");
  font-display: swap;
}

:root {
  --ivory: #fffdf8;
  --warm: #faf7f0;
  --white: #ffffff;
  --gold: #c8a94d;
  --deep-gold: #9f7a22;
  --champagne: #f4e7c5;
  --ink: #111111;
  --muted: #777777;
  --line: rgba(200, 169, 77, 0.25);
  --soft-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --gold-shadow: 0 18px 50px rgba(200, 169, 77, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 231, 197, 0.52), transparent 30rem),
    linear-gradient(180deg, var(--ivory), var(--warm) 42%, var(--ivory));
  overflow-x: hidden;
}

body.menu-open,
body.is-loading {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure {
  margin: 0;
}

::selection {
  color: var(--ink);
  background: var(--champagne);
}

.section {
  position: relative;
  isolation: isolate;
}

.section-shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--deep-gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}

h2 {
  margin-bottom: 0;
  font-size: 4.75rem;
  line-height: 0.96;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.08;
}

p {
  line-height: 1.75;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    repeating-linear-gradient(45deg, rgba(159, 122, 34, 0.035) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.025) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

.gold-arc {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(200, 169, 77, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.gold-arc::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 169, 77, 0.12);
  transform: translateY(-50%);
}

.arc-one {
  width: 680px;
  height: 680px;
  top: 12%;
  right: -260px;
}

.arc-two {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 8%;
  border-color: rgba(159, 122, 34, 0.18);
}

.arc-two::after {
  right: -3.5px;
  width: 7px;
  height: 7px;
  background: var(--deep-gold);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 450ms ease, border-color 450ms ease, background 450ms ease;
  will-change: transform;
}

.btn i {
  margin-right: 9px;
  font-size: 1rem;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--deep-gold));
  transition: height 450ms ease;
  z-index: -1;
}

.btn:hover::after,
.btn:focus-visible::after {
  height: 100%;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  box-shadow: var(--gold-shadow);
}

.btn-primary::after {
  background: var(--ink);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--white);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--ivory);
}

.preloader.is-done {
  pointer-events: none;
}

.preloader-mark {
  width: 92px;
  height: 92px;
  margin-bottom: 12px;
}

.preloader svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.preloader circle {
  fill: none;
  stroke-width: 1.4;
}

.loader-track {
  stroke: rgba(200, 169, 77, 0.18);
}

.loader-stroke {
  stroke: var(--gold);
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  stroke-linecap: round;
}

.preloader-title {
  margin: 0;
  color: var(--deep-gold);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.preloader-subtitle {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
}

.preloader-progress {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.cursor-ring {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 169, 77, 0.72);
  border-radius: 50%;
  color: var(--deep-gold);
  font-size: 0.62rem;
  font-weight: 800;
  background: rgba(255, 253, 248, 0.18);
  backdrop-filter: blur(5px);
}

.cursor-ring span {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cursor-ring.is-view span {
  opacity: 1;
  transform: scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 40px;
  color: var(--ink);
  transition: background 350ms ease, border-color 350ms ease, min-height 350ms ease;
}

.nav-solid .site-header,
.menu-open .site-header {
  min-height: 66px;
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-text {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.52rem;
  font-size: 1.85rem;
  line-height: 1;
  min-width: max-content;
  white-space: nowrap;
}

.brand-text-studio {
  font-family: "Buongiorno Rastellino", var(--serif);
  font-size: 3.2em;
  color: var(--ink);
}

.brand-text-highlights {
  font-family: "Prestigious", var(--serif);
  font-size: 1.12em;
  color: var(--ink);
  transform: translateY(0.18em);
}

@media (max-width: 900px) {
  .brand-text {
    font-size: 1.55rem;
  }
}

@media (max-width: 430px) {
  .brand-text {
    gap: 0.38rem;
    font-size: 1.28rem;
  }
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.54);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 300ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 253, 248, 0.96);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
  gap: 22px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.6rem;
}

/* =========================
   HERO BACKGROUND CAROUSEL
========================= */

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .site-header {
  color: var(--champagne);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .brand-text,
body:not(.gallery-page):not(.nav-solid):not(.menu-open) .brand-text-studio {
  color: var(--champagne);
}

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .brand-text-highlights {
  color: var(--ivory);
}

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .desktop-nav {
  color: rgba(244, 231, 197, 0.92);
}

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .desktop-nav a::after {
  background: var(--champagne);
}

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(10, 8, 6, 0.24);
}

body:not(.gallery-page):not(.nav-solid):not(.menu-open) .menu-toggle span {
  background: var(--champagne);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #090806;
  z-index: 3;
}

.hero .gold-arc {
  display: none;
}

.hero .grain {
  z-index: 5;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 8;
  display: grid;
  align-items: center;
  width: min(100% - 360px, 1560px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(118px, 16vh, 170px) 0 clamp(88px, 12vh, 132px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 0;
  pointer-events: auto;
}

.hero .eyebrow {
  color: var(--champagne);
  letter-spacing: 0.16em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.hero-title {
  max-width: 880px;
  margin: 0;
  color: var(--white);
  font-size: clamp(4.4rem, 7.8vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
}

.mask-line {
  display: block;
  overflow: hidden;
}

.mask-line span {
  display: block;
}

.hero-subtitle {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.66;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero .btn-primary {
  color: var(--white);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.hero .btn-primary::after {
  background: var(--ink);
}

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  color: var(--ink);
  border-color: var(--champagne);
}

.hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: #090806;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
}

.hero-bg-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #090806;
}

.hero-bg-track::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.84) 0%, rgba(7, 6, 4, 0.58) 38%, rgba(7, 6, 4, 0.2) 68%, rgba(7, 6, 4, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 6, 4, 0.68) 0%, rgba(7, 6, 4, 0.12) 42%, rgba(7, 6, 4, 0.82) 100%);
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  background: #090806;
  transform-origin: center;
  transition: opacity 1100ms ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-bg-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center center);
  background: #090806;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
  transition:
    filter 1200ms ease,
    transform 6400ms ease;
}

.hero-bg-slide.is-active .hero-bg-photo img {
  transform: scale(1.1);
}

.hero-bg-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(244, 231, 197, 0.36);
  border-radius: 50%;
  color: var(--champagne);
  background: rgba(7, 6, 4, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}

.hero-bg-arrow:hover,
.hero-bg-arrow:focus-visible {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
  transform: translateY(-50%) scale(1.06);
}

.hero-bg-arrow-prev {
  left: clamp(18px, 3vw, 42px);
}

.hero-bg-arrow-next {
  right: clamp(18px, 3vw, 42px);
}

.scroll-note {
  position: absolute;
  left: clamp(24px, 3vw, 40px);
  bottom: 32px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.scroll-note span {
  display: block;
  width: 44px;
  height: 1px;
  flex: 0 0 44px;
  background: var(--champagne);
}

.scroll-note p {
  margin: 0;
  line-height: 1;
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero-inner {
    padding-top: 106px;
    padding-bottom: 78px;
  }

  .hero-title {
    font-size: clamp(4.25rem, 6.8vw, 6.4rem);
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-bg-arrow {
    width: 46px;
    height: 46px;
  }

  .scroll-note {
    bottom: 22px;
  }
}

@media (max-width: 1180px) {
  .hero-inner {
    width: min(100% - 48px, 880px);
    padding-top: 124px;
    padding-bottom: 116px;
  }

  .hero-title {
    font-size: clamp(3.85rem, 10vw, 6.2rem);
    line-height: 0.9;
  }

  .hero-bg-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    width: min(100% - 28px, 680px);
    padding-top: 112px;
    padding-bottom: 118px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 12vw, 4.8rem);
    line-height: 0.92;
  }

  .hero-subtitle {
    max-width: 450px;
    font-size: 0.98rem;
  }

  .hero-bg-track::after {
    background:
      linear-gradient(90deg, rgba(7, 6, 4, 0.8) 0%, rgba(7, 6, 4, 0.58) 56%, rgba(7, 6, 4, 0.42) 100%),
      linear-gradient(180deg, rgba(7, 6, 4, 0.7) 0%, rgba(7, 6, 4, 0.18) 38%, rgba(7, 6, 4, 0.86) 100%);
  }

  .hero-bg-arrow {
    width: 42px;
    height: 42px;
  }

  .scroll-note {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero-inner {
    align-items: end;
    padding-top: 108px;
    padding-bottom: 116px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 14vw, 3.55rem);
  }

  .hero-subtitle {
    max-width: 340px;
    font-size: 0.94rem;
  }

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

  .hero-bg-arrow {
    top: auto;
    bottom: 34px;
    width: 38px;
    height: 38px;
  }

  .hero-bg-arrow:hover,
  .hero-bg-arrow:focus-visible {
    transform: scale(1.06);
  }
}

@media (max-width: 430px) {
  .hero-inner {
    width: min(100% - 24px, 560px);
    padding-top: 104px;
    padding-bottom: 110px;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-bg-arrow {
    width: 36px;
    height: 36px;
  }
}


.intro {
  position: relative;
  z-index: 1;
  padding: 72px 0 112px;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(244, 231, 197, 0.2));
}

.intro-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 54px;
  align-items: center;
}

.intro-copy {
  min-width: 0;
}

.intro-statement {
  max-width: 1050px;
  font-size: 5rem;
  line-height: 1.02;
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word span {
  display: inline-block;
  transform: translateY(110%);
}

.intro-lines {
  display: grid;
  grid-template-columns: 1fr 0.36fr 0.18fr;
  gap: 14px;
  max-width: 760px;
  margin-top: 48px;
}

.intro-lines span {
  height: 1px;
  background: var(--line);
  transform-origin: left;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 900px;
  margin-top: 46px;
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-stats div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
}

.intro-stats strong,
.intro-stats span {
  display: block;
}

.intro-stats strong {
  color: var(--deep-gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.intro-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.intro-image {
  position: relative;
  height: 620px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 77, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 5px;
  pointer-events: none;
}

.intro-image img {
  height: 100%;
  filter: saturate(0.96) contrast(1.02);
}

.intro-image::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.48));
  pointer-events: none;
}

.intro-image figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(244, 231, 197, 0.4);
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.34);
  backdrop-filter: blur(8px);
}

.intro-image figcaption span,
.intro-image figcaption strong {
  display: block;
}

.intro-image figcaption span {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-image figcaption strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.16;
}

.stories {
  padding: 105px 0;
  overflow: hidden;
}

.story-heading {
  margin-bottom: 44px;
}

.story-heading h2 {
  max-width: 820px;
}

.story-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 26px;
}

.story-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  width: min(72vw, 1050px);
  min-height: 640px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(250, 247, 240, 0.78)),
    var(--ivory);
}

.story-media {
  position: relative;
  min-height: 530px;
}

.story-main,
.story-thumb {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  background: var(--white);
}

.story-main {
  inset: 0 17% 0 0;
}

.story-main img,
.story-thumb img,
.editorial-frame img {
  object-position: var(--focus, center);
}

.story-thumb:nth-child(2) {
  width: 38%;
  height: 34%;
  right: 3%;
  top: 8%;
}

.story-thumb:nth-child(3) {
  width: 34%;
  height: 28%;
  right: 0;
  bottom: 14%;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.story-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.8rem;
}

.story-content h3 {
  margin: 12px 0 18px;
  font-size: 4.4rem;
}

.story-content p {
  max-width: 390px;
  color: var(--muted);
}

.story-content .btn {
  margin-top: 20px;
}

.video-reel {
  position: relative;
  display: grid;
  place-items: center;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #000000;
  isolation: isolate;
}

.video-reel-media,
.video-reel-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.video-reel-media {
  z-index: 1;
  object-fit: contain;
  object-position: center center;
}

.video-reel-placeholder {
  z-index: 0;
}

.video-reel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--champagne);
  border: 1px solid rgba(244, 231, 197, 0.42);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.48);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.video-reel-arrow:hover,
.video-reel-arrow:focus-visible {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
  transform: translateY(-50%) scale(1.06);
}

.video-reel-arrow-prev {
  left: clamp(18px, 3vw, 42px);
}

.video-reel-arrow-next {
  right: clamp(18px, 3vw, 42px);
}

.video-sound-toggle {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(244, 231, 197, 0.42);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  border-color: var(--gold);
  background: rgba(17, 17, 17, 0.78);
  transform: translateY(-2px);
}

.video-sound-toggle i {
  color: var(--champagne);
}

.video-sound-toggle span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .video-reel-media {
    object-fit: cover;
    object-position: center center;
  }

  .video-reel-arrow {
    width: 40px;
    height: 40px;
  }
}

@supports (scroll-snap-type: y proximity) {
  html {
    scroll-snap-type: y proximity;
  }

  .video-reel {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.58fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 54px;
}

.split-heading p,
.split-heading blockquote {
  margin: 0;
  color: var(--muted);
}

.split-heading blockquote {
  color: var(--deep-gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.18;
}

.bride-section {
  padding: 120px 0 92px;
}

.bride-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  min-height: 780px;
}

.editorial-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.editorial-frame.is-bordered,
.story-thumb.is-bordered,
.film-frame.is-bordered,
.bw-frame.is-bordered {
  padding: 12px;
  background: var(--white);
  border-color: rgba(200, 169, 77, 0.34);
}

.bw-frame.is-bordered {
  background: #191919;
}

.editorial-frame.is-bordered img,
.story-thumb.is-bordered img,
.film-frame.is-bordered img,
.bw-frame.is-bordered img {
  border: 1px solid rgba(200, 169, 77, 0.18);
  border-radius: 4px;
}

.editorial-frame::after {
  content: attr(data-caption);
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: var(--deep-gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.bride-large {
  min-height: 760px;
}

.bride-small-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 26px;
}

.groom-section {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(244, 231, 197, 0.42), transparent 42%),
    #fbf5e7;
}

.groom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 60px;
  align-items: center;
}

.groom-copy {
  position: relative;
  padding-left: 28px;
}

.groom-copy::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}

.groom-copy h2 {
  margin-bottom: 22px;
}

.groom-copy p {
  color: var(--muted);
}

.groom-media {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 22px;
  min-height: 610px;
}

.groom-media .editorial-frame:first-child {
  margin-top: 56px;
}

.groom-media .editorial-frame:last-child {
  margin-bottom: 70px;
}

.editorial-frame img {
  transition: filter 700ms ease, transform 900ms ease;
}

.editorial-frame:hover img {
  filter: contrast(1.04) saturate(1.02);
  transform: scale(1.045);
}

.prewedding-section {
  padding: 112px 0;
  overflow: hidden;
}

.film-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 12%;
  pointer-events: none;
}

.film-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory), transparent);
}

.film-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--ivory), transparent);
}

.film-row {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0 24px;
  animation: filmMove 42s linear infinite;
}

.film-strip:hover .film-row {
  animation-play-state: paused;
}

.film-frame {
  position: relative;
  width: 260px;
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 77, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
}

@keyframes filmMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.selected-section {
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 169, 77, 0.22), transparent 26rem),
    linear-gradient(180deg, rgba(244, 231, 197, 0.18), rgba(255, 255, 255, 0.82));
}

.selected-section .section-shell {
  position: relative;
  z-index: 2;
}

.selected-section .split-heading {
  margin-bottom: 22px;
}

.selected-track {
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.selected-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 20px 32px;
  animation: showcaseDrift 52s linear infinite;
  will-change: transform;
}

.selected-track:hover .selected-marquee {
  animation-play-state: paused;
}

.showcase-card {
  flex: 0 0 clamp(280px, 29vw, 420px);
  display: grid;
  gap: 16px;
}

.showcase-card:nth-child(even) {
  margin-top: 54px;
}

.showcase-card figure {
  height: clamp(380px, 45vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 77, 0.18);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 72px rgba(17, 17, 17, 0.12);
}

.showcase-card:nth-child(3n) figure {
  height: clamp(330px, 38vw, 490px);
}

.showcase-card img {
  transition: transform 900ms ease, filter 900ms ease;
}

.showcase-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.showcase-card div {
  display: grid;
  gap: 4px;
  padding-inline: 6px;
}

.showcase-card span {
  color: var(--deep-gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

@keyframes showcaseDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.gallery-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 169, 77, 0.28), transparent 30rem),
    linear-gradient(180deg, var(--ivory), #f6efe0 45%, var(--ivory));
}

.gallery-page-hero {
  display: grid;
  align-content: end;
  min-height: 78svh;
  padding: 140px 0 68px;
  overflow: hidden;
}

.gallery-page-intro {
  position: relative;
  z-index: 2;
}

.gallery-page-intro h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.85rem, 6.2vw, 5.7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.gallery-page-intro > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1.02rem;
}

.couple-index {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1180px);
  margin: 52px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.couple-index-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-bottom: 10px;
  animation: coupleIndexMove 46s linear infinite;
  will-change: transform;
}

.couple-index:hover .couple-index-track {
  animation-play-state: paused;
}

.couple-index a {
  flex: 0 0 230px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(200, 169, 77, 0.24);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 45px rgba(17, 17, 17, 0.06);
  scroll-snap-align: start;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
}

.couple-index a:hover,
.couple-index a:focus-visible {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-4px);
}

.couple-index span {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.08;
}

.couple-index small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes coupleIndexMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.couple-gallery-shell {
  display: grid;
  gap: 140px;
  width: min(100% - 36px, 1440px);
  margin-inline: auto;
  padding: 78px 0 126px;
}

.couple-gallery-group {
  display: grid;
  grid-template-columns: minmax(280px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(64px, 7vw, 128px);
  align-items: start;
  scroll-margin-top: 96px;
}

.couple-gallery-heading {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
  align-self: start;
}

.couple-gallery-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.85rem);
  line-height: 0.9;
}

.couple-gallery-meta {
  display: grid;
  gap: 26px;
}

.couple-gallery-count {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}

.couple-gallery-quote {
  position: relative;
  width: min(100%, 420px);
  margin: clamp(34px, 5vh, 74px) 0 0 -18px;
  padding: 0 0 0 22px;
  opacity: 0.5;
}

.couple-gallery-quote::before {
  content: open-quote;
  position: absolute;
  top: -0.12em;
  left: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.couple-gallery-quote::after {
  content: close-quote;
  display: inline;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.18em;
}

.couple-gallery-quote p {
  display: inline;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1.15vw, 1rem);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0;
}

.couple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 68px) clamp(18px, 2.8vw, 42px);
  align-items: start;
  min-width: 0;
  padding-left: clamp(12px, 1.6vw, 28px);
}

.couple-gallery-frame {
  position: relative;
  grid-column: var(--start, auto) / span var(--span, 4);
  margin-top: var(--push, 0);
  overflow: visible;
  border-radius: 18px;
  transform-origin: center;
}

.couple-gallery-mask {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.14);
  contain: layout paint;
  transform-origin: center;
  will-change: clip-path;
}

.couple-gallery-frame:not(.is-loaded) .couple-gallery-mask {
  min-height: clamp(360px, 36vw, 640px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 231, 197, 0.36)),
    var(--white);
}

.couple-gallery-frame.is-loading .couple-gallery-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: galleryShimmer 1.3s ease-in-out infinite;
}

.couple-gallery-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  will-change: transform, filter;
}

.couple-gallery-frame img:not([src]) {
  display: none;
}

.couple-gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 0 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transform-origin: left top;
  will-change: clip-path, transform;
}

.couple-gallery-caption span {
  color: var(--deep-gold);
}

.couple-gallery-caption small {
  color: rgba(17, 17, 17, 0.46);
}

@keyframes galleryShimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.bw-section {
  padding: 120px 0;
  color: var(--white);
  background: #111111;
  overflow: hidden;
}

.bw-section .eyebrow,
.bw-section h2 {
  color: var(--champagne);
}

.bw-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.bw-copy {
  position: sticky;
  top: 110px;
}

.bw-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

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

.bw-frame {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(244, 231, 197, 0.18);
  background: #1b1b1b;
}

.bw-frame:nth-child(2n) {
  margin-top: 74px;
}

.services-section {
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(200, 169, 77, 0.18), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(244, 231, 197, 0.24));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 240, 0.76)),
    var(--white);
  overflow: hidden;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

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

.service-card:nth-child(4),
.service-card:nth-child(10) {
  grid-column: span 3;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.service-card:hover {
  border-color: rgba(200, 169, 77, 0.52);
  box-shadow: var(--gold-shadow);
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 260px;
  margin: 28px 0 14px;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.12;
}

.service-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.58;
}

.service-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 260px;
  padding: 10px;
  border: 1px solid rgba(244, 231, 197, 0.62);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-preview.is-visible {
  opacity: 1;
}

.service-preview img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 14px;
}

.service-preview span {
  display: block;
  padding: 10px 6px 2px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-section {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(244, 231, 197, 0.22), rgba(255, 253, 248, 0.84)),
    var(--ivory);
  overflow: hidden;
}

.process-shell {
  position: relative;
}

.process-heading {
  max-width: 760px;
  margin-bottom: 68px;
}

.process-section h2 {
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.process-line {
  position: absolute;
  top: 46px;
  left: 7%;
  right: 7%;
  z-index: 0;
  height: 1px;
  background: rgba(200, 169, 77, 0.2);
  overflow: hidden;
}

.process-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--deep-gold));
  transform: scaleX(0);
  transform-origin: left;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 286px;
  padding: 94px 20px 24px;
  border: 1px solid rgba(200, 169, 77, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 240, 0.78)),
    var(--white);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.06);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.process-step:hover {
  border-color: rgba(200, 169, 77, 0.52);
  box-shadow: var(--gold-shadow);
  transform: translateY(-4px);
}

.process-marker {
  position: absolute;
  top: 12px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--deep-gold);
  border: 1px solid rgba(200, 169, 77, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, rgba(244, 231, 197, 0.92), rgba(255, 253, 248, 0.92));
  box-shadow: 0 12px 30px rgba(159, 122, 34, 0.14);
}

.process-marker i {
  color: var(--gold);
  font-size: 1.25rem;
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
  line-height: 1.12;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.testimonial-section {
  padding: 112px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.testimonial-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.8;
}

.testimonial-card p {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.22;
}

.testimonial-card small {
  color: var(--muted);
  font-weight: 700;
}

.cta-section {
  padding: 132px 0;
  overflow: hidden;
  background: var(--white);
}

.cta-arc {
  width: 760px;
  height: 760px;
  right: -180px;
  top: -260px;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  max-width: 760px;
  margin-inline: auto;
}

.cta-content p {
  max-width: 640px;
  margin: 26px auto 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--deep-gold);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(200, 169, 77, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--gold-shadow);
  transform: translateY(-2px);
}

.contact-row i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
}

.contact-row span,
.contact-row small {
  display: block;
  text-align: left;
}

.contact-row span {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row small {
  margin-top: 2px;
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 800;
}

/* FOOTER FINAL FIX */

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 6px 24px;
  padding: 26px 40px;
  min-height: auto;
  border-top: 1px solid var(--gold);
  background: var(--ivory);
}

.site-footer > div {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.site-footer h2 {
  margin: 0 0 3px;
  font-size: 1.35rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > div p {
  font-size: 0.9rem;
}

.site-footer nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.78rem;
}

.copyright {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
}

.made-by {
  grid-column: 2;
  grid-row: 3;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
}

.made-by a {
  color: var(--deep-gold);
  font-weight: 900;
}

.back-to-top {
  grid-column: 3;
  grid-row: 1 / span 3;
  justify-self: end;
  align-self: center;
  gap: 8px;
  font-size: 0.78rem;
}

.back-to-top i {
  width: 26px;
  height: 26px;
}

.reveal-media {
  clip-path: inset(14% 0 14% 0);
  filter: blur(10px);
  opacity: 0.01;
  transition: clip-path 900ms ease, filter 900ms ease, opacity 900ms ease;
}

.reveal-media.is-visible {
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  h2 {
    font-size: 3.75rem;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(6),
  .service-card:nth-child(10) {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 720px);
  }

  h2 {
    font-size: 3rem;
    line-height: 1;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .intro,
  .stories,
  .bride-section,
  .groom-section,
  .prewedding-section,
  .selected-section,
  .bw-section,
  .services-section,
  .process-section,
  .testimonial-section,
  .cta-section {
    padding-block: 82px;
  }

  .intro-statement {
    font-size: 3.25rem;
  }

  .intro-editorial {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-image {
    height: 560px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .story-track {
    display: grid;
    width: min(100% - 32px, 720px);
    margin-inline: auto;
    padding: 0;
  }

  .story-panel {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    padding: 22px;
  }

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

  .story-content h3 {
    font-size: 3.4rem;
  }

  .split-heading,
  .bride-editorial,
  .groom-grid,
  .bw-layout {
    grid-template-columns: 1fr;
  }

  .bride-editorial {
    min-height: auto;
  }

  .bride-large {
    min-height: 620px;
  }

  .bride-small-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .bride-small-stack .editorial-frame {
    min-height: 390px;
  }

  .groom-media {
    min-height: 520px;
  }

  .bw-copy {
    position: static;
  }

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

  .selected-marquee {
    animation-duration: 42s;
  }

  .showcase-card {
    flex-basis: min(78vw, 420px);
  }

  .showcase-card:nth-child(even) {
    margin-top: 28px;
  }

  .gallery-page-hero {
    min-height: auto;
    padding: 118px 0 62px;
  }

  .gallery-page-intro h1 {
    font-size: clamp(2.55rem, 10vw, 4.4rem);
  }

  .couple-index,
  .couple-gallery-shell {
    width: min(100% - 28px, 720px);
  }

  .couple-gallery-shell {
    gap: 86px;
    padding-block: 64px 96px;
  }

  .couple-gallery-group {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .couple-gallery-heading {
    position: static;
  }

  .couple-gallery-heading h2 {
    max-width: 650px;
  }

  .couple-gallery-count,
  .couple-gallery-quote {
    max-width: 520px;
  }

  .couple-gallery-quote {
    margin-top: 30px;
    margin-left: 0;
  }

  .couple-gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 34px 18px;
    padding-left: 0;
  }

  .couple-gallery-frame {
    grid-column: auto / span 4;
    margin-top: clamp(0px, var(--push), 70px);
  }

  .couple-gallery-mask {
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
  }

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

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(6),
  .service-card:nth-child(10) {
    grid-column: auto;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-heading {
    margin-bottom: 46px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-line span {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--deep-gold));
    transform: scaleY(0);
    transform-origin: top;
  }

  .process-step {
    min-height: auto;
    padding: 24px 24px 24px 96px;
  }

  .process-step:hover {
    transform: none;
  }

  .process-marker {
    top: 22px;
    left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 30px 22px;
    text-align: center;
  }

  .site-footer > div,
  .site-footer nav,
  .copyright,
  .made-by,
  .back-to-top {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .back-to-top {
    grid-column: 1;
    grid-row: auto;
    justify-self: end;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .mobile-menu a {
    font-size: 2.2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-statement {
    font-size: 2.58rem;
  }

  .intro-image {
    height: 460px;
  }

  .intro-image figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .intro-image figcaption strong {
    font-size: 1.12rem;
  }

  .story-media {
    min-height: 430px;
  }

  .story-main {
    right: 13%;
  }

  .story-content h3 {
    font-size: 2.7rem;
  }

  .bride-large {
    min-height: 520px;
  }

  .bride-small-stack {
    grid-template-columns: 1fr;
  }

  .bride-small-stack .editorial-frame,
  .groom-media {
    min-height: 430px;
  }

  .groom-media {
    grid-template-columns: 1fr;
  }

  .groom-media .editorial-frame:first-child,
  .groom-media .editorial-frame:last-child {
    margin: 0;
    min-height: 430px;
  }

  .film-frame {
    width: 214px;
    height: 294px;
  }

  .showcase-card {
    flex-basis: min(84vw, 360px);
  }

  .showcase-card:nth-child(even) {
    margin-top: 0;
  }

  .showcase-card figure,
  .showcase-card:nth-child(3n) figure {
    height: 430px;
  }

  .gallery-page-intro h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .couple-index {
    width: min(100% - 24px, 560px);
  }

  .couple-index a {
    flex-basis: 178px;
    padding: 15px;
  }

  .couple-index span {
    font-size: 1.02rem;
  }

  .couple-gallery-shell {
    width: min(100% - 24px, 560px);
    gap: 58px;
    padding-block: 46px 78px;
  }

  .couple-gallery-group {
    gap: 22px;
  }

  .couple-gallery-heading {
    gap: 18px;
  }

  .couple-gallery-heading h2 {
    font-size: clamp(2.75rem, 14vw, 4.6rem);
  }

  .couple-gallery-meta {
    gap: 18px;
  }

  .couple-gallery-quote {
    width: min(100%, 340px);
    margin-top: 22px;
    padding-left: 18px;
  }

  .couple-gallery-quote p {
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .couple-gallery-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .couple-gallery-frame {
    grid-column: auto;
    margin-top: 0;
    transform: none;
  }

  .couple-gallery-frame:not(.is-loaded) .couple-gallery-mask {
    min-height: min(76vw, 390px);
  }

  .couple-gallery-mask {
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
  }

  .couple-gallery-caption {
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: 9px;
    padding: 0 2px;
    font-size: 0.64rem;
  }

  .bw-gallery,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    margin-left: 0;
  }

  .timeline-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
  }

  .timeline-step span {
    width: 62px;
    height: 62px;
  }

  .timeline-line {
    left: 31px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 22px 18px 22px 86px;
  }

  .contact-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-row a {
    justify-content: center;
    border-radius: 8px;
  }

  .contact-row span,
  .contact-row small {
    text-align: left;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

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

  .reveal-media {
    clip-path: none;
    filter: none;
    opacity: 1;
  }
}




/* =========================
   CUSTOM SCROLLBAR
========================= */

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--ivory);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--ivory), var(--warm));
  border-left: 1px solid rgba(200, 169, 77, 0.12);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--deep-gold));
  border: 2px solid var(--ivory);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--deep-gold), var(--gold));
}

::-webkit-scrollbar-corner {
  background: var(--ivory);
}
