:root {
  --white: #ffffff;
  --canvas: #fff9fb;
  --blush: #fde7ee;
  --rose-mist: #f9cedc;
  --pink: #f02d72;
  --red: #d10b45;
  --red-dark: #a50636;
  --plum: #330717;
  --violet: #7040c9;
  --violet-dark: #3e176f;
  --lilac: #eee3ff;
  --ink: #241018;
  --muted: #725c65;
  --line: #eddde3;
  --champagne: #f5cda7;
  --font-display: var(--font-bodoni), "Bodoni MT", "Didot", serif;
  --font-body: var(--font-manrope), Inter, ui-sans-serif, system-ui, sans-serif;
  --font-script: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;
  --ease: 280ms cubic-bezier(0.2, 0.72, 0.24, 1);
  --shadow-soft: 0 24px 80px rgba(87, 10, 40, 0.11);
  --shadow-red: 0 18px 42px rgba(209, 11, 69, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --font-body: var(--font-manrope), Inter, ui-sans-serif, system-ui, sans-serif;
  --font-display: var(--font-bodoni), "Bodoni MT", "Didot", serif;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-manrope), Inter, ui-sans-serif, system-ui, sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

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

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

button,
select,
input {
  color: inherit;
}

:where(a, button, select, input):focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--plum);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -100%;
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

