:root {
  --cream: #f2ebe0;
  --paper: #fbf6ee;
  --charcoal: #1c1a17;
  --ink: #2b2924;
  --gold: #b8962e;
  --soft-gold: #d7c18a;
  --rose: #9b5d52;
  --olive: #6f704d;
  --line: rgba(184, 150, 46, 0.34);
  --shadow: 0 24px 60px rgba(28, 26, 23, 0.18);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Poppins", "Proxima Nova", Avenir, Montserrat, "Helvetica Neue", Arial, sans-serif;
}

@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 150, 46, 0.13), transparent 26rem),
    linear-gradient(120deg, rgba(111, 112, 77, 0.08), transparent 34rem),
    var(--cream);
  font-family: var(--sans);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(22px, 4vw, 64px);
  color: var(--paper);
  background: transparent;
  border-bottom: 0;
  transition: background 420ms ease, padding 420ms ease, box-shadow 420ms ease, backdrop-filter 420ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(28, 26, 23, 0.82);
  box-shadow: 0 14px 38px rgba(28, 26, 23, 0.16);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .nav-links {
  color: rgba(251, 246, 238, 0.9);
}

.brand {
  display: block;
  width: clamp(250px, 22vw, 390px);
  min-width: 0;
  color: rgba(232, 212, 160, 0.92);
  filter: drop-shadow(0 8px 16px rgba(28, 26, 23, 0.28));
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(251, 246, 238, 0.88);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--soft-gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: #2b241d;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero img {
  object-position: 68% center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 16% 82%, rgba(184, 150, 46, 0.24), transparent 24rem),
    linear-gradient(90deg, rgba(28, 26, 23, 0.7) 0%, rgba(28, 26, 23, 0.48) 36%, rgba(28, 26, 23, 0.06) 64%, rgba(28, 26, 23, 0) 100%),
    linear-gradient(0deg, rgba(40, 33, 27, 0.48) 0%, rgba(40, 33, 27, 0.08) 42%, rgba(40, 33, 27, 0) 76%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(690px, 90vw);
  flex-direction: column;
  justify-content: flex-end;
  padding: 158px clamp(24px, 6vw, 82px) 92px;
}

