:root {
  --paper: #fff9fb;
  --paper-solid: #fffdfd;
  --ink: #45353c;
  --muted: #796a70;
  --rose: #a04f66;
  --rose-dark: #7c394d;
  --blush: #f7e5eb;
  --blue: #e9f0f5;
  --sage: #eaf1eb;
  --peach: #f8ece6;
  --line: rgba(69, 53, 60, 0.12);
  --card-radius: 30px;
  --shadow: 0 24px 70px rgba(116, 72, 87, 0.13);
  --max: 1240px;
  --display: Georgia, "Times New Roman", serif;
  --body: Aptos, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 18%, rgba(230, 190, 202, 0.28), transparent 24%),
    radial-gradient(circle at 94% 42%, rgba(197, 219, 204, 0.22), transparent 23%),
    radial-gradient(circle at 20% 88%, rgba(202, 219, 233, 0.2), transparent 20%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 66px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 253, 253, 0.84);
  box-shadow: 0 10px 36px rgba(99, 65, 76, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.collection-crumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.collection-crumb span {
  color: var(--rose);
}

.collection-crumb b {
  color: rgba(69, 53, 60, 0.28);
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 750;
}

.site-nav > a:not(.nav-cta) {
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--rose);
}

.nav-cta,
.button {
  border-radius: 999px;
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: white;
}

.nav-cta-short {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  width: min(calc(100% - 48px), var(--max));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 106px 0 36px;
}

.hero-copy {
  padding-left: clamp(0px, 2vw, 24px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 650px;
  font-size: clamp(58px, 6.2vw, 88px);
  line-height: 0.98;
}

h1 em {
  display: inline-block;
  padding-bottom: 0.08em;
  color: var(--rose);
  font-family: inherit;
  font-style: italic;
  line-height: 1.1;
}

.hero-lead,
.section-lead {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  background: var(--rose);
  box-shadow: 0 13px 30px rgba(124, 57, 77, 0.2);
  color: white;
}

.button-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 17px 34px rgba(124, 57, 77, 0.25);
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.99);
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(160, 79, 102, 0.32);
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.hero-tile-card,
.hero-video-card {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.hero-tile-card {
  top: 7%;
  left: 0;
  width: 73%;
  padding: 22px;
  background: var(--blush);
  transform: rotate(-3deg);
}

.hero-tile-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: contain;
}

.hero-tile-card > div {
  padding: 10px 8px 4px;
}

.hero-tile-card span,
.video-card-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-tile-card strong,
.video-card-heading strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.hero-video-card {
  right: 0;
  bottom: 2%;
  z-index: 3;
  width: min(42%, 260px);
  padding: 10px;
  background: var(--paper-solid);
  transform: rotate(2.5deg);
}

.video-card-heading {
  padding: 9px 9px 12px;
}

.hero-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 21px;
  background: #2d2529;
  object-fit: cover;
}

.section-pad {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 116px 0;
}

.moment-cards {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr;
  gap: 18px;
  padding-top: 46px;
}

.moment-card {
  min-height: 300px;
  padding: 34px;
  border-radius: var(--card-radius);
}

.moment-card:nth-child(2) {
  transform: translateY(34px);
}

.moment-blush { background: var(--blush); }
.moment-blue { background: var(--blue); }
.moment-sage { background: var(--sage); }

.moment-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(69, 53, 60, 0.14);
  border-radius: 50%;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
}

.moment-card h2 {
  margin-top: 78px;
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.05;
}