.site-width {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: clamp(1.25rem, 4vw, 4.5rem);
  width: 100%;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.announcement {
  background: linear-gradient(95deg, #8d0832 0%, #c80a46 48%, #f12d73 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.announcement__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 38px;
}

.announcement p {
  margin: 0;
}

.announcement p span {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  margin-right: 0.65rem;
  padding: 0.18rem 0.52rem;
  text-transform: uppercase;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 0.1rem;
}

.site-header {
  backdrop-filter: blur(18px) saturate(150%);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(130, 33, 66, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  min-height: 80px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.7rem;
}

.brand__mark {
  align-items: center;
  background: linear-gradient(145deg, #fa347a 0%, #cf093f 75%);
  border-radius: 15px 15px 15px 4px;
  box-shadow: 0 9px 24px rgba(209, 11, 69, 0.22);
  color: var(--white);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.brand__mark::after {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
  height: 32px;
  position: absolute;
  right: -13px;
  top: -9px;
  width: 32px;
}

.brand__mark i {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

.brand__word {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(1.25rem, 2.2vw, 2.4rem);
  margin-left: auto;
}

.nav a,
.text-link {
  color: #4f3540;
  font-size: 0.83rem;
  font-weight: 600;
  position: relative;
}

.nav a::after,
.text-link::after {
  background: linear-gradient(90deg, var(--red), var(--pink));
  bottom: -0.45rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
  width: 100%;
}

.nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.button {
  align-items: center;
  background: linear-gradient(110deg, var(--red-dark), var(--red) 55%, var(--pink));
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-red);
  color: var(--white);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 720;
  gap: 0.9rem;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  transition: box-shadow var(--ease), transform var(--ease);
}

.button span {
  font-size: 1.05em;
  transition: transform var(--ease);
}

.button:hover {
  box-shadow: 0 22px 50px rgba(209, 11, 69, 0.32);
  transform: translateY(-3px);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button--small {
  min-height: 44px;
  padding: 0.7rem 1.2rem;
}

.button--ghost {
  background: transparent;
  border: 1px solid #d9bac6;
  box-shadow: none;
  color: var(--plum);
}

.button--ghost:hover {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 14px 35px rgba(87, 10, 40, 0.09);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  margin-left: auto;
  padding: 0;
  position: relative;
  width: 42px;
}

.menu-button span {
  background: var(--plum);
  height: 2px;
  left: 9px;
  position: absolute;
  width: 24px;
}

.menu-button span:first-child { top: 15px; }
.menu-button span:last-child { top: 24px; }

.hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 36%),
    var(--canvas);
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(209, 11, 69, 0.1) 0.75px, transparent 0.75px);
  background-size: 13px 13px;
  content: "";
  height: 560px;
  left: -80px;
  mask-image: linear-gradient(120deg, black, transparent 73%);
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
  top: 2rem;
  width: 560px;
  z-index: -1;
}

.hero__glow {
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero__glow--one {
  background: radial-gradient(circle, rgba(247, 66, 129, 0.23), rgba(247, 66, 129, 0));
  height: 620px;
  right: -140px;
  top: -170px;
  width: 620px;
}

.hero__glow--two {
  background: radial-gradient(circle, rgba(255, 191, 212, 0.38), rgba(255, 191, 212, 0));
  bottom: -170px;
  height: 480px;
  left: 25%;
  width: 480px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 760px;
  padding-bottom: 8.5rem;
  padding-top: clamp(4rem, 7vw, 7rem);
}

.hero__copy {
  padding-bottom: 1rem;
  position: relative;
  z-index: 3;
}

.eyebrow {
  align-items: center;
  color: var(--red);
  display: flex;
  font-size: 0.7rem;
  font-weight: 780;
  gap: 0.6rem;
  letter-spacing: 0.16em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--pink);
  font-size: 1rem;
}

.eyebrow--red { color: var(--red); }
.eyebrow--light { color: #ffc7d9; }

.hero h1 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 6.8vw, 7.25rem);
  font-weight: 560;
  letter-spacing: -0.072em;
  line-height: 0.84;
  margin: 0;
  max-width: 7.4ch;
}

.hero h1 > span {
  display: block;
}

.hero h1 em {
  background: linear-gradient(100deg, var(--red-dark) 5%, var(--red) 50%, var(--pink) 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-weight: 480;
  margin-left: 0.35em;
  margin-top: 0.08em;
}

.hero__handwritten {
  color: var(--red);
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1;
  margin: 1.5rem 0 0 4.2rem;
  opacity: 0.9;
  transform: rotate(-4deg);
  width: max-content;
}

.hero__lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.72;
  margin: 2rem 0 0;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.hero__proof {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.85rem;
  margin-top: 2.5rem;
  max-width: 34rem;
  padding-top: 1.45rem;
}

.proof__seal {
  align-items: center;
  background: var(--plum);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--rose-mist);
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.hero__proof p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  margin: 0;
}

.hero__proof p strong { color: var(--ink); }

.proof__rating {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 0.16rem;
  margin-left: 0.45rem;
  padding-left: 1rem;
}

.proof__rating span {
  color: var(--red);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.proof__rating small {
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
}

.hero-art {
  height: clamp(570px, 47vw, 690px);
  position: relative;
}

.hero-art::before {
  border: 1px solid rgba(209, 11, 69, 0.22);
  border-radius: 50%;
  content: "";
  height: 86%;
  left: 4%;
  position: absolute;
  top: 7%;
  width: 78%;
}

.hero-art__arch {
  background: var(--blush);
  border: 9px solid var(--white);
  border-radius: 17rem 17rem 1.7rem 1.7rem;
  box-shadow: 0 40px 100px rgba(92, 10, 41, 0.2);
  height: 92%;
  left: 8%;
  overflow: hidden;
  position: absolute;
  top: 1%;
  width: 75%;
}

.hero-art__arch img {
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  transition: transform 1.2s cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.hero-art:hover .hero-art__arch img {
  transform: scale(1.025);
}

.hero-art__veil {
  background: linear-gradient(to top, rgba(35, 2, 15, 0.48), transparent 42%);
  inset: 0;
  position: absolute;
}

.hero-art__caption {
  align-items: center;
  bottom: 1.65rem;
  color: var(--white);
  display: flex;
  font-family: var(--font-display);
  font-size: 1.05rem;
  gap: 0.9rem;
  left: 1.5rem;
  margin: 0;
  position: absolute;
}

.hero-art__caption span {
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding-right: 0.85rem;
}

.hero-art__mini {
  border: 6px solid var(--white);
  box-shadow: 0 20px 55px rgba(80, 8, 34, 0.2);
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 27%;
  z-index: 2;
}

.hero-art__mini img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-art__mini--top {
  border-radius: 6rem 1.35rem 1.35rem 1.35rem;
  height: 33%;
  top: 10%;
}

.hero-art__mini--bottom {
  border-radius: 1.35rem 1.35rem 6rem 1.35rem;
  bottom: 8%;
  height: 37%;
}

.hero-art__stamp {
  align-items: center;
  animation: float 5s ease-in-out infinite;
  background: var(--white);
  border: 1px solid var(--rose-mist);
  border-radius: 50%;
  bottom: 3%;
  box-shadow: var(--shadow-soft);
  color: var(--red);
  display: flex;
  height: 104px;
  justify-content: center;
  left: -1%;
  position: absolute;
  width: 104px;
  z-index: 3;
}

.hero-art__stamp::before {
  border: 1px dashed #e894b0;
  border-radius: 50%;
  content: "";
  inset: 8px;
  position: absolute;
}

.hero-art__stamp span {
  display: none;
}

.hero-art__stamp b {
  font-size: 2rem;
  font-weight: 400;
}

.hero-art__verified {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(82, 10, 35, 0.14);
  display: flex;
  gap: 0.65rem;
  left: 0;
  padding: 0.7rem 0.9rem;
  position: absolute;
  top: 18%;
  z-index: 4;
}

.hero-art__verified i {
  align-items: center;
  background: linear-gradient(145deg, var(--red), var(--pink));
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 0.65rem;
  font-style: normal;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.hero-art__verified span {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-art__verified strong { color: var(--plum); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-8px) rotate(-5deg); }
}

.search-wrap {
  margin-top: -105px;
  position: relative;
  transform: translateY(46%);
  z-index: 10;
}

.search-panel {
  align-items: stretch;
  backdrop-filter: blur(20px) saturate(130%);
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(209, 11, 69, 0.18);
  border-radius: 30px;
  box-shadow: 0 32px 100px rgba(87, 10, 40, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.6rem;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(160px, 0.9fr)) minmax(190px, 0.9fr);
  min-height: 154px;
  overflow: hidden;
  padding: 0.85rem;
}

.search-panel__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 1.4rem;
}

.search-panel__heading span,
.search-panel label > span {
  align-items: center;
  color: var(--red);
  display: flex;
  font-size: 0.66rem;
  font-weight: 780;
  gap: 0.38rem;
  letter-spacing: 0.115em;
  margin-bottom: 0.48rem;
  text-transform: uppercase;
}

.search-panel label > span i {
  color: var(--pink);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1;
}

.search-panel__heading strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.08;
}

.search-panel__heading small {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 25ch;
}

.search-panel label {
  background: linear-gradient(145deg, #fffafb, #fff3f7);
  border: 1px solid #ead8df;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.85rem 1rem;
  position: relative;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.search-panel label::after {
  align-items: center;
  background: #eaf8f0;
  border: 1px solid #cbe9d8;
  border-radius: 50%;
  color: #157347;
  content: "✓";
  display: flex;
  font-size: 0.54rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 0.75rem;
  top: 0.7rem;
  width: 20px;
}

.search-panel label > span { padding-right: 1.5rem; }

.search-panel label:hover,
.search-panel label:focus-within {
  background: white;
  border-color: rgba(209, 11, 69, 0.48);
  box-shadow: 0 12px 30px rgba(87, 10, 40, 0.1);
  transform: translateY(-2px);
}

.search-panel select {
  appearance: none;
  background: linear-gradient(45deg, transparent 50%, var(--red) 50%) right 0.28rem center / 6px 6px no-repeat,
              linear-gradient(135deg, var(--red) 50%, transparent 50%) right -0.06rem center / 6px 6px no-repeat;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 720;
  min-width: 0;
  outline: 0;
  padding: 0.26rem 1rem 0.26rem 0;
  width: 100%;
}

.search-panel label > small {
  color: #8b737d;
  font-size: 0.57rem;
  line-height: 1.35;
  margin-top: 0.38rem;
}

.search-button {
  align-items: center;
  background: linear-gradient(125deg, var(--red-dark), var(--red) 55%, var(--pink));
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(209, 11, 69, 0.32);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 0.92rem;
  font-weight: 780;
  gap: 0.9rem;
  justify-content: space-between;
  min-height: 100%;
  padding: 1rem 1.1rem;
  text-align: left;
  transition: filter var(--ease), box-shadow var(--ease), transform var(--ease);
}

.search-button > span {
  display: grid;
  gap: 0.28rem;
}

.search-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.56rem;
  font-weight: 580;
  letter-spacing: 0.01em;
}

.search-button b {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-size: 1.15rem;
  font-weight: 500;
  height: 38px;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
  width: 38px;
}

.search-button:hover {
  filter: saturate(1.12) brightness(1.04);
  box-shadow: 0 21px 46px rgba(209, 11, 69, 0.38);
  transform: translateY(-3px);
}

.search-button:hover b {
  background: rgba(255, 255, 255, 0.24);
  transform: translate(2px, -2px);
}

.search-message {
  background: var(--plum);
  border-radius: 0 0 16px 16px;
  color: white;
  font-size: 0.78rem;
  margin: 0 auto;
  padding: 0.75rem 1.2rem;
  text-align: center;
  width: calc(100% - 4rem);
}

.trust-ribbon {
  background:
    radial-gradient(circle at 92% 13%, rgba(240, 45, 114, 0.08), transparent 24rem),
    linear-gradient(180deg, #fff, #fff8fa);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  padding-top: clamp(10rem, 13vw, 13rem);
}

.trust-ribbon__heading {
  align-items: end;
  display: grid;
  gap: 1rem 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.trust-ribbon__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
}

.trust-ribbon__heading h2 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 0.94;
  margin: 0;
}

.trust-ribbon__heading > p:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
  margin: 0 0 0.35rem;
}

.trust-ribbon__inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-ribbon article {
  background: rgba(255, 255, 255, 0.84);
  border-block: 1px solid var(--line);
  min-height: 310px;
  padding: clamp(1.6rem, 2.7vw, 2.5rem);
  position: relative;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.trust-ribbon article:first-child {
  border-left: 1px solid var(--line);
  border-radius: 90px 0 0 24px;
}

.trust-ribbon article:last-child {
  border-radius: 0 24px 90px 0;
  border-right: 1px solid var(--line);
}

.trust-ribbon article:hover {
  background: white;
  box-shadow: 0 22px 55px rgba(87, 10, 40, 0.11);
  transform: translateY(-5px);
  z-index: 2;
}

.trust-ribbon article > span {
  color: #efbfd0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 4.4vw, 4.8rem);
  font-style: italic;
  line-height: 0.9;
}

.trust-ribbon article > i {
  color: var(--red);
  display: block;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.12em;
  margin-top: 2rem;
  text-transform: uppercase;
}

.trust-ribbon article h3 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 620;
  line-height: 1.08;
  margin: 0.65rem 0 0.85rem;
}

.trust-ribbon article p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.72;
  margin: 0;
}

.occasion-marquee {
  background: linear-gradient(100deg, #2b0513, #5e0929 55%, #8e0c3e);
  border-block: 1px solid rgba(255, 255, 255, 0.13);
  color: white;
  overflow: hidden;
  padding-block: 0.95rem;
  position: relative;
}

.occasion-marquee::before,
.occasion-marquee::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: 9vw;
  z-index: 2;
}

.occasion-marquee::before {
  background: linear-gradient(90deg, #2b0513, transparent);
  left: 0;
}

.occasion-marquee::after {
  background: linear-gradient(-90deg, #8e0c3e, transparent);
  right: 0;
}

.occasion-marquee__track {
  align-items: center;
  animation: occasion-scroll 36s linear infinite;
  display: flex;
  width: max-content;
}

.occasion-marquee__track span {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-style: italic;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-left: clamp(1.5rem, 3vw, 3rem);
  white-space: nowrap;
}

.occasion-marquee__track i {
  color: #ff73a5;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
}

@keyframes occasion-scroll {
  to { transform: translateX(-50%); }
}

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

.section-heading h2 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 0;
}

.section-heading h2 em {
  color: var(--red);
  font-weight: 500;
}

.section-heading--split {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading--split > p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 0.45rem;
}

.moments-grid {
  display: grid;
  gap: clamp(0.75rem, 1.3vw, 1.25rem);
  grid-auto-rows: minmax(265px, 22vw);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.moment-card {
  border-radius: 24px;
  grid-column: span 3;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.moment-card--wide {
  border-radius: 160px 28px 28px 28px;
  grid-column: span 6;
  grid-row: span 2;
}

.moment-card:nth-child(2) { border-radius: 24px 120px 24px 24px; }
.moment-card:nth-child(3) { border-radius: 24px 24px 24px 110px; }
.moment-card:nth-child(5) { border-radius: 24px 24px 110px 24px; }
.moment-card:nth-child(6),
.moment-card:nth-child(7) { grid-column: span 6; }
.moment-card:nth-child(6) { border-radius: 100px 24px 24px 24px; }
.moment-card:nth-child(7) { border-radius: 24px 24px 100px 24px; }

.moment-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.moment-card--wide > img { object-position: 62% center; }
.moment-card--kids > img { object-position: 50% 46%; }
.moment-card--sangeet > img { object-position: 52% center; }

.moment-card:hover > img { transform: scale(1.045); }

.moment-card__wash {
  background: linear-gradient(to top, rgba(34, 2, 15, 0.85), rgba(34, 2, 15, 0.05) 63%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.moment-card__copy {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: clamp(1.15rem, 2vw, 2rem);
  position: absolute;
  right: 0;
  z-index: 2;
}

.moment-card__copy p {
  color: #ffc5d8;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.moment-card__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.07;
  margin: 0;
  max-width: 17ch;
}

.moment-card--wide .moment-card__copy h3 {
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  max-width: 13ch;
}

.moment-card__copy a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 650;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-bottom: 0.2rem;
}

.save-button {
  align-items: center;
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--red);
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: 1.15rem;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
  width: 40px;
  z-index: 3;
}

.save-button:hover { transform: scale(1.08); }
.save-button--saved { background: var(--red); color: white; }

.kids-feature {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.94), transparent 23rem),
    radial-gradient(circle at 84% 78%, rgba(255, 166, 208, 0.46), transparent 26rem),
    linear-gradient(135deg, #fff6fc 0%, #f2e7ff 48%, #ffe5f1 100%);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.kids-feature::before {
  border: 1px solid rgba(112, 64, 201, 0.14);
  border-radius: 50%;
  content: "";
  height: 760px;
  position: absolute;
  right: -260px;
  top: -300px;
  width: 760px;
  z-index: -1;
}

.kids-feature__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.eyebrow--violet {
  color: var(--violet-dark);
}

.eyebrow--violet span {
  color: #a751dc;
}

.kids-feature__copy h2 {
  color: var(--violet-dark);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.84;
  margin: 0;
}

.kids-feature__copy h2 em {
  background: linear-gradient(105deg, #c42984, #7850d8 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 480;
}

.kids-feature__copy > p:not(.eyebrow) {
  color: #6d5774;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 2rem 0;
  max-width: 35rem;
}

.kids-feature__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.kids-feature__themes span {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(112, 64, 201, 0.16);
  border-radius: 999px;
  color: var(--violet-dark);
  font-size: 0.66rem;
  font-weight: 720;
  padding: 0.55rem 0.8rem;
}

.button--violet {
  background: linear-gradient(115deg, #461674, #7c3bc4 55%, #d3378b);
  box-shadow: 0 18px 44px rgba(85, 28, 129, 0.25);
}

.button--violet:hover {
  box-shadow: 0 24px 55px rgba(85, 28, 129, 0.32);
}

.kids-feature__visual {
  height: clamp(580px, 54vw, 760px);
  position: relative;
}

.kids-feature__visual figure {
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 19rem 19rem 3rem 3rem;
  box-shadow: 0 38px 100px rgba(83, 35, 119, 0.22);
  height: 92%;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 4%;
  top: 1%;
  width: 72%;
  z-index: 1;
}

.kids-feature__visual figure::after {
  background: linear-gradient(to top, rgba(49, 13, 72, 0.32), transparent 36%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.kids-feature__visual figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.kids-feature__visual:hover figure img {
  transform: scale(1.025);
}

.kids-feature__halo {
  background: radial-gradient(circle, rgba(213, 69, 158, 0.38), rgba(136, 85, 211, 0.13) 55%, transparent 70%);
  border-radius: 50%;
  height: 86%;
  position: absolute;
  right: -1%;
  top: 7%;
  width: 88%;
}

.kids-feature__wish {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(63, 18, 94, 0.18);
  color: var(--violet-dark);
  display: grid;
  gap: 0.15rem;
  left: 1%;
  min-width: 145px;
  padding: 1.15rem 1.3rem;
  position: absolute;
  top: 17%;
  z-index: 3;
}

.kids-feature__wish span {
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kids-feature__wish strong {
  color: #c62e83;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.9;
}

.kids-feature__wish i {
  color: #9153d3;
  font-style: normal;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.kids-feature__note {
  bottom: 5%;
  color: white;
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.25;
  margin: 0;
  position: absolute;
  right: 9%;
  text-align: right;
  transform: rotate(-3deg);
  z-index: 3;
}

.kids-feature__confetti i {
  animation: confetti-drift 7s ease-in-out infinite;
  background: #f04492;
  border-radius: 2px;
  height: 10px;
  position: absolute;
  transform: rotate(22deg);
  width: 5px;
  z-index: 2;
}

.kids-feature__confetti i:nth-child(1) { left: 5%; top: 17%; }
.kids-feature__confetti i:nth-child(2) { animation-delay: -2s; background: #8c55d3; left: 43%; top: 13%; }
.kids-feature__confetti i:nth-child(3) { animation-delay: -4s; background: #ffab47; left: 54%; top: 77%; }
.kids-feature__confetti i:nth-child(4) { animation-delay: -1s; background: #dc297b; right: 5%; top: 31%; }
.kids-feature__confetti i:nth-child(5) { animation-delay: -3s; background: #7b4bcc; left: 12%; top: 82%; }
.kids-feature__confetti i:nth-child(6) { animation-delay: -5s; background: #ffbd55; right: 17%; top: 8%; }

@keyframes confetti-drift {
  0%, 100% { transform: translateY(0) rotate(22deg); }
  50% { transform: translateY(-15px) rotate(200deg); }
}

.cities {
  background: linear-gradient(180deg, #fff7fa, #fcecf2);
  border-block: 1px solid #f2dce5;
}

.section-heading--row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.section-heading--row h2 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  max-width: 11ch;
}

.arrow-link {
  border-bottom: 1px solid var(--red);
  color: var(--red-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.6rem;
  padding-bottom: 0.25rem;
}

.city-grid {
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
}

.city-card {
  aspect-ratio: 0.78;
  border-radius: 18rem 18rem 1.5rem 1.5rem;
  box-shadow: 0 22px 60px rgba(87, 10, 40, 0.12);
  color: white;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.city-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.city-card:hover img { transform: scale(1.04); }

.city-card__overlay {
  background: linear-gradient(to top, rgba(44, 2, 18, 0.82), transparent 62%);
  inset: 0;
  position: absolute;
}

.city-card__number {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.75rem;
  height: 42px;
  left: 1.4rem;
  padding-top: 0.75rem;
  position: absolute;
  text-align: center;
  top: 1.4rem;
  width: 42px;
}

.city-card > div:last-of-type {
  bottom: 1.7rem;
  left: 1.7rem;
  position: absolute;
}

.city-card p {
  color: #ffc8da;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
}

.city-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 0;
}

.city-card > b {
  bottom: 2rem;
  font-size: 1.35rem;
  font-weight: 400;
  position: absolute;
  right: 1.7rem;
}

.spectacle {
  color: white;
  isolation: isolate;
  min-height: clamp(720px, 68vw, 940px);
  overflow: hidden;
  position: relative;
}

.spectacle__backdrop {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: -3;
}

.spectacle__wash {
  background:
    linear-gradient(90deg, rgba(26, 2, 13, 0.91) 0%, rgba(41, 3, 19, 0.69) 43%, rgba(33, 2, 16, 0.06) 76%),
    linear-gradient(to top, rgba(28, 2, 14, 0.74), transparent 50%);
  inset: 0;
  position: absolute;
  z-index: -2;
}

.spectacle::after {
  background: linear-gradient(90deg, #ff2c77, transparent);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  width: 55%;
}

.spectacle__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-bottom: clamp(5rem, 9vw, 9rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  position: relative;
  z-index: 2;
}

.spectacle__content h2 {
  color: white;
  font-family: var(--font-display);
  font-size: clamp(4.7rem, 8vw, 8.8rem);
  font-weight: 480;
  letter-spacing: -0.07em;
  line-height: 0.83;
  margin: 0;
  max-width: 8.6ch;
  text-shadow: 0 12px 45px rgba(19, 0, 8, 0.34);
}

.spectacle__content h2 em {
  color: #ff8eb7;
  font-weight: 450;
}

.spectacle__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin: 2.25rem 0;
  max-width: 33rem;
}

.button--glass {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 50px rgba(20, 0, 8, 0.27);
  width: max-content;
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.22);
}

.spectacle__frame {
  border: 7px solid rgba(255, 255, 255, 0.85);
  border-radius: 9rem 9rem 1.6rem 1.6rem;
  bottom: 7%;
  box-shadow: 0 25px 80px rgba(18, 0, 8, 0.36);
  height: 38%;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 4.5%;
  width: min(270px, 18vw);
  z-index: 3;
}

.spectacle__frame > img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  width: 100%;
}

.spectacle__frame::after {
  background: linear-gradient(to top, rgba(33, 2, 15, 0.82), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.spectacle__frame figcaption {
  bottom: 1.1rem;
  display: grid;
  gap: 0.2rem;
  left: 1.1rem;
  position: absolute;
  right: 1.1rem;
  z-index: 2;
}

.spectacle__frame figcaption span {
  color: #ffc4d8;
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.spectacle__frame figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 500;
}

.spectacle__memory {
  backdrop-filter: blur(15px);
  background: rgba(34, 2, 16, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  position: absolute;
  right: 6%;
  top: 12%;
  z-index: 3;
}

.spectacle__memory span {
  color: #ffc6da;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spectacle__memory strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.spectacle__stars i {
  animation: star-pulse 3.4s ease-in-out infinite;
  color: white;
  font-style: normal;
  opacity: 0.8;
  position: absolute;
  z-index: 2;
}

.spectacle__stars i:nth-child(1) { left: 46%; top: 17%; }
.spectacle__stars i:nth-child(2) { animation-delay: -1.1s; font-size: 0.65rem; left: 39%; top: 77%; }
.spectacle__stars i:nth-child(3) { animation-delay: -2.2s; font-size: 1.2rem; right: 24%; top: 28%; }

@keyframes star-pulse {
  0%, 100% { opacity: 0.28; transform: scale(0.75) rotate(0); }
  50% { opacity: 1; transform: scale(1.22) rotate(45deg); }
}

.budget {
  background:
    linear-gradient(120deg, rgba(75, 2, 29, 0.96), rgba(152, 5, 59, 0.96)),
    var(--plum);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.budget::before {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
  height: 650px;
  left: -330px;
  position: absolute;
  top: -290px;
  width: 650px;
}

.budget__orb {
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
  position: absolute;
  z-index: -1;
}

.budget__orb--one {
  background: radial-gradient(circle at 35% 35%, #ff6ca0, #e60f5a 42%, transparent 72%);
  height: 420px;
  right: -160px;
  top: -160px;
  width: 420px;
}

.budget__orb--two {
  background: radial-gradient(circle, rgba(249, 96, 151, 0.28), transparent 68%);
  bottom: -170px;
  height: 520px;
  left: 31%;
  width: 520px;
}

.budget__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.budget__copy h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
  margin: 0;
}

.budget__copy h2 em {
  color: #ff8ab2;
  font-weight: 500;
}

.budget__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  margin: 2rem 0;
  max-width: 39rem;
}

.budget__copy ul {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.budget__copy li {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-size: 0.83rem;
  gap: 0.8rem;
}

.budget__copy li i {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffc7da;
  display: flex;
  flex: 0 0 auto;
  font-size: 0.6rem;
  font-style: normal;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.budget__copy li strong { color: white; }

.budget-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px 32px 100px 32px;
  box-shadow: 0 38px 100px rgba(35, 0, 13, 0.32);
  color: var(--ink);
  padding: clamp(1.6rem, 3.2vw, 2.8rem);
}

.budget-card__top {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.budget-card__top > div {
  display: grid;
  gap: 0.35rem;
}

.budget-card__top span,
.range-label > span,
.guest-select > span,
.budget-card__insight > span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.budget-card__top strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.budget-card__badge {
  background: var(--blush);
  border-radius: 999px;
  color: var(--red) !important;
  padding: 0.45rem 0.65rem;
}

.range-label {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.range-label input {
  appearance: none;
  background: linear-gradient(90deg, var(--red) var(--range-position), #eedce3 var(--range-position));
  border-radius: 999px;
  height: 5px;
  width: 100%;
}

.range-label input::-webkit-slider-thumb {
  appearance: none;
  background: var(--white);
  border: 5px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(209, 11, 69, 0.28);
  cursor: grab;
  height: 24px;
  width: 24px;
}

.range-label input::-moz-range-thumb {
  background: var(--white);
  border: 5px solid var(--red);
  border-radius: 50%;
  cursor: grab;
  height: 14px;
  width: 14px;
}

.range-label small {
  color: #9d8991;
  display: flex;
  font-size: 0.65rem;
  justify-content: space-between;
}

.guest-select {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
}

.guest-select select {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.8rem 0.9rem;
}

.budget-card__insight {
  background: linear-gradient(135deg, #fff4f7, #fde2eb);
  border-left: 3px solid var(--red);
  display: grid;
  gap: 0.25rem;
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
}

.budget-card__insight strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.budget-card__insight p {
  color: var(--muted);
  font-size: 0.67rem;
  margin: 0;
}

.button--light {
  width: 100%;
}

/* Hybrid image system: cinematic storytelling, structured marketplace cards. */
.hero {
  background: #21050f;
  color: var(--white);
  overflow: visible;
}

.hero::before,
.hero__glow {
  display: none;
}

.hero__media {
  background: #21050f;
  display: grid;
  grid-template-columns: minmax(0, 78%) minmax(210px, 22%);
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero__main-image,
.hero__side-images figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero__main-image img,
.hero__side-images img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.hero__main-image img {
  object-position: 65% center;
}

.hero__side-images {
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 4px;
  grid-template-rows: 1fr 1fr;
  padding-left: 4px;
}

.hero__side-images figure:first-child img { object-position: 50% 42%; }
.hero__side-images figure:last-child img { object-position: 54% center; }

.hero__side-images figcaption {
  background: linear-gradient(to top, rgba(37, 2, 15, 0.74), transparent);
  bottom: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.25vw, 1.25rem);
  font-style: italic;
  left: 0;
  padding: 2.8rem 1.2rem 1.05rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero:hover .hero__main-image img,
.hero:hover .hero__side-images img {
  transform: scale(1.018);
}

.hero__image-wash {
  background:
    linear-gradient(90deg, rgba(24, 2, 10, 0.93) 0%, rgba(34, 3, 15, 0.82) 31%, rgba(38, 3, 17, 0.34) 58%, rgba(25, 1, 10, 0.12) 76%),
    linear-gradient(to top, rgba(28, 2, 13, 0.48), transparent 45%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero__grid {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  min-height: 790px;
  padding-bottom: 9rem;
  padding-top: clamp(4.5rem, 8vw, 8rem);
  position: relative;
  z-index: 2;
}

.hero__copy {
  max-width: 760px;
  padding-bottom: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4.4rem, 7vw, 7.8rem);
  max-width: 8ch;
  text-shadow: 0 16px 60px rgba(17, 0, 7, 0.42);
}

.hero h1 em {
  background: linear-gradient(100deg, #ffd6e4 5%, #ff8ab2 47%, #ff3d83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 33rem;
}

.hero .button--ghost {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.hero .button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero__proof {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.hero__proof p,
.proof__rating small { color: rgba(255, 255, 255, 0.72); }
.hero__proof p strong { color: white; }
.proof__seal { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.42); box-shadow: none; }
.proof__rating { border-left-color: rgba(255, 255, 255, 0.22); }
.proof__rating span { color: #ff8db6; }
.hero__handwritten { color: #ffc3d8; }

.venues {
  background:
    radial-gradient(circle at 92% 9%, rgba(240, 45, 114, 0.08), transparent 24rem),
    var(--white);
}

.venue-heading h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  max-width: 11ch;
}

.venue-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(75, 9, 35, 0.09);
  min-width: 0;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}

.venue-card:hover {
  box-shadow: 0 26px 70px rgba(75, 9, 35, 0.15);
  transform: translateY(-6px);
}

.venue-card__media {
  aspect-ratio: 4 / 3;
  background: var(--blush);
  overflow: hidden;
  position: relative;
}

.venue-card__media::after {
  background: linear-gradient(to bottom, rgba(32, 2, 13, 0.18), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.venue-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.venue-card:hover .venue-card__media img { transform: scale(1.035); }

.venue-card__badge {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--plum);
  display: flex;
  font-size: 0.62rem;
  font-weight: 750;
  gap: 0.4rem;
  left: 0.85rem;
  padding: 0.42rem 0.62rem;
  position: absolute;
  top: 0.85rem;
  z-index: 2;
}

.venue-card__badge i {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 0.48rem;
  font-style: normal;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.venue-card__body { padding: clamp(1.05rem, 2vw, 1.4rem); }

.venue-card__topline {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.venue-card__topline h3 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
  line-height: 1.08;
  margin: 0;
}

.venue-card__topline p {
  color: var(--muted);
  font-size: 0.68rem;
  margin: 0.35rem 0 0;
}

.venue-card__topline > span {
  align-items: flex-end;
  display: grid;
  flex: 0 0 auto;
  gap: 0.2rem;
  text-align: right;
}

.venue-card__topline b { color: var(--red); font-size: 0.7rem; }
.venue-card__topline small { color: var(--muted); font-size: 0.55rem; }

.venue-card__facts {
  align-items: center;
  border-block: 1px solid var(--line);
  color: #65505a;
  display: flex;
  font-size: 0.65rem;
  gap: 0.65rem;
  margin-top: 1.1rem;
  padding-block: 0.85rem;
}

.venue-card__facts i { background: #d9c6ce; border-radius: 50%; height: 3px; width: 3px; }

.venue-card__footer {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1rem;
}

.venue-card__footer > div { display: grid; gap: 0.2rem; }
.venue-card__footer small { color: var(--muted); font-size: 0.55rem; text-transform: uppercase; }
.venue-card__footer strong { color: var(--plum); font-size: 0.82rem; }

.venue-card__footer a {
  align-items: center;
  color: var(--red-dark);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 750;
  gap: 0.45rem;
}

.occasion-block {
  border-top: 1px solid var(--line);
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.occasion-block__heading {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

.occasion-block__heading h2 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.occasion-block__heading > p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 0;
  max-width: 27rem;
}

.occasion-grid {
  display: grid;
  gap: clamp(0.65rem, 1.3vw, 1.1rem);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.occasion-card {
  aspect-ratio: 1;
  border-radius: 22px;
  box-shadow: 0 13px 35px rgba(75, 9, 35, 0.11);
  color: white;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.occasion-card::after {
  background: linear-gradient(to top, rgba(35, 2, 15, 0.82), transparent 65%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.occasion-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.occasion-card:hover img { transform: scale(1.055); }
.occasion-card span { bottom: 1rem; font-family: var(--font-display); font-size: clamp(0.95rem, 1.45vw, 1.35rem); left: 1rem; line-height: 1.02; max-width: 8ch; position: absolute; z-index: 2; }
.occasion-card b { font-size: 0.9rem; font-weight: 400; position: absolute; right: 0.9rem; top: 0.8rem; z-index: 2; }

.moment-card,
.moment-card:nth-child(3),
.moment-card:nth-child(5),
.moment-card:nth-child(6),
.moment-card:nth-child(7) {
  border-radius: 24px;
}

.moment-card--wide { border-radius: 150px 28px 28px 28px; }
.moment-card--kids { border-radius: 24px 120px 24px 24px !important; }

.city-card {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
}

.how {
  background: var(--white);
}

.section-heading--center {
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  max-width: 850px;
  text-align: center;
}

.section-heading--center .eyebrow { justify-content: center; }

.steps {
  counter-reset: steps;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.steps article {
  background: var(--canvas);
  border-block: 1px solid var(--line);
  min-height: 315px;
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
  position: relative;
}

.steps article:first-child {
  border-left: 1px solid var(--line);
  border-radius: 100px 0 0 24px;
}

.steps article:last-child {
  border-radius: 0 24px 100px 0;
  border-right: 1px solid var(--line);
}

.steps article > span {
  color: #e7b7c7;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-style: italic;
  line-height: 1;
}

.steps article > i {
  color: var(--red);
  display: block;
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.12em;
  margin-top: 2.1rem;
  text-transform: uppercase;
}

.steps h3 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0.7rem 0 0.8rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

.owners {
  background: var(--white);
  padding-top: 0;
}

.owners__inner {
  align-items: center;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 117, 166, 0.55), transparent 25%),
    linear-gradient(120deg, #a40639, #e11259 60%, #f02d72);
  border-radius: 36px;
  color: white;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(380px, 1.15fr) minmax(300px, 0.85fr);
  max-width: calc(1440px - 2.5rem);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-right: clamp(2rem, 5vw, 5rem);
}

.owners__image {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(64, 0, 23, 0.28);
  overflow: hidden;
  position: relative;
}

.owners__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.owners__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
  max-width: 10ch;
}

.owners__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 1.4rem 0 1.7rem;
  max-width: 32rem;
}

.button--white {
  background: white;
  box-shadow: 0 15px 40px rgba(62, 0, 22, 0.22);
  color: var(--red-dark);
}

.footer {
  background: #2b0714;
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(4.5rem, 8vw, 7rem) 1.5rem;
}

.footer__top {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(260px, 0.8fr) minmax(480px, 1.2fr);
  padding-bottom: 4rem;
}

.brand--footer .brand__word { color: white; }

.footer__top > div:first-child > p {
  font-size: 0.83rem;
  line-height: 1.75;
  margin: 1.2rem 0 0;
  max-width: 25rem;
}

.footer__links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.footer__links > div {
  display: grid;
  gap: 0.75rem;
}

.footer__links strong {
  color: #ffafc9;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.footer__links a {
  font-size: 0.78rem;
  transition: color var(--ease), transform var(--ease);
}

.footer__links a:hover { color: white; transform: translateX(3px); }

.footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  padding-top: 1.4rem;
}

.footer__bottom div { display: flex; gap: 1.2rem; }

@media (max-width: 1180px) {
  .header__actions .text-link { display: none; }
  .nav { gap: 1.2rem; }
  .hero__grid { grid-template-columns: minmax(0, 690px); }
  .hero h1 { font-size: clamp(3.7rem, 7vw, 6rem); }
  .search-panel { grid-template-columns: 1.15fr repeat(3, 0.9fr) 0.95fr; }
  .search-panel__heading strong { font-size: 1.25rem; }
  .moment-card { grid-column: span 3; }
  .moment-card--wide { grid-column: span 6; }
  .moment-card:nth-child(6), .moment-card:nth-child(7) { grid-column: span 6; }
  .occasion-grid { grid-template-columns: repeat(3, 1fr); }
  .kids-feature__grid { gap: 4rem; grid-template-columns: 0.85fr 1.15fr; }
  .spectacle__frame { right: 3%; width: 20vw; }
  .owners__inner { grid-template-columns: minmax(340px, 1fr) minmax(300px, 0.85fr); }
}

@media (max-width: 960px) {
  .menu-button { display: block; }
  .header__actions { margin-left: 0; }
  .nav {
    align-items: stretch;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 55px rgba(87, 10, 40, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 1rem clamp(1.25rem, 4vw, 4.5rem) 1.4rem;
    position: absolute;
    right: 0;
    top: 79px;
  }
  .nav--open { display: flex; }
  .nav a { border-bottom: 1px solid var(--line); padding-block: 0.95rem; }
  .hero__grid { grid-template-columns: 1fr; padding-bottom: 7rem; }
  .hero__copy { padding-right: 20%; }
  .hero h1 { max-width: 8ch; }
  .hero__handwritten { margin-left: 5rem; }
  .hero-art { height: 640px; }
  .hero-art__arch { width: 72%; }
  .hero-art__mini { right: 4%; width: 25%; }
  .search-wrap { margin-top: -60px; transform: translateY(36%); }
  .search-panel { grid-template-columns: repeat(3, 1fr); }
  .search-panel__heading { grid-column: 1 / 4; padding-block: 1.1rem; }
  .search-panel__heading small { max-width: none; }
  .search-panel label { border: 1px solid #ead8df; min-height: 105px; }
  .search-button { grid-column: 1 / 4; min-height: 72px; }
  .trust-ribbon { padding-top: 13rem; }
  .trust-ribbon__heading { align-items: start; grid-template-columns: 1fr; }
  .trust-ribbon__heading .eyebrow { grid-column: 1; }
  .trust-ribbon__heading > p:last-child { max-width: 38rem; }
  .trust-ribbon__inner { gap: 1rem; grid-template-columns: repeat(2, 1fr); }
  .trust-ribbon article,
  .trust-ribbon article:first-child,
  .trust-ribbon article:last-child { border: 1px solid var(--line); border-radius: 24px; min-height: 285px; }
  .venue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .venue-card:last-child { grid-column: 1 / 3; max-width: calc(50% - 0.8rem); }
  .occasion-block__heading { align-items: flex-start; flex-direction: column; }
  .section-heading--split { grid-template-columns: 1fr; }
  .section-heading--split > p { max-width: 38rem; }
  .moments-grid { grid-auto-rows: 330px; }
  .moment-card, .moment-card--wide { grid-column: span 6; grid-row: span 1; }
  .moment-card:nth-child(6), .moment-card:nth-child(7) { grid-column: span 6; }
  .moment-card--wide { border-radius: 120px 28px 28px 28px; }
  .moment-card:last-child { grid-column: 4 / 10; }
  .kids-feature__grid { grid-template-columns: 1fr; }
  .kids-feature__copy { max-width: 44rem; }
  .kids-feature__visual { height: 700px; }
  .kids-feature__visual figure { right: 8%; width: 68%; }
  .kids-feature__wish { left: 8%; }
  .city-card h3 { font-size: 2.5rem; }
  .spectacle__wash { background: linear-gradient(90deg, rgba(26, 2, 13, 0.91), rgba(41, 3, 19, 0.6) 58%, rgba(33, 2, 16, 0.12)); }
  .spectacle__frame { height: 32%; width: 22vw; }
  .spectacle__memory { right: 4%; }
  .budget__grid { grid-template-columns: 1fr; }
  .budget__copy { max-width: 44rem; }
  .budget-card { max-width: 620px; width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article:first-child, .steps article:last-child { border: 1px solid var(--line); border-radius: 24px; min-height: auto; }
  .owners__inner { grid-template-columns: 1fr; padding: 1.25rem; }
  .owners__copy { padding: 1rem 1rem 1.5rem; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .announcement__inner { justify-content: center; min-height: 34px; text-align: center; }
  .announcement a { display: none; }
  .announcement p { font-size: 0.62rem; }
  .header__inner { min-height: 68px; }
  .brand__mark { height: 37px; width: 37px; }
  .brand__word { font-size: 1.5rem; }
  .header__actions { display: none; }
  .nav { top: 67px; }
  .hero__grid { min-height: auto; padding-bottom: 6rem; padding-top: 3.5rem; }
  .hero__copy { padding-right: 0; }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.5rem); line-height: 0.9; }
  .hero h1 em { margin-left: 0.16em; }
  .hero__handwritten { font-size: 1.15rem; margin-left: 2rem; }
  .hero__lead { font-size: 0.96rem; }
  .hero__media { grid-template-columns: 1fr; }
  .hero__side-images { display: none; }
  .hero__main-image img { object-position: 61% center; }
  .hero__image-wash { background: linear-gradient(90deg, rgba(25, 1, 10, 0.9), rgba(34, 2, 15, 0.6)), linear-gradient(to top, rgba(30, 2, 14, 0.66), transparent 58%); }
  .hero__actions .button { flex: 1 1 100%; }
  .hero__proof { align-items: flex-start; flex-wrap: wrap; }
  .proof__rating { margin-left: 0; }
  .hero-art { height: 480px; margin-top: 1.5rem; }
  .hero-art__arch { border-width: 6px; border-radius: 12rem 12rem 1.2rem 1.2rem; height: 90%; left: 1%; width: 80%; }
  .hero-art__mini { border-width: 4px; right: 0; width: 26%; }
  .hero-art__mini--top { height: 30%; top: 15%; }
  .hero-art__mini--bottom { bottom: 11%; height: 32%; }
  .hero-art__stamp { bottom: 5%; height: 76px; left: -3%; width: 76px; }
  .hero-art__verified { left: -2%; top: 13%; }
  .hero-art__caption { font-size: 0.88rem; left: 1rem; }
  .search-wrap { margin-top: -35px; transform: translateY(22%); }
  .search-panel { border-radius: 22px; display: grid; grid-template-columns: 1fr 1fr; padding: 0.65rem; }
  .search-panel__heading { grid-column: 1 / 3; }
  .search-panel__heading strong { font-size: 1.4rem; }
  .search-panel label { min-height: 104px; }
  .search-panel label:nth-of-type(3) { grid-column: 1 / 3; }
  .search-button { grid-column: 1 / 3; min-height: 74px; }
  .trust-ribbon { padding-top: 14rem; }
  .trust-ribbon__heading h2 { font-size: clamp(3.2rem, 14vw, 4.7rem); }
  .trust-ribbon__inner { grid-template-columns: 1fr; }
  .trust-ribbon article,
  .trust-ribbon article:first-child,
  .trust-ribbon article:last-child { border-radius: 24px; min-height: auto; }
  .venue-heading { align-items: flex-start; }
  .venue-grid { display: flex; margin-inline: -1.25rem; overflow-x: auto; padding: 0 1.25rem 1.2rem; scroll-snap-type: x mandatory; }
  .venue-card, .venue-card:last-child { flex: 0 0 86vw; grid-column: auto; max-width: none; scroll-snap-align: center; }
  .occasion-block__heading > p { max-width: 31rem; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-marquee { padding-block: 0.75rem; }
  .occasion-marquee__track span { font-size: 1rem; }
  .section { padding-block: 5.5rem; }
  .section-heading h2 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .moments-grid { display: flex; margin-inline: -1.25rem; overflow-x: auto; padding: 0 1.25rem 1.2rem; scroll-snap-type: x mandatory; }
  .moment-card, .moment-card--wide, .moment-card:last-child { border-radius: 22px; flex: 0 0 82vw; grid-column: auto; height: 485px; scroll-snap-align: center; }
  .moment-card--kids { border-radius: 22px 82px 22px 22px !important; }
  .moment-card--wide .moment-card__copy h3 { font-size: 2.2rem; }
  .kids-feature__copy h2 { font-size: clamp(4rem, 17vw, 5.7rem); }
  .kids-feature__visual { height: 530px; margin-top: 1rem; }
  .kids-feature__visual figure { border-width: 6px; border-radius: 13rem 13rem 2rem 2rem; height: 94%; right: 0; width: 84%; }
  .kids-feature__wish { left: 0; min-width: 125px; padding: 0.9rem 1rem; top: 12%; }
  .kids-feature__wish strong { font-size: 2.5rem; }
  .kids-feature__note { bottom: 3%; right: 5%; }
  .section-heading--row { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .city-grid { display: flex; margin-inline: -1.25rem; overflow-x: auto; padding: 0 1.25rem 1.2rem; scroll-snap-type: x mandatory; }
  .city-card { flex: 0 0 80vw; scroll-snap-align: center; }
  .spectacle { min-height: 760px; }
  .spectacle__backdrop { object-position: 64% center; }
  .spectacle__wash { background: linear-gradient(to top, rgba(25, 1, 11, 0.95) 0%, rgba(38, 2, 18, 0.67) 58%, rgba(21, 0, 9, 0.12)); }
  .spectacle__content { justify-content: flex-end; padding-bottom: 4.5rem; }
  .spectacle__content h2 { font-size: clamp(4.1rem, 17vw, 6rem); max-width: 8ch; }
  .spectacle__content > p:not(.eyebrow) { font-size: 0.9rem; margin: 1.5rem 0; max-width: 28rem; }
  .spectacle__frame, .spectacle__memory { display: none; }
  .budget__grid { gap: 3rem; }
  .budget__copy h2 { font-size: clamp(4rem, 17vw, 5.5rem); }
  .budget-card { border-radius: 25px 25px 70px 25px; }
  .budget-card__top { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .owners { padding-inline: 0.75rem; }
  .owners__inner { border-radius: 28px; grid-template-columns: 1fr; padding: 0.9rem; }
  .owners__image { aspect-ratio: 16 / 10; border-radius: 20px; }
  .owners__copy { padding: 1rem 0.5rem 1.3rem; }
  .owners__copy h2 { font-size: 3.4rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
}

@media (max-width: 420px) {
  .announcement p span { display: none; }
  .hero h1 { font-size: 3.55rem; }
  .hero__handwritten { margin-left: 0.8rem; }
  .hero-art { height: 430px; }
  .search-panel { grid-template-columns: 1fr; }
  .search-panel__heading, .search-panel label:nth-of-type(3), .search-button { grid-column: 1; }
  .search-panel label { border: 1px solid #ead8df; }
  .trust-ribbon { padding-top: 17rem; }
  .moment-card, .moment-card--wide, .moment-card:last-child { flex-basis: 86vw; }
  .kids-feature__visual { height: 470px; }
  .spectacle { min-height: 700px; }
  .footer__links { grid-template-columns: 1fr; }
}

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

/* Refined marketplace and supporting-page system */

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header--overlay {
  backdrop-filter: none;
  background: linear-gradient(to bottom, rgba(29, 2, 13, 0.46), transparent);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header--overlay .brand__word,
.site-header--overlay .nav a,
.site-header--overlay .text-link {
  color: white;
  text-shadow: 0 2px 22px rgba(25, 0, 10, 0.35);
}

.site-header--overlay .menu-button span { background: white; }

.site-header--overlay .button--small {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 40px rgba(26, 0, 10, 0.18);
}

.site-header--overlay.site-header--scrolled {
  backdrop-filter: blur(20px) saturate(150%);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(130, 33, 66, 0.1);
  box-shadow: 0 12px 40px rgba(70, 7, 31, 0.08);
}

.site-header--overlay.site-header--scrolled .brand__word,
.site-header--overlay.site-header--scrolled .nav a,
.site-header--overlay.site-header--scrolled .text-link {
  color: var(--plum);
  text-shadow: none;
}

.site-header--overlay.site-header--scrolled .menu-button span { background: var(--plum); }

.site-header--overlay.site-header--scrolled .button--small {
  background: linear-gradient(110deg, var(--red-dark), var(--red) 55%, var(--pink));
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.search-panel__heading span,
.search-panel label > span {
  line-height: 1.3;
  min-height: 1.05rem;
  overflow: visible;
}

.listing-disclaimer {
  color: #927a84;
  font-size: 0.65rem;
  line-height: 1.65;
  margin: 1.15rem 0 0;
  max-width: 68rem;
}

.venue-card__topline b {
  max-width: 13ch;
}

.service-marketplace {
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 45, 114, 0.1), transparent 27rem),
    linear-gradient(180deg, #fff8fb, #f9e9f0);
  border-block: 1px solid var(--line);
}

.service-marketplace__heading {
  margin-bottom: clamp(2.8rem, 5vw, 4.8rem);
}

.service-marketplace__intro {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-marketplace__intro p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

.service-grid {
  display: grid;
  gap: clamp(0.8rem, 1.5vw, 1.35rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  box-shadow: 0 18px 50px rgba(75, 9, 35, 0.12);
  color: white;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.service-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.2, 0.72, 0.24, 1);
  width: 100%;
}

.service-card:hover > img { transform: scale(1.045); }

.service-card__wash {
  background: linear-gradient(to top, rgba(38, 2, 17, 0.9), rgba(38, 2, 17, 0.03) 68%);
  inset: 0;
  position: absolute;
}

.service-card__number {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: flex;
  font-family: var(--font-display);
  font-size: 0.72rem;
  height: 38px;
  justify-content: center;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 38px;
}

.service-card > div:last-of-type {
  bottom: 1.25rem;
  left: 1.25rem;
  position: absolute;
  right: 3.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 540;
  line-height: 1;
  margin: 0;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  line-height: 1.45;
  margin: 0.55rem 0 0;
}

.service-card > b {
  bottom: 1.35rem;
  font-size: 1.1rem;
  font-weight: 400;
  position: absolute;
  right: 1.25rem;
}

.coverage-note {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 45px rgba(75, 9, 35, 0.07);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr) auto;
  margin-top: 1.35rem;
  overflow: hidden;
}

.coverage-note > div {
  border-right: 1px solid var(--line);
  padding: 1.15rem 1.3rem;
}

.coverage-note span {
  color: var(--red-dark);
  display: block;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.coverage-note p {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
  margin: 0.32rem 0 0;
}

.coverage-note > a {
  align-items: center;
  align-self: stretch;
  background: var(--plum);
  color: white;
  display: flex;
  font-size: 0.68rem;
  font-weight: 720;
  gap: 0.7rem;
  padding: 1rem 1.3rem;
}

.celebration-hub {
  background:
    radial-gradient(circle at 13% 20%, rgba(255, 255, 255, 0.9), transparent 25rem),
    linear-gradient(130deg, #fff4f8 0%, #f9dfe9 48%, #f1e5ff 100%);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.celebration-hub__glow {
  background: radial-gradient(circle, rgba(213, 11, 77, 0.18), transparent 68%);
  border-radius: 50%;
  height: 760px;
  position: absolute;
  right: -260px;
  top: -260px;
  width: 760px;
  z-index: -1;
}

.celebration-hub__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
}

.celebration-hub__copy h2 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.2vw, 6.7rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 0;
}

.celebration-hub__copy h2 em {
  color: var(--red);
  font-weight: 480;
}

.celebration-hub__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
  margin: 1.8rem 0;
  max-width: 39rem;
}

.hub-feature-list {
  border-block: 1px solid rgba(128, 46, 77, 0.16);
  display: grid;
}

.hub-feature-list > div {
  align-items: center;
  border-bottom: 1px solid rgba(128, 46, 77, 0.12);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 34px 1fr;
  padding-block: 0.9rem;
}

.hub-feature-list > div:last-child { border-bottom: 0; }

.hub-feature-list span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.hub-feature-list p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  margin: 0;
}

.hub-feature-list strong { color: var(--plum); }

.celebration-hub__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.celebration-hub__actions small {
  color: var(--muted);
  font-size: 0.65rem;
}

.celebration-hub__actions small i {
  color: #188553;
  font-size: 0.65rem;
  font-style: normal;
  margin-right: 0.35rem;
}

.hub-preview {
  min-height: 650px;
  position: relative;
}

.hub-preview::before {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  content: "";
  height: 620px;
  position: absolute;
  right: -7%;
  top: 1%;
  width: 620px;
}

.hub-preview__site,
.hub-preview__progress,
.hub-preview__tasks,
.hub-preview__guest {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 80px rgba(83, 14, 43, 0.17);
  overflow: hidden;
  position: absolute;
}

.hub-preview__site {
  border-radius: 140px 28px 28px 28px;
  height: 430px;
  left: 2%;
  top: 4%;
  width: 63%;
}

.hub-preview__site > img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  width: 100%;
}

.hub-preview__site::after {
  background: linear-gradient(to top, rgba(39, 2, 17, 0.86), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.hub-preview__site-copy {
  bottom: 1.35rem;
  color: white;
  display: grid;
  gap: 0.2rem;
  left: 1.4rem;
  position: absolute;
  z-index: 2;
}

.hub-preview__site-copy span {
  color: #ffc2d7;
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.hub-preview__site-copy strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 520;
}

.hub-preview__site-copy small { font-size: 0.66rem; }

.hub-preview__progress {
  align-items: center;
  border-radius: 24px;
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  right: 0;
  top: 13%;
  width: 43%;
}

.progress-ring {
  align-items: center;
  background: conic-gradient(var(--red) 0 68%, #f0dce4 68% 100%);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 72px;
  justify-content: center;
  position: relative;
  width: 72px;
}

.progress-ring::after {
  background: white;
  border-radius: 50%;
  content: "";
  inset: 7px;
  position: absolute;
}

.progress-ring > span {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}

.progress-ring small { font-family: var(--font-body); font-size: 0.5rem; }

.hub-preview__progress > div:last-child,
.hub-preview__guest {
  display: grid;
  gap: 0.2rem;
}

.hub-preview__progress > div:last-child > span,
.hub-preview__tasks > span,
.hub-preview__guest > span {
  color: var(--red);
  font-size: 0.52rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hub-preview__progress strong,
.hub-preview__guest strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.hub-preview__progress small,
.hub-preview__guest small { color: var(--muted); font-size: 0.54rem; line-height: 1.4; }

.hub-preview__tasks {
  border-radius: 24px;
  bottom: 5%;
  display: grid;
  gap: 0.7rem;
  left: 16%;
  padding: 1.25rem;
  width: 50%;
}

.hub-preview__tasks > div {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.65rem;
  padding-top: 0.65rem;
}

.hub-preview__tasks i {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  flex: 0 0 auto;
  font-size: 0.6rem;
  font-style: normal;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.hub-preview__tasks p { display: grid; gap: 0.16rem; margin: 0; }
.hub-preview__tasks strong { color: var(--plum); font-size: 0.65rem; }
.hub-preview__tasks small { color: var(--muted); font-size: 0.5rem; }

.hub-preview__guest {
  border-radius: 20px;
  bottom: 13%;
  padding: 1rem 1.1rem;
  right: 1%;
  width: 36%;
}

.footer__top {
  grid-template-columns: minmax(240px, 0.62fr) minmax(620px, 1.38fr);
}

.footer__links { grid-template-columns: repeat(4, 1fr); }

/* Supporting pages */

.subpage-hero {
  color: white;
  isolation: isolate;
  min-height: clamp(720px, 74vh, 900px);
  overflow: hidden;
  position: relative;
}

.subpage-hero__image {
  filter: saturate(1.18) contrast(1.06) brightness(1.04);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.01);
  transition: filter 900ms ease, transform 1600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
  z-index: -3;
}

.subpage-hero:hover .subpage-hero__image {
  filter: saturate(1.23) contrast(1.07) brightness(1.055);
  transform: scale(1.028);
}

.subpage-hero--plan .subpage-hero__image { object-position: 57% center; }

.subpage-hero__wash {
  background:
    linear-gradient(90deg, rgba(26, 2, 13, 0.92) 0%, rgba(43, 3, 20, 0.64) 42%, rgba(38, 2, 16, 0.06) 76%),
    linear-gradient(to top, rgba(30, 2, 14, 0.56), transparent 55%);
  inset: 0;
  position: absolute;
  z-index: -2;
}

.subpage-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-bottom: clamp(5rem, 9vw, 8rem);
  padding-top: clamp(9rem, 14vw, 13rem);
}

.subpage-hero__crumb {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  width: max-content;
}

.subpage-hero__crumb span { color: #ff88b1; margin-inline: 0.4rem; }

.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 8vw, 8.9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.84;
  margin: 0;
  max-width: 9ch;
  text-shadow: 0 18px 60px rgba(19, 0, 8, 0.35);
}

.subpage-hero h1 em {
  background: linear-gradient(100deg, #ffd8e6, #ff88b1 56%, #ff367e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-weight: 470;
}

.subpage-hero__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  margin: 2rem 0 0;
  max-width: 39rem;
}

.subpage-hero .button--glass { box-shadow: none; }

.subpage-hero__signals {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.5rem;
  max-width: 48rem;
  padding-top: 1.2rem;
}

.subpage-hero__signals span {
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  font-size: 0.65rem;
  gap: 0.45rem;
}

.subpage-hero__signals i {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffb3cd;
  display: flex;
  font-size: 0.48rem;
  font-style: normal;
  height: 21px;
  justify-content: center;
  width: 21px;
}

.subpage-intro { background: white; }

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

.subpage-principles article {
  background: var(--canvas);
  border-block: 1px solid var(--line);
  min-height: 325px;
  padding: clamp(1.7rem, 3vw, 2.8rem);
}

.subpage-principles article:first-child { border-left: 1px solid var(--line); border-radius: 90px 0 0 24px; }
.subpage-principles article:last-child { border-radius: 0 24px 90px 0; border-right: 1px solid var(--line); }
.subpage-principles article > span { color: #e8b6c8; font-family: var(--font-display); font-size: 3.4rem; font-style: italic; line-height: 1; }
.subpage-principles article > i { color: var(--red); display: block; font-size: 0.6rem; font-style: normal; font-weight: 780; letter-spacing: 0.12em; margin-top: 2rem; text-transform: uppercase; }
.subpage-principles h3 { color: var(--plum); font-family: var(--font-display); font-size: 1.75rem; line-height: 1.08; margin: 0.7rem 0 0.8rem; }
.subpage-principles p { color: var(--muted); font-size: 0.78rem; line-height: 1.7; margin: 0; }

.subpage-feature {
  background: linear-gradient(180deg, #fff6f9, #f9e8ef);
  border-top: 1px solid var(--line);
}

.subpage-feature__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
}

.subpage-feature__media {
  aspect-ratio: 16 / 11;
  border: 8px solid white;
  border-radius: 190px 30px 30px 30px;
  box-shadow: 0 32px 90px rgba(75, 9, 35, 0.18);
  overflow: hidden;
  position: relative;
}

.subpage-feature__media::after { background: linear-gradient(to top, rgba(37, 2, 15, 0.7), transparent 48%); content: ""; inset: 0; position: absolute; }
.subpage-feature__media img { height: 100%; object-fit: cover; width: 100%; }
.subpage-feature__media span { bottom: 1.7rem; color: white; font-family: var(--font-display); font-size: clamp(1.3rem, 2.3vw, 2.2rem); left: 1.7rem; max-width: 15ch; position: absolute; z-index: 2; }

.subpage-finder h2,
.hub-upload-card h2 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
}

.subpage-finder__fields {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
  margin-block: 1.7rem;
}

.subpage-finder__fields > span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--plum);
  display: grid;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.3rem;
  padding: 1rem;
}

.subpage-finder__fields small { color: var(--red); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }
.subpage-finder > p:last-child { color: var(--muted); font-size: 0.65rem; line-height: 1.55; margin: 1.1rem 0 0; }

.facility-lens {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(128, 46, 77, 0.15);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(75, 9, 35, 0.1);
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.facility-lens__heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-bottom: 2rem;
}

.facility-lens__heading h2 {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
  max-width: 15ch;
}

.facility-lens__heading > p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
  margin: 0;
}

.facility-lens__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.facility-lens fieldset {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  min-width: 0;
  padding: 1.15rem;
}

.facility-lens legend {
  color: var(--red);
  float: left;
  font-size: 0.58rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  width: 100%;
}

.facility-lens label {
  align-items: center;
  background: white;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  font-size: 0.66rem;
  gap: 0.55rem;
  line-height: 1.35;
  padding: 0.62rem 0.7rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.facility-lens label:hover {
  border-color: #e5a4bb;
  box-shadow: 0 8px 24px rgba(89, 15, 44, 0.08);
  transform: translateY(-1px);
}

.facility-lens input {
  accent-color: var(--red);
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
}

.facility-lens__legend {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
}

.facility-lens__legend span {
  align-items: center;
  color: var(--plum);
  display: flex;
  font-size: 0.6rem;
  font-weight: 700;
  gap: 0.35rem;
}

.facility-lens__legend i { color: var(--red); font-style: normal; }
.facility-lens__legend small { color: var(--muted); font-size: 0.58rem; margin-left: auto; }

.subpage-section-heading > p { color: var(--muted); font-size: 0.82rem; line-height: 1.7; margin: 0; max-width: 28rem; }

.subpage-tile-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subpage-tile {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  color: white;
  overflow: hidden;
  position: relative;
}

.subpage-tile > img { height: 100%; object-fit: cover; transition: transform var(--ease); width: 100%; }
.subpage-tile:hover > img { transform: scale(1.04); }
.subpage-tile > div { background: linear-gradient(to top, rgba(36, 2, 15, 0.88), transparent 68%); inset: 0; position: absolute; }
.subpage-tile > span { bottom: 1.1rem; display: grid; gap: 0.3rem; left: 1.1rem; position: absolute; right: 3rem; }
.subpage-tile strong { font-family: var(--font-display); font-size: 1.65rem; }
.subpage-tile small { color: rgba(255, 255, 255, 0.72); font-size: 0.58rem; }
.subpage-tile > b { font-weight: 400; position: absolute; right: 1.1rem; top: 1rem; }

.hub-start-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(1.3rem, 3vw, 2.2rem);
  grid-template-columns: 1.05fr 0.95fr;
}

.hub-upload-card,
.hub-role-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 22px 70px rgba(75, 9, 35, 0.1);
  padding: clamp(1.7rem, 4vw, 3.5rem);
  position: relative;
}

.hub-upload-card__icon {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  font-size: 1.4rem;
  height: 46px;
  justify-content: center;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  width: 46px;
}

.hub-upload-card__media {
  aspect-ratio: 16 / 8.6;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(75, 9, 35, 0.14);
  margin: 1.6rem 0 1.3rem;
  overflow: hidden;
  position: relative;
}

.hub-upload-card__media::after {
  background: linear-gradient(to top, rgba(38, 2, 16, 0.82), transparent 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.hub-upload-card__media img {
  filter: saturate(1.12) contrast(1.04);
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transition: transform var(--ease);
  width: 100%;
}

.hub-upload-card:hover .hub-upload-card__media img { transform: scale(1.025); }

.hub-upload-card__media figcaption {
  bottom: 1.05rem;
  color: white;
  display: grid;
  gap: 0.2rem;
  left: 1.15rem;
  position: absolute;
  right: 1.15rem;
  z-index: 2;
}

.hub-upload-card__media figcaption span {
  color: #ffc0d6;
  font-size: 0.52rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-upload-card__media figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 520;
  line-height: 1.05;
}

.hub-upload-card > p:not(.eyebrow) { color: var(--muted); font-size: 0.8rem; line-height: 1.7; margin: 1.3rem 0; max-width: 40rem; }
.hub-upload-zone { background: var(--canvas); border: 1px dashed #d88ba7; border-radius: 20px; display: grid; gap: 0.35rem; margin: 1.5rem 0; padding: 2rem; text-align: center; }
.hub-upload-zone strong { color: var(--plum); font-size: 0.78rem; }
.hub-upload-zone small { color: var(--muted); font-size: 0.6rem; }

.hub-role-card { background: var(--plum); color: white; }
.hub-role-card > span { color: #ff97bc; font-size: 0.58rem; font-weight: 780; letter-spacing: 0.14em; }
.hub-role-card h3 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 520; letter-spacing: -0.045em; line-height: 0.95; margin: 0.8rem 0 1.8rem; }
.hub-role-card > div { align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.14); display: grid; gap: 0.8rem; grid-template-columns: 32px 1fr; padding-block: 0.9rem; }
.hub-role-card i { align-items: center; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: #ff9cbe; display: flex; font-size: 0.55rem; font-style: normal; height: 30px; justify-content: center; width: 30px; }
.hub-role-card p { display: grid; gap: 0.25rem; margin: 0; }
.hub-role-card strong { font-size: 0.75rem; }
.hub-role-card small { color: rgba(255, 255, 255, 0.62); font-size: 0.58rem; }
.hub-role-card > p:last-child { background: rgba(255, 255, 255, 0.08); border-radius: 14px; color: rgba(255, 255, 255, 0.7); font-size: 0.62rem; line-height: 1.6; margin-top: 1.2rem; padding: 0.9rem; }

.inspiration-gallery {
  display: grid;
  gap: 1rem;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inspiration-gallery__card { border-radius: 24px; color: white; grid-column: span 1; overflow: hidden; position: relative; }
.inspiration-gallery__card--wide { border-radius: 120px 24px 24px 24px; grid-column: span 2; grid-row: span 2; }
.inspiration-gallery__card > img { height: 100%; object-fit: cover; transition: transform var(--ease); width: 100%; }
.inspiration-gallery__card:hover > img { transform: scale(1.04); }
.inspiration-gallery__card > div { background: linear-gradient(to top, rgba(36, 2, 15, 0.86), transparent 65%); inset: 0; position: absolute; }
.inspiration-gallery__card > span { bottom: 1.15rem; font-family: var(--font-display); font-size: 1.55rem; left: 1.15rem; position: absolute; }
.inspiration-gallery__card > b { font-weight: 400; position: absolute; right: 1rem; top: 1rem; }

.partner-process__steps { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.partner-process__steps article { background: white; border: 1px solid var(--line); border-radius: 24px; min-height: 250px; padding: 1.6rem; }
.partner-process__steps span { color: #e4a8bd; font-family: var(--font-display); font-size: 2.6rem; font-style: italic; }
.partner-process__steps h3 { color: var(--plum); font-family: var(--font-display); font-size: 1.5rem; line-height: 1.05; margin: 1.5rem 0 0.7rem; }
.partner-process__steps p { color: var(--muted); font-size: 0.7rem; line-height: 1.65; margin: 0; }
.partner-standards { align-items: center; background: var(--plum); border-radius: 24px; color: white; display: grid; gap: 1rem; grid-template-columns: 0.55fr 1.45fr auto; margin-top: 1rem; padding: 1.4rem 1.6rem; }
.partner-standards strong { color: #ffa9c7; font-family: var(--font-display); font-size: 1.3rem; }
.partner-standards p { color: rgba(255, 255, 255, 0.67); font-size: 0.65rem; line-height: 1.6; margin: 0; }
.partner-standards a { border-bottom: 1px solid rgba(255, 255, 255, 0.5); font-size: 0.66rem; font-weight: 700; padding-bottom: 0.2rem; }

.subpage-cta {
  background: linear-gradient(120deg, #7e062f, #d10b45 55%, #f02d72);
  color: white;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.subpage-cta__inner { align-items: center; display: flex; gap: 3rem; justify-content: space-between; }
.subpage-cta h2 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 520; letter-spacing: -0.055em; line-height: 0.95; margin: 0; }
.subpage-cta p:not(.eyebrow) { color: rgba(255, 255, 255, 0.72); font-size: 0.78rem; line-height: 1.7; margin: 1rem 0 0; max-width: 37rem; }
.subpage-cta .button { flex: 0 0 auto; }

@media (max-width: 1180px) {
  .celebration-hub__grid { gap: 4rem; grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr); }
  .hub-preview { transform: scale(0.93); transform-origin: center right; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(4, 1fr); }
  .partner-process__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .site-header--overlay .nav { background: white; }
  .site-header--overlay .nav a { color: var(--plum); text-shadow: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-note { grid-template-columns: repeat(3, 1fr); }
  .coverage-note > a { grid-column: 1 / 4; justify-content: center; }
  .celebration-hub__grid { grid-template-columns: 1fr; }
  .celebration-hub__copy { max-width: 46rem; }
  .hub-preview { margin-inline: auto; max-width: 680px; transform: none; width: 100%; }
  .subpage-principles { gap: 1rem; grid-template-columns: 1fr; }
  .subpage-principles article,
  .subpage-principles article:first-child,
  .subpage-principles article:last-child { border: 1px solid var(--line); border-radius: 24px; min-height: auto; }
  .subpage-feature__grid { grid-template-columns: 1fr; }
  .subpage-feature__media { max-width: 760px; }
  .facility-lens__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subpage-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-start-grid { grid-template-columns: 1fr; }
  .inspiration-gallery { grid-template-columns: repeat(2, 1fr); }
  .partner-standards { align-items: start; grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .service-grid { display: flex; margin-inline: -1.25rem; overflow-x: auto; padding: 0 1.25rem 1rem; scroll-snap-type: x mandatory; }
  .service-card { flex: 0 0 82vw; scroll-snap-align: center; }
  .coverage-note { grid-template-columns: 1fr; }
  .coverage-note > div { border-bottom: 1px solid var(--line); border-right: 0; }
  .coverage-note > a { grid-column: 1; }
  .celebration-hub__copy h2 { font-size: clamp(3.8rem, 16vw, 5.4rem); }
  .celebration-hub__actions { align-items: flex-start; flex-direction: column; }
  .hub-preview { min-height: 590px; }
  .hub-preview::before { height: 490px; right: -25%; width: 490px; }
  .hub-preview__site { height: 390px; left: 0; width: 76%; }
  .hub-preview__progress { right: -2%; top: 10%; width: 48%; }
  .hub-preview__tasks { bottom: 5%; left: 4%; width: 63%; }
  .hub-preview__guest { bottom: 12%; right: 0; width: 42%; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .subpage-hero { min-height: 720px; }
  .subpage-hero__content { padding-top: 9rem; }
  .subpage-hero h1 { font-size: clamp(4rem, 17vw, 6rem); }
  .subpage-hero__image { filter: saturate(1.15) contrast(1.05) brightness(1.02); }
  .subpage-hero__wash { background: linear-gradient(90deg, rgba(26, 2, 13, 0.88), rgba(42, 3, 19, 0.48)), linear-gradient(to top, rgba(30, 2, 14, 0.66), transparent 58%); }
  .subpage-hero__signals { align-items: flex-start; flex-direction: column; gap: 0.7rem; }
  .subpage-feature__media { border-width: 6px; border-radius: 110px 24px 24px 24px; }
  .facility-lens { border-radius: 24px; }
  .facility-lens__heading { align-items: start; grid-template-columns: 1fr; }
  .facility-lens__grid { grid-template-columns: 1fr; }
  .facility-lens__legend { align-items: flex-start; flex-direction: column; }
  .facility-lens__legend small { margin-left: 0; }
  .subpage-tile-grid { display: flex; margin-inline: -1.25rem; overflow-x: auto; padding: 0 1.25rem 1rem; scroll-snap-type: x mandatory; }
  .subpage-tile { flex: 0 0 82vw; scroll-snap-align: center; }
  .inspiration-gallery { display: flex; margin-inline: -1.25rem; overflow-x: auto; padding: 0 1.25rem 1rem; scroll-snap-type: x mandatory; }
  .inspiration-gallery__card,
  .inspiration-gallery__card--wide { flex: 0 0 82vw; height: 470px; scroll-snap-align: center; }
  .partner-process__steps { grid-template-columns: 1fr; }
  .subpage-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .hub-preview { min-height: 690px; }
  .hub-preview__site { border-radius: 100px 22px 22px 22px; height: 370px; width: 88%; }
  .hub-preview__progress { top: 47%; width: 74%; }
  .hub-preview__tasks { bottom: 2%; left: 0; width: 72%; }
  .hub-preview__guest { bottom: 9%; width: 48%; }
  .progress-ring { height: 62px; width: 62px; }
  .subpage-finder__fields { grid-template-columns: 1fr; }
}