.eyebrow {
  margin: 0 0 24px;
  color: rgba(232, 212, 160, 0.8);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.48em;
  line-height: 1.8;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(251, 246, 238, 0.96);
  font-size: clamp(50px, 6.8vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  text-wrap: balance;
}

h1 span,
h2 em {
  font-style: italic;
}

h1 span {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(110deg, #8b6d22 0%, #fff3c8 28%, #d6bd71 52%, #f9e8af 74%, #9c7929 100%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 18px rgba(215, 193, 138, 0.28));
  text-shadow: 0 0 24px rgba(255, 238, 188, 0.14);
  animation: goldShine 5s ease-in-out infinite alternate;
}

h2 em {
  color: var(--soft-gold);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
}

h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 300;
}

.lede,
.intro p,
.feature-copy p,
.about-copy p,
.contact-copy p,
.service-grid p {
  color: rgba(43, 41, 36, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.hero .lede {
  max-width: 540px;
  color: rgba(251, 246, 238, 0.82);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 212, 160, 0.58);
  border-radius: 999px;
  padding: 13px 22px;
  color: rgba(251, 246, 238, 0.92);
  background: rgba(251, 246, 238, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 420ms ease, background 420ms ease, color 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.button:hover {
  transform: translateY(-3px);
  color: var(--charcoal);
  border-color: rgba(255, 240, 194, 0.82);
  background: linear-gradient(110deg, #c2a55d, #fff0bf 48%, #ad8431);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 26px rgba(215, 193, 138, 0.22);
}

.text-link {
  color: rgba(232, 212, 160, 0.86);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transition: color 420ms ease, transform 420ms ease;
}

.text-link:hover {
  color: #fff0bf;
  transform: translateX(4px);
}

.marquee {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(184, 150, 46, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 150, 46, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(184, 150, 46, 0.12), transparent 28%, rgba(155, 93, 82, 0.08)),
    var(--charcoal);
  color: var(--paper);
}

.marquee span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 28px 22px;
  border-right: 1px solid rgba(215, 193, 138, 0.14);
  color: rgba(251, 246, 238, 0.86);
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
  text-align: center;
}

.marquee span:nth-child(3) {
  color: transparent;
  background: linear-gradient(110deg, #b8962e 0%, #fff2bd 46%, #b8962e 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  text-shadow: 0 0 20px rgba(184, 150, 46, 0.28);
  animation: goldShine 4.8s ease-in-out infinite alternate;
}

.band,
.services,
.moodboard,
.bridal-feature,
.about,
.contact {
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 76px);
}

.ring-unlock {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 74% 52%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 248, 225, 0.34) 42%, transparent 82%),
    radial-gradient(ellipse at 75% 56%, rgba(184, 150, 46, 0.14) 0%, rgba(221, 196, 126, 0.055) 58%, transparent 90%),
    radial-gradient(circle at 18% 82%, rgba(184, 150, 46, 0.06), transparent 23rem),
    linear-gradient(180deg, #fffaf2 0%, #f2ebe0 62%, #fffdf8 100%);
  color: var(--charcoal);
  overflow: hidden;
}

.ring-unlock::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 45%, rgba(255, 255, 255, 0.38), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(242, 235, 224, 0.18) 44%, rgba(184, 150, 46, 0.1) 100%);
  opacity: calc((1 - var(--unlock-progress, 0)) * 0.72);
}

.ring-unlock .eyebrow {
  color: rgba(137, 104, 25, 0.95);
  text-shadow: 0 1px 14px rgba(251, 246, 238, 0.52);
}

.unlock-sticky {
  position: relative;
  z-index: 1;
  top: 0;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 1fr);
  gap: clamp(36px, 9vw, 112px);
  align-items: center;
  padding: 120px clamp(20px, 5vw, 76px) 78px;
  overflow: hidden;
}

.unlock-copy {
  position: relative;
  z-index: 2;
}

.unlock-copy h2 {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.unlock-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(43, 41, 36, 0.78);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.unlock-meter {
  position: relative;
  width: min(420px, 100%);
  height: 2px;
  margin-top: clamp(34px, 4vw, 54px);
  background: rgba(184, 150, 46, 0.2);
}

.unlock-meter span {
  display: block;
  width: calc(var(--unlock-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e5d09a);
  box-shadow: 0 0 24px rgba(184, 150, 46, 0.34);
}

.ring-scene {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  opacity: 1;
  transform: none;
  transition: none;
}

.ring-viewer {
  position: relative;
  width: min(100%, 720px);
  height: 500px;
  min-width: 460px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.ring-viewer::before,
.ring-viewer::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.ring-viewer::before {
  inset: -14% -20% -8%;
  z-index: 1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 246, 218, 0.14) 42%, rgba(218, 192, 111, 0.04) 70%, transparent 92%);
  filter: blur(44px);
}

.ring-viewer::after {
  z-index: 2;
  left: 24%;
  right: 24%;
  bottom: 16%;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(28, 26, 23, 0.12), transparent 72%);
  filter: blur(8px);
}

.ring-glow {
  position: absolute;
  inset: -10% -20% -6%;
  z-index: 3;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 244, 210, 0.11) 44%, rgba(184, 150, 46, 0.035) 72%, transparent 92%);
  filter: blur(52px);
  transform-origin: center;
}

.ring-model {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  filter: drop-shadow(0 32px 42px rgba(28, 26, 23, 0.18));
  cursor: grab;
  touch-action: pan-y;
}

.ring-model:active {
  cursor: grabbing;
}