.moment-card p {
  max-width: 36ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.experience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.experience-photo {
  min-height: 650px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.experience-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.experience h2,
.collection h2,
.occasions h2,
.value h2,
.access h2 {
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.03;
}

.section-lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 17px;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
}

.steps strong {
  display: block;
  font-size: 15px;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.collection {
  padding-top: 90px;
}

.collection-heading {
  max-width: 880px;
}

.collection-heading > p:last-child {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.format-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 24px;
}

.format-tab {
  min-width: 108px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.format-tab.is-active {
  border-color: var(--rose);
  background: var(--rose);
  color: white;
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
  min-height: 750px;
}

.gallery.is-hidden {
  display: none;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: var(--card-radius);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-blush { background: var(--blush); }
.gallery-blue { background: var(--blue); }
.gallery-sage { background: var(--sage); }

.gallery-feature {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 380ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 253, 0.9);
  box-shadow: 0 8px 24px rgba(92, 63, 73, 0.09);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.occasions-heading {
  max-width: 830px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 52px;
}

.occasion-grid article {
  min-height: 280px;
  padding: 32px;
  border-radius: var(--card-radius);
  background: var(--paper-solid);
  box-shadow: 0 12px 44px rgba(95, 66, 76, 0.07);
}

.occasion-grid article:nth-child(2) {
  background: var(--peach);
  transform: translateY(28px);
}

.occasion-grid span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.occasion-grid h3 {
  margin: 86px 0 13px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.occasion-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.value {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.value-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.value-copy li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.value-product {
  min-height: 520px;
  padding: 28px;
  border-radius: var(--card-radius);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.value-product img {
  width: 100%;
  height: 100%;
  min-height: 464px;
  object-fit: contain;
}

.access {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 72px;
  padding: 82px;
  border-radius: var(--card-radius);
  background: var(--blush);
  overflow: hidden;
}

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

.access-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 23px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.access-brand {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 40px;
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 52px rgba(95, 66, 76, 0.08);
  text-align: center;
}

.access-brand img {
  width: min(100%, 330px);
  height: auto;
}

.access-brand span {
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.image-dialog {
  width: min(92vw, 920px);
  max-height: 90vh;
  padding: 18px;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--paper-solid);
  box-shadow: 0 40px 100px rgba(46, 34, 39, 0.3);
}

.image-dialog::backdrop {
  background: rgba(55, 41, 47, 0.66);
  backdrop-filter: blur(6px);
}

.image-dialog img {
  width: 100%;
  max-height: calc(90vh - 36px);
  border-radius: 20px;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 24px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  animation: hero-arrival 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-stage.reveal {
  animation-delay: 100ms;
}

@keyframes hero-arrival {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1000px) {
  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 130px;
  }

  .hero-copy {
    max-width: 760px;
    padding-left: 0;
  }

  .hero-stage {
    width: min(100%, 720px);
    min-height: 700px;
    margin: 0 auto;
  }

  .experience,
  .value {
    grid-template-columns: 1fr;
  }

  .moment-cards,
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moment-card:nth-child(2),
  .occasion-grid article:nth-child(2) {
    transform: none;
  }

  .moment-card:last-child,
  .occasion-grid article:last-child {
    grid-column: 1 / 3;
  }

  .access {
    grid-template-columns: 1fr;
    padding: 64px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 8px;
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 8px 9px 8px 14px;
  }

  .collection-crumb b,
  .collection-crumb span {
    display: none;
  }

  .collection-crumb {
    overflow: hidden;
    max-width: 220px;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 11px;
  }

  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .hero,
  .section-pad,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding: 108px 0 58px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-stage {
    min-height: 540px;
  }

  .hero-tile-card {
    top: 0;
    width: 82%;
    padding: 14px;
  }

  .hero-video-card {
    right: 0;
    bottom: 0;
    width: 48%;
  }

  .hero-tile-card strong,
  .video-card-heading strong {
    font-size: 11px;
  }

  .section-pad {
    padding: 78px 0;
  }

  .moment-cards,
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .moment-card:last-child,
  .occasion-grid article:last-child {
    grid-column: auto;
  }

  .moment-card {
    min-height: 250px;
    padding: 28px;
  }

  .moment-card h2 {
    margin-top: 48px;
  }

  .experience {
    gap: 42px;
  }

  .experience-photo,
  .experience-photo img {
    min-height: 430px;
  }

  .experience h2,
  .collection h2,
  .occasions h2,
  .value h2,
  .access h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 330px);
    min-height: 0;
  }

  .gallery-feature {
    grid-row: auto;
  }

  .occasion-grid article,
  .occasion-grid article:nth-child(2) {
    min-height: 240px;
  }

  .occasion-grid h3 {
    margin-top: 62px;
  }

  .value-copy ul {
    grid-template-columns: 1fr;
  }

  .value-product,
  .value-product img {
    min-height: 380px;
  }

  .access {
    width: calc(100% - 32px);
    margin-bottom: 46px;
    padding: 54px 24px;
  }

  .access-brand {
    min-height: 250px;
    padding: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