.ring-model::part(default-progress-bar) {
  display: none;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  min-height: 760px;
  padding: 0 clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.7), transparent 24rem),
    radial-gradient(circle at 10% 78%, rgba(184, 150, 46, 0.11), transparent 28rem),
    linear-gradient(180deg, #fbf6ee 0%, #f2ebe0 100%);
  overflow: hidden;
}

.intro::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 16% 78%, rgba(184, 150, 46, 0.18), transparent 19rem),
    linear-gradient(90deg, rgba(28, 26, 23, 0.78) 0%, rgba(28, 26, 23, 0.46) 36%, rgba(28, 26, 23, 0.12) 58%, transparent 82%),
    linear-gradient(0deg, rgba(40, 33, 27, 0.5), transparent 54%);
  pointer-events: none;
}

.intro-image {
  position: absolute;
  inset: 0;
  isolation: isolate;
  display: grid;
  height: 100%;
  min-height: 760px;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.34), transparent 17rem),
    linear-gradient(135deg, rgba(116, 77, 43, 0.18), rgba(242, 235, 224, 0.74) 44%, rgba(184, 150, 46, 0.17)),
    repeating-linear-gradient(88deg, rgba(112, 76, 42, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: none;
  outline: 0;
  transition: transform 520ms ease, box-shadow 520ms ease;
}

.intro-image::before,
.intro-image::after {
  position: absolute;
  content: "";
  transition: opacity 520ms ease, transform 520ms ease;
}

.intro-image::before {
  inset: 6% 4%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.96) 0 48%, rgba(204, 180, 131, 0.22) 49.2%, rgba(255, 252, 244, 0.96) 52% 100%);
  box-shadow: 0 28px 70px rgba(28, 26, 23, 0.18);
  opacity: 0;
  transform: rotate(-0.5deg);
}

.intro-image::after {
  inset: 9% 48% 9% calc(50% - 1px);
  z-index: 1;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(184, 150, 46, 0.28), transparent);
  box-shadow: 0 0 20px rgba(28, 26, 23, 0.12);
  opacity: 0;
}

.intro-image img {
  object-position: center;
}

.album-cover,
.album-spread {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
}

.album-cover {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: none;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.album-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(28, 26, 23, 0.28) 0%, rgba(28, 26, 23, 0.08) 34%, transparent 64%),
    radial-gradient(circle at 12% 82%, rgba(184, 150, 46, 0.42), rgba(215, 193, 138, 0.18) 34%, transparent 58%),
    linear-gradient(180deg, rgba(255, 248, 226, 0.08), rgba(80, 53, 33, 0.2));
  pointer-events: none;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  filter: sepia(0.14) saturate(0.98) contrast(0.98) brightness(0.96);
}

.album-toggle {
  position: absolute;
  z-index: 4;
  left: auto;
  right: clamp(42px, 5vw, 74px);
  bottom: clamp(42px, 4vw, 66px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 238, 0.72);
  border-radius: 999px;
  background: rgba(28, 26, 23, 0.44);
  box-shadow: 0 12px 26px rgba(28, 26, 23, 0.2);
  cursor: pointer;
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
}

.album-toggle span {
  position: relative;
  width: 18px;
  height: 14px;
  border: 1px solid rgba(255, 250, 238, 0.9);
}

.album-toggle span::before {
  position: absolute;
  content: "";
  left: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.9);
}

.album-toggle span::after {
  position: absolute;
  content: "";
  right: 2px;
  bottom: 2px;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(255, 250, 238, 0.9);
  border-left: 5px solid transparent;
}

.album-toggle:hover {
  transform: translateY(-2px);
  background: rgba(28, 26, 23, 0.58);
}

.album-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3.2vw, 40px);
  row-gap: clamp(16px, 2vw, 24px);
  width: min(86%, 690px);
  height: 74%;
  align-self: center;
  justify-self: end;
  margin-right: clamp(12px, 4vw, 54px);
  opacity: 0;
  transform: rotate(-0.5deg) scale(0.985);
  transition: opacity 520ms ease, transform 520ms ease;
}

.album-spread::before {
  position: absolute;
  content: "";
  top: -4%;
  bottom: -4%;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(156, 129, 78, 0.28), transparent);
  box-shadow: 0 0 18px rgba(28, 26, 23, 0.12);
  pointer-events: none;
}

.album-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 11;
  border: clamp(7px, 1vw, 11px) solid rgba(255, 251, 242, 0.98);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(28, 26, 23, 0.13);
  transition: transform 520ms ease, box-shadow 520ms ease, opacity 520ms ease;
}

.album-photo-main {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
}

.album-photo-wide {
  grid-column: 1;
  grid-row: 2;
}

.album-photo-top {
  grid-column: 2;
  grid-row: 1;
}

.album-photo-bottom {
  grid-column: 2;
  grid-row: 2;
}

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

.album-photo-wide img {
  object-position: center 38%;
}

.album-photo-top img {
  object-position: center 36%;
}

.album-photo-bottom img {
  object-position: center 42%;
}

.album-photo img {
  transition: transform 700ms ease;
}

.intro-image.is-open::before {
  opacity: 1;
}

.intro-image.is-open::after {
  opacity: 0.8;
}

.intro-image.is-open .album-cover {
  opacity: 0;
  transform: scale(1.015);
}

.intro-image.is-open .album-spread {
  opacity: 1;
  transform: rotate(-0.5deg) scale(1);
}

.intro-image.is-open .album-toggle {
  border-color: rgba(184, 150, 46, 0.58);
  background: rgba(251, 246, 238, 0.72);
}

.intro-image.is-open .album-toggle span {
  width: 18px;
  height: 18px;
  border: 0;
}

.intro-image.is-open .album-toggle span::before,
.intro-image.is-open .album-toggle span::after {
  position: absolute;
  display: block;
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
  border: 0;
  background: rgba(28, 26, 23, 0.74);
  content: "";
}

.intro-image.is-open .album-toggle span::before {
  transform: rotate(45deg);
}

.intro-image.is-open .album-toggle span::after {
  transform: rotate(-45deg);
}

.intro-image.is-open .album-photo img {
  transform: scale(1.025);
}

.intro-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  padding-block: clamp(20px, 4vw, 54px);
  color: var(--paper);
}

.intro-copy .eyebrow {
  color: rgba(215, 193, 138, 0.82);
}

.intro-copy h2 {
  max-width: 660px;
  font-size: clamp(42px, 5vw, 74px);
}

.intro-copy p:last-child {
  max-width: 460px;
  margin-top: 28px;
  margin-bottom: 0;
  color: rgba(251, 246, 238, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: end;
  margin-bottom: 46px;
}

.services {
  background:
    radial-gradient(circle at 86% 12%, rgba(184, 150, 46, 0.14), transparent 24rem),
    linear-gradient(90deg, rgba(155, 93, 82, 0.075), transparent 44%),
    var(--cream);
}

.services .section-heading {
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 1fr);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.services-title {
  display: grid;
  max-width: 1180px;
  justify-self: center;
  gap: 0.06em;
  text-align: center;
  font-size: clamp(46px, 5.4vw, 86px);
  line-height: 0.94;
}

.services-title span {
  display: block;
  white-space: nowrap;
}

.services-title em {
  color: transparent;
  background: linear-gradient(110deg, #a98528 0%, #f7dea0 48%, #b8962e 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 0 18px rgba(184, 150, 46, 0.22);
  animation: goldShine 5.4s ease-in-out infinite alternate;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
}

.service-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 334px;
  padding: 28px;
  border: 1px solid rgba(184, 150, 46, 0.22);
  background:
    linear-gradient(180deg, rgba(251, 246, 238, 0.92), rgba(242, 235, 224, 0.74)),
    var(--paper);
  box-shadow: 0 18px 50px rgba(28, 26, 23, 0.08);
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease, color 420ms ease;
}

.service-grid article::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--service-image) center / cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 520ms ease, transform 700ms ease;
}

.service-grid article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(28, 26, 23, 0.12), rgba(28, 26, 23, 0.78)),
    radial-gradient(circle at 30% 0%, rgba(215, 193, 138, 0.3), transparent 18rem);
  opacity: 0;
  transition: opacity 420ms ease;
}

.service-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 193, 138, 0.62);
  box-shadow: 0 28px 72px rgba(28, 26, 23, 0.18);
  color: var(--paper);
}

.service-grid article:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-grid article:hover::after {
  opacity: 1;
}

.service-grid article:hover span,
.service-grid article:hover p {
  color: rgba(251, 246, 238, 0.82);
}

.service-plan {
  --service-image: url("assets/images/wedding-ceremony.jpg");
}

.service-design {
  --service-image: url("assets/images/haldi-mehendi.jpg");
}

.service-hospitality {
  --service-image: url("assets/images/cocktail.jpg");
}

.service-production {
  --service-image: url("assets/images/sangeet-party.jpg");
}

.service-grid span {
  display: block;
  margin-bottom: 84px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  transition: color 420ms ease;
}

.service-grid p {
  transition: color 420ms ease;
}

.feature-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 720px;
  --lighting-progress: 0;
  background: var(--charcoal);
  color: var(--paper);
  overflow: hidden;
}

.feature-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.feature-image::before,
.feature-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.feature-image::before {
  z-index: 1;
  background:
    radial-gradient(circle at 69% 63%, rgba(184, 150, 46, 0.08), transparent 23rem),
    linear-gradient(90deg, rgba(16, 15, 13, 0.72), rgba(28, 24, 19, 0.5) 45%, rgba(92, 68, 38, 0.22));
  opacity: calc(0.68 - (var(--lighting-progress, 0) * 0.56));
  transition: opacity 90ms linear;
}

.feature-image::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(28, 26, 23, 0.56) 0%, rgba(28, 26, 23, 0.22) 34%, rgba(28, 26, 23, 0.02) 78%),
    radial-gradient(circle at 69% 55%, rgba(255, 226, 154, 0.45), transparent 32rem),
    radial-gradient(circle at 84% 72%, rgba(255, 202, 106, 0.28), transparent 24rem),
    linear-gradient(0deg, rgba(80, 56, 28, 0.22), transparent 44%);
  opacity: calc(0.2 + (var(--lighting-progress, 0) * 0.78));
  transition: opacity 90ms linear;
}

.feature-image img {
  object-position: center;
  filter: saturate(calc(0.66 + (var(--lighting-progress, 0) * 0.46))) brightness(calc(0.52 + (var(--lighting-progress, 0) * 0.5))) contrast(calc(0.94 + (var(--lighting-progress, 0) * 0.08)));
  transition: filter 90ms linear;
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(560px, 90vw);
  min-height: 720px;
  padding: clamp(68px, 8vw, 112px) clamp(22px, 6vw, 82px);
}

.feature-copy p {
  color: rgba(251, 246, 238, 0.76);
}

.feature-copy h2 {
  max-width: 520px;
  font-size: clamp(38px, 4.6vw, 64px);
}

.feature-copy h2 em,
.about-copy h2 em {
  color: transparent;
  background: linear-gradient(110deg, #c5a346 0%, #fff0bf 46%, #b8962e 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(184, 150, 46, 0.22);
  animation: goldShine 5.2s ease-in-out infinite alternate;
}

.bridal-feature {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  background:
    linear-gradient(180deg, #f2ebe0 0%, #fbf6ee 100%);
  overflow: hidden;
  isolation: isolate;
}

.bridal-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
  opacity: 0;
  transform: translateY(18px);
  animation: bridalReveal 900ms ease 180ms forwards;
}

.bridal-copy h2 {
  max-width: 680px;
  color: var(--paper);
  font-size: clamp(48px, 6.4vw, 94px);
  font-weight: 300;
  line-height: 0.98;
}

.bridal-copy h2 em {
  color: var(--soft-gold);
  font-style: italic;
  font-weight: 300;
}

.bridal-copy p:not(.eyebrow) {
  color: rgba(251, 246, 238, 0.76);
  max-width: 460px;
  font-size: 17px;
  line-height: 1.7;
}

.bridal-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: auto;
  min-height: 100%;
  overflow: hidden;
  box-shadow: none;
}

.bridal-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 68% 42%, rgba(255, 238, 198, 0.14), transparent 22rem),
    linear-gradient(90deg, rgba(20, 18, 15, 0.86) 0%, rgba(28, 26, 23, 0.62) 34%, rgba(57, 39, 25, 0.18) 62%, rgba(28, 26, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(28, 26, 23, 0.34), transparent 44%);
  pointer-events: none;
}

.bridal-image img {
  object-position: 68% center;
  filter: sepia(0.08) saturate(0.95) contrast(0.96) brightness(0.92);
  transform: scale(1.035);
  animation: bridalImageDrift 16s ease-in-out infinite alternate;
}

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

@keyframes bridalImageDrift {
  to {
    transform: scale(1.07) translate3d(-1.4%, 0, 0);
  }
}

.moodboard {
  padding-inline: 0;
  padding-block: clamp(70px, 8vw, 112px) clamp(32px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 150, 46, 0.12), transparent 24rem),
    linear-gradient(180deg, #fbf6ee 0%, #f2ebe0 100%);
  overflow: hidden;
}

.moodboard .section-heading {
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  align-items: center;
  padding-inline: clamp(20px, 5vw, 76px);
  margin-bottom: 28px;
}

.moodboard .section-heading h2 {
  max-width: 880px;
}

.mood-note {
  max-width: 620px;
  margin: 0 clamp(20px, 5vw, 76px) clamp(28px, 4vw, 48px) auto;
  border-left: 1px solid var(--gold);
  padding-left: 24px;
}

.mood-note p {
  color: rgba(43, 41, 36, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.editorial-mood {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(184, 150, 46, 0.24);
  background: rgba(28, 26, 23, 0.08);
  box-shadow: 0 28px 76px rgba(28, 26, 23, 0.12);
}

.mood-story {
  position: relative;
  min-height: min(58vw, 560px);
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(251, 246, 238, 0.28);
  background: var(--charcoal);
  cursor: pointer;
  outline: 0;
}

.mood-story-large,
.mood-story-wide {
  grid-column: span 2;
}

.mood-story img {
  transform: scale(1.01);
  filter: sepia(0.08) saturate(0.92) brightness(0.88);
  transition: transform 900ms ease, filter 900ms ease;
}

.mood-story::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 16% 82%, rgba(184, 150, 46, 0.34), transparent 22rem),
    linear-gradient(180deg, rgba(28, 26, 23, 0.04), rgba(28, 26, 23, 0.68));
  opacity: 0.64;
  transition: opacity 520ms ease;
}

.mood-story figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  transform: translateY(12px);
  color: var(--paper);
  opacity: 0;
  transition: opacity 420ms ease, transform 420ms ease;
}

.mood-story span {
  display: block;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 300;
  line-height: 0.98;
}

.mood-story em {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: transparent;
  background: linear-gradient(110deg, #b8962e, #fff0bf 48%, #b8962e);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-shadow: 0 0 18px rgba(184, 150, 46, 0.22);
  text-transform: uppercase;
}

.mood-story:hover img,
.mood-story:focus img {
  transform: scale(1.055);
  filter: sepia(0.04) saturate(1.02) brightness(0.98);
}

.mood-story:hover::after,
.mood-story:focus::after {
  opacity: 0.92;
}

.mood-story:hover figcaption,
.mood-story:focus figcaption {
  transform: translateY(0);
  opacity: 1;
}

.unlock-copy h2 em,
.intro-copy h2 em,
.services-title em,
.feature-copy h2 em,
.bridal-copy h2 em,
.moodboard .section-heading h2 em,
.about-copy h2 em {
  color: transparent;
  background: linear-gradient(110deg, #8f6b18 0%, #c8a545 24%, #fff0bf 48%, #c49f38 72%, #7f5f17 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.012em rgba(96, 68, 14, 0.24);
  filter: drop-shadow(0 0 14px rgba(184, 150, 46, 0.2));
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 1px 0 rgba(70, 48, 10, 0.12);
  animation: goldShine 5.2s ease-in-out infinite alternate;
}

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

.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5.8;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.event-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(28, 26, 23, 0.8), rgba(28, 26, 23, 0.08) 58%, rgba(28, 26, 23, 0.18)),
    linear-gradient(90deg, rgba(184, 150, 46, 0.18), transparent 38%);
}

.event-card figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--paper);
}

.event-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.7vw, 42px);
  font-weight: 300;
  line-height: 0.98;
}

.event-card em {
  display: block;
  color: var(--soft-gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 78px);
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 150, 46, 0.16), transparent 24rem),
    linear-gradient(115deg, rgba(251, 246, 238, 0.96) 0%, rgba(242, 235, 224, 0.9) 46%, rgba(226, 211, 178, 0.48) 100%);
  overflow: hidden;
}

.about::before {
  position: absolute;
  inset: 8% auto 10% 0;
  width: min(46vw, 640px);
  content: "";
  background: linear-gradient(90deg, rgba(184, 150, 46, 0.14), transparent);
  pointer-events: none;
}

.about-copy,
.about-image {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  max-width: 780px;
  line-height: 0.96;
}

.about-image {
  height: min(70vw, 620px);
  min-height: 410px;
  border: 1px solid rgba(184, 150, 46, 0.2);
  box-shadow: 0 26px 70px rgba(28, 26, 23, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.stats div {
  padding: 24px;
  background: rgba(251, 246, 238, 0.68);
}

.stats dt {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.stats dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 8vw, 96px);
  padding-block: clamp(48px, 6vw, 78px);
  color: var(--paper);
  background:
    radial-gradient(circle at 26% 74%, rgba(184, 150, 46, 0.3), transparent 28rem),
    linear-gradient(90deg, rgba(28, 26, 23, 0.72) 0%, rgba(59, 48, 33, 0.56) 48%, rgba(28, 26, 23, 0.42) 100%),
    linear-gradient(0deg, rgba(28, 26, 23, 0.28), rgba(242, 235, 224, 0.06)),
    url("assets/images/sangeet-party.jpg") center / cover;
  overflow: hidden;
}

.fireworks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-copy p {
  color: rgba(251, 246, 238, 0.82);
}

.phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--soft-gold);
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(215, 193, 138, 0.36);
  background: rgba(251, 246, 238, 0.08);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(215, 193, 138, 0.46);
  border-radius: 0;
  padding: 13px 0;
  color: var(--paper);
  background: transparent;
  font: 16px/1.5 var(--sans);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services .section-heading {
    grid-template-columns: 1fr;
  }

  .services-title {
    justify-self: start;
    text-align: left;
  }

  .services-title span {
    white-space: normal;
  }

  .feature-split,
  .about,
  .contact,
  .intro,
  .section-heading,
  .unlock-sticky {
    grid-template-columns: 1fr;
  }

  .feature-split {
    min-height: 0;
  }

  .bridal-feature {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 72px;
    background: var(--paper);
  }

  .bridal-image {
    position: relative;
    inset: auto;
    height: min(74vw, 620px);
    min-height: 420px;
    margin-top: 32px;
  }

  .bridal-image::after {
    background:
      linear-gradient(0deg, rgba(251, 246, 238, 0.2), transparent 42%),
      linear-gradient(90deg, rgba(251, 246, 238, 0.22), transparent 44%);
  }

  .event-suite {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .event-card {
    min-width: 210px;
    scroll-snap-align: start;
  }

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

  .mood-story,
  .mood-story-large,
  .mood-story-wide {
    grid-column: span 1;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-top: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    padding-top: 138px;
    padding-bottom: 62px;
  }

  .hero::after {
    background:
      radial-gradient(circle at 16% 78%, rgba(184, 150, 46, 0.18), transparent 17rem),
      linear-gradient(90deg, rgba(28, 26, 23, 0.72), rgba(28, 26, 23, 0.34) 56%, rgba(28, 26, 23, 0.02)),
      linear-gradient(0deg, rgba(40, 33, 27, 0.58), transparent 52%);
  }

  .hero img {
    object-position: 61% center;
  }

  h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

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

  .marquee span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 193, 138, 0.2);
  }

  .band,
  .services,
  .moodboard,
  .bridal-feature,
  .about,
  .contact {
    padding-block: 68px;
  }

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

  .service-grid article {
    min-height: 260px;
  }

  .service-grid span {
    margin-bottom: 46px;
  }

  .services-title {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 58px);
  }

  .feature-copy {
    min-height: 640px;
  }

  .feature-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .feature-image {
    min-height: 420px;
  }

  .ring-unlock {
    min-height: 100svh;
  }

  .unlock-sticky {
    padding-top: 102px;
    display: block;
  }

  .ring-scene {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    width: auto;
    min-height: 360px;
    height: 360px;
    opacity: 0.96;
  }

  .ring-viewer {
    width: 100%;
    height: 360px;
    min-width: 0;
    border-radius: 18px;
  }

  .unlock-copy {
    padding-top: 386px;
  }

  .intro-image {
    height: auto;
    min-height: 470px;
    aspect-ratio: 4 / 5.4;
    padding: 0;
  }

  .intro {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 68px clamp(20px, 5vw, 76px);
  }

  .intro::after {
    background:
      linear-gradient(180deg, rgba(251, 246, 238, 0.08), rgba(251, 246, 238, 0.9) 48%, rgba(251, 246, 238, 0.98) 100%);
  }

  .intro-image {
    position: relative;
    inset: auto;
    width: calc(100% + (clamp(20px, 5vw, 76px) * 2));
    margin-inline: calc(clamp(20px, 5vw, 76px) * -1);
  }

  .intro-copy {
    grid-column: 1;
    padding-top: 34px;
  }

  .album-spread {
    width: 92%;
    height: 70%;
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 12px;
  }

  .album-cover {
    width: 100%;
    height: 100%;
  }

  .album-toggle {
    left: auto;
    right: 34px;
    bottom: 54px;
  }

  .album-photo {
    border-width: 6px;
  }

  .bridal-image {
    min-height: 360px;
  }

  .event-suite {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .event-card {
    min-width: 0;
    aspect-ratio: 4 / 5;
  }

  .moodboard .section-heading {
    grid-template-columns: 1fr;
  }

  .mood-note {
    margin-inline: clamp(20px, 5vw, 76px);
  }

  .editorial-mood {
    grid-template-columns: 1fr;
  }

  .mood-story,
  .mood-story-large,
  .mood-story-wide {
    min-height: 390px;
  }

  .mood-story figcaption {
    opacity: 1;
    transform: none;
  }

  .contact-form {
    padding: 22px;
  }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 span,
  .marquee span:nth-child(3),
  .unlock-copy h2 em,
  .intro-copy h2 em,
  .services-title em,
  .feature-copy h2 em,
  .bridal-copy h2 em,
  .moodboard .section-heading h2 em,
  .about-copy h2 em {
    animation: none;
  }
}
