/* Design tokens — Amore / logo palette */
:root {
  --color-navy: #2e3d6b;
  --color-navy-deep: #1f2a4a;
  --color-white: #ffffff;
  --color-white-muted: rgba(255, 255, 255, 0.78);
  --color-white-soft: rgba(255, 255, 255, 0.1);
  --color-panel: rgba(255, 255, 255, 0.08);
  --color-silver-start: #c8d0e0;
  --color-silver-end: #8a96b0;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius: 0.75rem;
  --max-content: 72rem;
  --narrow: min(42rem, calc(100% - 2 * var(--page-pad-x)));
  --page-pad-x: clamp(0.75rem, 4vw, 1.5rem);
  --section-pad-y: clamp(2.5rem, 7vw, 6rem);
  --header-h: clamp(4.25rem, 11vw + 2.25rem, 5.75rem);
  --font-headline-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --color-champagne: #e8dcc8;
  --color-champagne-soft: rgba(232, 220, 200, 0.78);
  --color-champagne-border: rgba(212, 196, 175, 0.55);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9rem + 0.35vw, 1.0625rem);
  line-height: 1.65;
  color: var(--color-white);
  background: var(--color-navy);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
}

/* Site-wide: animated logo follows pointer instead of default arrow (fine pointer + JS only) */
.cursor-mark {
  position: fixed;
  left: 0;
  top: 0;
  width: clamp(2.5rem, 4.5vw, 3.25rem);
  height: clamp(2.5rem, 4.5vw, 3.25rem);
  margin-left: calc(clamp(2.5rem, 4.5vw, 3.25rem) / -2);
  margin-top: calc(clamp(2.5rem, 4.5vw, 3.25rem) / -2);
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0);
  transition: opacity 0.14s ease;
  will-change: transform;
}

html.is-cursor-mark .cursor-mark {
  opacity: 1;
}

html.is-cursor-mark,
html.is-cursor-mark * {
  cursor: none !important;
}

html.is-cursor-mark input[type="text"],
html.is-cursor-mark input[type="search"],
html.is-cursor-mark input[type="email"],
html.is-cursor-mark input[type="url"],
html.is-cursor-mark input[type="tel"],
html.is-cursor-mark input[type="password"],
html.is-cursor-mark input[type="number"],
html.is-cursor-mark input[type="date"],
html.is-cursor-mark input[type="time"],
html.is-cursor-mark input[type="datetime-local"],
html.is-cursor-mark textarea,
html.is-cursor-mark [contenteditable="true"] {
  cursor: text !important;
}

.cursor-mark__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: cursor-mark-spin 14s linear infinite;
  filter: drop-shadow(0 0.2rem 0.65rem rgba(0, 0, 0, 0.35));
}

@keyframes cursor-mark-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (pointer: coarse) {
  .cursor-mark {
    display: none;
  }

  html.is-cursor-mark,
  html.is-cursor-mark * {
    cursor: revert !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, rgba(46, 61, 107, 0.95) 0%, rgba(46, 61, 107, 0.75) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: max(var(--space-sm), env(safe-area-inset-top)) max(var(--space-md), env(safe-area-inset-right)) max(var(--space-sm), env(safe-area-inset-bottom)) max(var(--space-md), env(safe-area-inset-left));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: var(--header-h);
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.site-header__logo {
  height: clamp(2.65rem, 8vw + 1.25rem, 4.5rem);
  width: auto;
  max-width: min(55vw, 14rem);
  object-fit: contain;
  display: block;
}

/* Mobile menu button (hidden on large screens) */
.site-nav__toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  cursor: pointer;
}

.site-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.site-nav__toggle:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.site-nav__toggle-bars {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}

.site-nav__toggle-bars::before,
.site-nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.site-nav__toggle-bars::before {
  top: -6px;
}

.site-nav__toggle-bars::after {
  top: 6px;
}

.site-header.is-nav-open .site-nav__toggle-bars {
  background: transparent;
}

.site-header.is-nav-open .site-nav__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .site-nav__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 0.35rem;
  column-gap: clamp(0.5rem, 2vw, 1.5rem);
  font-size: clamp(0.6875rem, 0.65rem + 0.25vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 100%;
}

@media (max-width: 47.9375rem) {
  .site-nav__toggle {
    display: none !important;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-nav a:not(.site-nav__cta) {
    display: none !important;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    position: static;
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: none;
    gap: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .site-nav__cta {
    justify-content: center;
    margin-top: 0;
  }
}

@media (min-width: 48rem) {
  .site-nav__toggle {
    display: none !important;
  }

  .site-nav a {
    transition: color 0.2s ease;
  }
}

body.is-nav-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(15, 18, 35, 0.4);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

body.is-nav-drawer-open .site-nav-backdrop:not([hidden]) {
  display: block;
}

.site-nav a {
  color: var(--color-white-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-white);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.site-nav__cta {
  color: var(--color-white) !important;
  padding: 0.5rem clamp(0.65rem, 2vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.site-nav__cta:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a:not(.site-nav__cta) {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 22rem) {
  .site-header__brand {
    justify-content: flex-start;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + clamp(1rem, 4vw, 2.5rem)) var(--page-pad-x) max(var(--space-xl), env(safe-area-inset-bottom));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, var(--color-navy-deep) 0%, var(--color-navy) 55%);
  pointer-events: none;
}

/* Soft silver “display” rings — replaces blob orbs */
.hero__silver-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    transparent 32%,
    rgba(200, 208, 224, 0.14) 33%,
    transparent 46%,
    rgba(255, 255, 255, 0.06) 47%,
    transparent 58%
  );
  filter: blur(3px);
  opacity: 0.55;
  animation: silver-ring-float 22s ease-in-out infinite;
}

.hero__silver-ring--1 {
  width: min(48vw, 24rem);
  height: min(48vw, 24rem);
  top: 10%;
  left: -8%;
}

.hero__silver-ring--2 {
  width: min(52vw, 28rem);
  height: min(52vw, 28rem);
  bottom: 2%;
  right: -12%;
  animation-delay: -11s;
  opacity: 0.45;
}

/* Floating cut stones, rings, chain, bangles (replaces dot sparkles) */
.hero__float-jewels {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.jewel-float {
  position: absolute;
  opacity: 0;
  transform-origin: 50% 50%;
}

.jewel-float--diamond {
  width: 0.58rem;
  height: 0.58rem;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.92) 0%, rgba(175, 188, 218, 0.45) 48%, rgba(255, 255, 255, 0.55) 100%);
  filter: drop-shadow(0 0 0.45rem rgba(200, 208, 224, 0.45));
  animation: jewel-diamond-life 6.8s ease-in-out infinite;
}

.jewel-float--diamond.jewel-float--sm {
  width: 0.38rem;
  height: 0.38rem;
  animation-duration: 5.4s;
}

.jewel-float--ring {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  border: 2px solid rgba(220, 228, 240, 0.55);
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
  box-shadow: 0 0 0.5rem rgba(200, 208, 224, 0.35);
  animation: jewel-ring-life 7.5s ease-in-out infinite;
}

.jewel-float--ring.jewel-float--sm {
  width: 0.55rem;
  height: 0.55rem;
  border-width: 1.5px;
  animation-duration: 6.2s;
}

.jewel-float--bangle {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(200, 208, 224, 0.35);
  animation: jewel-bangle-life 14s linear infinite;
}

.jewel-float--hoop {
  width: 0.48rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 2px solid rgba(230, 235, 245, 0.5);
  background: transparent;
  animation: jewel-hoop-sway 5.2s ease-in-out infinite;
}

.jewel-float--stud {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95) 0%, rgba(165, 178, 205, 0.65) 55%, rgba(120, 135, 165, 0.5) 100%);
  box-shadow: 0 0 0.4rem rgba(200, 208, 224, 0.4);
  animation: jewel-stud-twinkle 4.8s ease-in-out infinite;
}

.jewel-float--marquise {
  width: 0.68rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.78), rgba(145, 160, 195, 0.42));
  clip-path: ellipse(50% 48% at 50% 50%);
  transform: rotate(-26deg);
  animation: jewel-marquise-float 8s ease-in-out infinite;
}

.jewel-float--bracelet {
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0;
  animation: jewel-chain-drift 9s ease-in-out infinite;
}

.jewel-float__link {
  width: 5px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(170, 182, 210, 0.35));
  box-shadow: 0 0 4px rgba(200, 208, 224, 0.25);
}

.jewel-float__link:nth-child(odd) {
  transform: rotate(-18deg);
}

.jewel-float__link:nth-child(even) {
  transform: rotate(16deg);
}

.jewel-float--necklace-arc {
  width: 4.5rem;
  height: 1.35rem;
  border: none;
  border-bottom: 2px solid rgba(220, 228, 240, 0.35);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: radial-gradient(circle at 20% 110%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 108%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 108%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 110%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px);
  animation: jewel-necklace-sway 7s ease-in-out infinite;
}

.jewel-float--cuff {
  width: 1.4rem;
  height: 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 228, 240, 0.45);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: jewel-cuff-gleam 6s ease-in-out infinite;
}

.jewel-float--tennis {
  width: 2.4rem;
  height: 0.32rem;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0 3px,
    rgba(160, 175, 205, 0.35) 3px 4px,
    transparent 4px 9px
  );
  background-size: 24px 100%;
  filter: drop-shadow(0 0 4px rgba(200, 208, 224, 0.35));
  animation: jewel-tennis-shimmer 5.5s ease-in-out infinite;
}

.hero__float-jewels > .jewel-float:nth-child(1) {
  left: 8%;
  top: 22%;
  animation-delay: 0s;
}

.hero__float-jewels > .jewel-float:nth-child(2) {
  left: 18%;
  top: 68%;
  animation-delay: -0.6s;
}

.hero__float-jewels > .jewel-float:nth-child(3) {
  left: 28%;
  top: 14%;
  animation-delay: -1.2s;
}

.hero__float-jewels > .jewel-float:nth-child(4) {
  left: 42%;
  top: 78%;
  animation-delay: -1.8s;
}

.hero__float-jewels > .jewel-float:nth-child(5) {
  left: 55%;
  top: 12%;
  animation-delay: -2.4s;
}

.hero__float-jewels > .jewel-float:nth-child(6) {
  left: 62%;
  top: 55%;
  animation-delay: -3s;
}

.hero__float-jewels > .jewel-float:nth-child(7) {
  left: 72%;
  top: 28%;
  animation-delay: -1s;
}

.hero__float-jewels > .jewel-float:nth-child(8) {
  left: 85%;
  top: 42%;
  animation-delay: -3.6s;
}

.hero__float-jewels > .jewel-float:nth-child(9) {
  left: 92%;
  top: 18%;
  animation-delay: -0.35s;
}

.hero__float-jewels > .jewel-float:nth-child(10) {
  left: 12%;
  top: 48%;
  animation-delay: -2.8s;
}

.hero__float-jewels > .jewel-float:nth-child(11) {
  left: 38%;
  top: 36%;
  animation-delay: -4.2s;
}

.hero__float-jewels > .jewel-float:nth-child(12) {
  left: 78%;
  top: 72%;
  animation-delay: -2.2s;
}

.hero__float-jewels > .jewel-float:nth-child(13) {
  left: 50%;
  top: 88%;
  animation-delay: -1.6s;
}

.hero__float-jewels > .jewel-float:nth-child(14) {
  left: 6%;
  top: 82%;
  animation-delay: -4s;
}

/* Halo: stacked bangles + necklace arc + diamonds (replaces radial starburst) */
.hero__jewel-halo {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(90vw, 36rem);
  height: min(90vw, 36rem);
  color: rgba(255, 255, 255, 0.24);
  pointer-events: none;
  z-index: 0;
}

.hero__jewel-halo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.jewel-halo-rotate {
  animation: jewel-halo-spin 100s linear infinite;
}

.halo-necklace-path {
  stroke-dasharray: 8 6;
  animation: halo-necklace-glint 5s linear infinite;
}

/* Hero — floating jewels (pendant, teardrop, briolette, halo ring) */
.hero__ornaments {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-ornament {
  position: absolute;
  pointer-events: none;
}

.hero-ornament--pendant {
  left: 9%;
  top: 30%;
  width: 0.5rem;
  height: 0.62rem;
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(150, 165, 195, 0.4));
  box-shadow:
    0 0.12rem 0.35rem rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform-origin: 50% -0.45rem;
  animation: ornament-pendant 6.2s ease-in-out infinite;
}

.hero-ornament--pendant::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 0.48rem;
  margin-bottom: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(200, 208, 224, 0.2));
}

.hero-ornament--teardrop {
  right: 11%;
  top: 36%;
  width: 0.52rem;
  height: 0.72rem;
  clip-path: polygon(50% 0%, 100% 32%, 82% 100%, 18% 100%, 0% 32%);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.65), rgba(130, 148, 180, 0.45));
  filter: drop-shadow(0 0.18rem 0.4rem rgba(0, 0, 0, 0.22));
  animation: ornament-teardrop 8.5s ease-in-out infinite;
  animation-delay: -1.2s;
}

.hero-ornament--briolette {
  left: 20%;
  bottom: 16%;
  width: 0.48rem;
  height: 0.58rem;
  clip-path: polygon(50% 100%, 100% 22%, 50% 0%, 0% 22%);
  background: linear-gradient(200deg, rgba(235, 240, 250, 0.78), rgba(110, 128, 160, 0.48));
  filter: drop-shadow(0 0.15rem 0.3rem rgba(0, 0, 0, 0.2));
  animation: ornament-briolette 7.4s ease-in-out infinite;
  animation-delay: -2.5s;
}

.hero-ornament--halo {
  right: 17%;
  bottom: 20%;
  width: clamp(1.75rem, 5vw, 2.35rem);
  height: clamp(1.75rem, 5vw, 2.35rem);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.12) 0%, transparent 58%);
  animation: ornament-halo 14s ease-in-out infinite;
}

.hero-ornament--halo::before {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  border: 1px dashed rgba(200, 208, 224, 0.22);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: min(40rem, 100%);
  width: 100%;
  padding-inline: 0;
}

.hero__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
  isolation: isolate;
}

/* Diamond-like light sweep behind mark */
.hero__facet-sweep {
  position: absolute;
  inset: -35%;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 55deg,
    rgba(255, 255, 255, 0.06) 80deg,
    rgba(220, 228, 240, 0.18) 92deg,
    rgba(255, 255, 255, 0.08) 105deg,
    transparent 130deg,
    transparent 360deg
  );
  animation: facet-sweep 14s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Ring / bracelet halo */
.hero__ring-orbit {
  position: absolute;
  inset: -18%;
  z-index: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  animation: ring-orbit 100s linear infinite reverse;
  pointer-events: none;
}

.hero__ring-orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(200, 208, 224, 0.12);
}

.hero__logo-glow {
  position: absolute;
  inset: -20%;
  z-index: 2;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  animation: pulse-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.hero__logo {
  position: relative;
  z-index: 3;
  width: min(12rem, 88vw);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: logo-rise 1s ease-out forwards;
  opacity: 0;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.625rem, 2vw, 0.75rem);
  letter-spacing: clamp(0.18em, 1.5vw, 0.35em);
  text-transform: uppercase;
  color: var(--color-white-muted);
  margin: 0 0 var(--space-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.35rem, 5vw + 0.5rem, 3rem);
  letter-spacing: clamp(0.1em, 1.2vw + 0.06em, 0.32em);
  text-transform: uppercase;
  margin: 0 0 var(--space-md);
  line-height: 1.15;
  text-wrap: balance;
  animation: title-silver-glint 12s ease-in-out infinite;
}

.hero__lead {
  color: var(--color-white-muted);
  margin: 0 auto var(--space-lg);
  max-width: 34rem;
  width: 100%;
  font-weight: 300;
  text-wrap: pretty;
  padding-inline: 0.25rem;
}

.hero__lead strong {
  font-weight: 500;
  color: var(--color-white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
  width: 100%;
  max-width: min(100%, 24rem);
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 2.75rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--ghost {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%,
    transparent 100%
  );
  transition: transform 0.5s ease;
  transform: translateX(0);
  pointer-events: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
}

.btn--ghost:hover::after {
  transform: translateX(200%);
  transition: transform 0.85s ease;
}

.btn--ghost:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 0.75rem;
  min-height: 3rem;
}


.hero__scroll {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  transform-origin: 50% 0;
  animation: scroll-pendant 5.5s ease-in-out infinite;
}

.hero__scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.35rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(180, 190, 210, 0.4));
  box-shadow: 0 0 6px rgba(200, 208, 224, 0.5);
  animation: clasp-sparkle 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hero__scroll:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

.hero__scroll:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 6px;
}

/* Category marquee — before Craft */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: clamp(0.65rem, 1.5vw, 0.95rem);
  background: linear-gradient(
    90deg,
    rgba(31, 42, 74, 0.55) 0%,
    transparent 25%,
    transparent 75%,
    rgba(31, 42, 74, 0.55) 100%
  );
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  animation: marquee-scroll 48s linear infinite;
  will-change: transform;
}

.marquee-item {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(0.625rem, 1.1vw + 0.2rem, 0.8125rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: var(--section-pad-y) var(--page-pad-x);
  position: relative;
}

.section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: var(--narrow);
}

.section__inner--cta {
  max-width: 36rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 2rem);
  letter-spacing: clamp(0.08em, 0.8vw + 0.04em, 0.22em);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 var(--space-md);
  text-wrap: balance;
  padding-inline: 0.25rem;
}

.section__intro {
  text-align: center;
  color: var(--color-white-muted);
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
}

/* Bead-chain accent above pillars */
.section--pillars::before {
  content: "";
  position: absolute;
  top: calc(var(--section-pad-y) * 0.55);
  left: 50%;
  width: min(17rem, 78vw);
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0 5px,
    rgba(255, 255, 255, 0.06) 5px 7px,
    transparent 7px 20px,
    rgba(200, 208, 224, 0.18) 20px 24px,
    transparent 24px 40px
  );
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
  animation: bead-chain-shine 9s linear infinite;
}

.section--pillars .section__inner {
  position: relative;
  z-index: 1;
}

.section--accent {
  background: linear-gradient(180deg, transparent, rgba(31, 42, 74, 0.5) 50%, transparent);
}

/* Floating “facet” chips — silver jewellery glints */
.section--jewels {
  position: relative;
  overflow: hidden;
}

.jewel-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jewel-facet {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  opacity: 0.45;
  background: linear-gradient(142deg, rgba(255, 255, 255, 0.55) 0%, rgba(170, 185, 215, 0.22) 42%, rgba(255, 255, 255, 0.38) 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: facet-drift 16s ease-in-out infinite;
  filter: drop-shadow(0 0 0.55rem rgba(200, 208, 224, 0.35));
}

.jewel-facet--1 {
  left: 6%;
  top: 22%;
  animation-delay: 0s;
}

.jewel-facet--2 {
  right: 10%;
  top: 18%;
  animation-delay: -3s;
  animation-duration: 19s;
}

.jewel-facet--3 {
  left: 14%;
  bottom: 12%;
  animation-delay: -6s;
  animation-duration: 21s;
}

.jewel-facet--4 {
  right: 18%;
  bottom: 20%;
  animation-delay: -2s;
  animation-duration: 17s;
}

.jewel-facet--5 {
  left: 48%;
  top: 8%;
  width: 0.45rem;
  height: 0.45rem;
  opacity: 0.35;
  animation-delay: -8s;
  animation-duration: 14s;
}

.section--jewels .section__inner {
  position: relative;
  z-index: 1;
}

.section__body {
  color: var(--color-white-muted);
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  width: 100%;
}

/* Shimmer cards */
.card {
  position: relative;
  padding: clamp(1.1rem, 3.5vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--color-panel);
  border: 1px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
}

.card--shimmer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(200, 208, 224, 0.15) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(200, 208, 224, 0.15) 90%
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: shimmer-border 8s ease infinite;
}

.card--shimmer::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    100deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 52%,
    transparent 65%
  );
  transform: translateX(-30%) rotate(8deg);
  animation: card-polish 9s ease-in-out infinite;
  pointer-events: none;
}

.card__gem {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-silver-start), var(--color-silver-end));
  box-shadow: 0 0 12px rgba(200, 208, 224, 0.35);
  animation: gem-float 5s ease-in-out infinite;
}

.card__gem::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.85) 0%, transparent 42%);
  opacity: 0;
  animation: gem-catchlight 4.5s ease-in-out infinite;
  pointer-events: none;
}

.card:nth-child(2) .card__gem {
  animation-delay: -1.5s;
}

.card:nth-child(3) .card__gem {
  animation-delay: -3s;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  letter-spacing: clamp(0.1em, 0.6vw + 0.06em, 0.18em);
  text-transform: uppercase;
  margin: 0 0 var(--space-sm);
  text-wrap: balance;
}

.card__text {
  margin: 0;
  color: var(--color-white-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Quote */
.section--quote {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.chain-motif {
  max-width: 16rem;
  margin: 0 auto var(--space-lg);
  color: rgba(200, 208, 224, 0.55);
}

.chain-motif__svg {
  width: 100%;
  height: auto;
  display: block;
}

.chain-motif__path {
  stroke-dasharray: 12 8;
  animation: chain-shimmer 3.5s linear infinite;
}

.chain-motif__path--back {
  animation-duration: 4.5s;
  animation-direction: reverse;
}

.quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 2vw + 0.35rem, 1.35rem);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-white-muted);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: clamp(1rem, 4vw, 2.5rem);
  text-wrap: pretty;
}

.quote p {
  margin: 0 0 var(--space-md);
}

.quote p:last-child {
  margin-bottom: 0;
}

/* Get the app — luxury strip (navy / silver / champagne, reference layout) */
.section--cta {
  overflow: hidden;
  padding-top: clamp(3rem, 9vw, 5.5rem);
  padding-bottom: clamp(3rem, 9vw, 5.5rem);
  background: radial-gradient(
    ellipse 90% 75% at 50% 22%,
    rgba(70, 78, 118, 0.55) 0%,
    var(--color-navy-deep) 42%,
    #12162a 100%
  );
}

.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 18%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 85% 80%, rgba(200, 208, 224, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
  animation: pearl-sheen 16s ease-in-out infinite;
}

.section--cta .section__inner--cta {
  position: relative;
  z-index: 1;
}

.app-cta {
  position: relative;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
  padding-inline: clamp(0.5rem, 3vw, 1rem);
}

.app-cta__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.5625rem, 0.85vw, 0.6875rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-champagne-soft);
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
}

.app-cta__headline {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  line-height: 1.05;
}

.app-cta__headline-line {
  display: block;
  font-family: var(--font-headline-serif);
  font-size: clamp(2rem, 5.5vw + 0.4rem, 3.65rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.03em;
}

.app-cta__headline-accent {
  display: block;
  margin-top: 0.08em;
  font-family: var(--font-headline-serif);
  font-size: clamp(2.1rem, 6vw + 0.35rem, 3.95rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  background: linear-gradient(
    118deg,
    #f4ebe0 0%,
    #d8c8a8 28%,
    #c8d0e0 55%,
    #e2d5c4 85%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-cta__lede {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.05vw + 0.5rem, 1.0625rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto clamp(2rem, 4.5vw, 2.85rem);
  max-width: 34rem;
  text-wrap: pretty;
}

.app-cta__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.65rem, 2vw, 1.15rem);
  position: relative;
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.25rem;
  min-height: 3.35rem;
  border: 1px solid var(--color-champagne-border);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  background: rgba(8, 12, 28, 0.25);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 12rem;
  max-width: min(17.5rem, 100%);
  justify-content: flex-start;
}

.app-store-btn:hover {
  border-color: rgba(232, 220, 200, 0.85);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(200, 208, 224, 0.12);
}

.app-store-btn:focus-visible {
  outline: 2px solid var(--color-silver-start);
  outline-offset: 3px;
}

.app-store-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0d2bc;
  filter: drop-shadow(0 0 0.35rem rgba(200, 208, 224, 0.2));
}

.app-store-btn__icon--play {
  margin-left: 2px;
}

.app-store-btn__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.app-store-btn__label {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.72);
  margin-bottom: 0.2rem;
}

.app-store-btn__name {
  font-family: var(--font-headline-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
}

.app-cta__device-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.app-cta__accent-ring {
  position: absolute;
  right: clamp(0.25rem, 5vw, 2.5rem);
  top: 42%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6e8, #c4a882 55%, #8a7358 100%);
  box-shadow:
    0 0 0 1px rgba(232, 220, 200, 0.45),
    0 0 0 7px rgba(232, 220, 200, 0.07);
  transform: translateY(-50%);
  pointer-events: none;
}

.app-cta__device {
  position: relative;
  display: inline-block;
  line-height: 0;
  width: clamp(7.75rem, 24vw, 10.25rem);
}

.app-cta__phone-body {
  border-radius: 1.35rem;
  padding: 0.42rem 0.48rem 0.62rem;
  background: linear-gradient(155deg, rgba(42, 48, 72, 0.98) 0%, rgba(14, 16, 32, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(232, 220, 200, 0.38),
    0 0.35rem 0 rgba(0, 0, 0, 0.2),
    0 0.85rem 1.75rem rgba(0, 0, 0, 0.35);
}

.app-cta__phone-notch {
  width: 38%;
  height: 4px;
  margin: 0.1rem auto 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.app-cta__screen {
  position: relative;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #0a0c16;
  aspect-ratio: 390 / 844;
  max-height: min(52vh, 28rem);
}

.app-cta__screen-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: app-mockup-scroll 32s linear infinite;
  will-change: transform;
}

.app-cta__mockup-img {
  display: block;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: top center;
}

@keyframes app-mockup-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 36rem) {
  .app-cta__accent-ring {
    display: none;
  }
}

@media (max-width: 24rem) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .app-cta__stores {
    flex-direction: column;
    align-items: stretch;
  }

  .app-store-btn {
    max-width: 20rem;
    margin-inline: auto;
    justify-content: center;
  }

  .app-store-btn__copy {
    align-items: center;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  padding: var(--space-xl) max(var(--space-md), env(safe-area-inset-right)) max(var(--space-xl), env(safe-area-inset-bottom)) max(var(--space-md), env(safe-area-inset-left));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  color: var(--color-white-muted);
  word-break: break-word;
}

.site-footer__copy {
  margin: 0 0 var(--space-xs);
  letter-spacing: 0.06em;
}

.site-footer__contact {
  margin: 0 0 var(--space-sm);
}

.site-footer__contact a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer__contact a:hover {
  border-bottom-color: var(--color-white);
}

.site-footer__contact a:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.site-footer__stores a {
  color: var(--color-white-muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.site-footer__stores a:hover {
  color: var(--color-white);
}

.site-footer__stores a:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.site-footer__sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.reveal-static .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Keyframes */
@keyframes jewel-halo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes silver-ring-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2.5%, 3%) scale(1.04);
  }
}

@keyframes halo-necklace-glint {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes jewel-diamond-life {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.35) rotate(0deg);
  }
  18% {
    opacity: 1;
    transform: scale(1) rotate(48deg);
  }
  42% {
    opacity: 0.35;
    transform: scale(0.72) rotate(96deg);
  }
  65% {
    opacity: 0.95;
    transform: scale(1.06) rotate(152deg);
  }
  88% {
    opacity: 0;
    transform: scale(0.48) rotate(220deg);
  }
}

@keyframes jewel-ring-life {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(-22deg);
  }
  28% {
    opacity: 1;
    transform: scale(1) rotate(6deg);
  }
  52% {
    opacity: 0.4;
    transform: scale(0.82) rotate(-8deg);
  }
  78% {
    opacity: 0.92;
    transform: scale(1.04) rotate(14deg);
  }
}

@keyframes jewel-bangle-life {
  0% {
    transform: rotate(0deg) scale(0.88);
    opacity: 0.25;
  }
  25% {
    opacity: 0.85;
  }
  50% {
    transform: rotate(180deg) scale(1);
    opacity: 0.4;
  }
  75% {
    opacity: 0.78;
  }
  100% {
    transform: rotate(360deg) scale(0.88);
    opacity: 0.25;
  }
}

@keyframes jewel-hoop-sway {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-18deg);
  }
  50% {
    opacity: 1;
    transform: rotate(16deg);
  }
}

@keyframes jewel-stud-twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  35% {
    opacity: 1;
    transform: scale(1.08);
  }
  70% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

@keyframes jewel-marquise-float {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-28deg) translate(0, 0);
  }
  50% {
    opacity: 0.9;
    transform: rotate(-22deg) translate(0.2rem, -0.35rem);
  }
}

@keyframes jewel-chain-drift {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  25%,
  75% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
    transform: translate(0.25rem, -0.2rem);
  }
}

@keyframes jewel-necklace-sway {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-4deg) scale(0.85);
  }
  45%,
  55% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
    transform: rotate(5deg) scale(1);
  }
}

@keyframes jewel-cuff-gleam {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.75);
    filter: brightness(0.85);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
    filter: brightness(1.15);
  }
}

@keyframes jewel-tennis-shimmer {
  0%,
  100% {
    opacity: 0;
    background-position: 0 0;
  }
  42%,
  58% {
    opacity: 1;
  }
  50% {
    background-position: 24px 0;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gem-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes facet-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ring-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes title-silver-glint {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  45% {
    text-shadow:
      0 0 1.25rem rgba(220, 228, 240, 0.25),
      0 0 2.5rem rgba(200, 208, 224, 0.12);
  }
  55% {
    text-shadow:
      0 0 1.5rem rgba(255, 255, 255, 0.2),
      0 0 3rem rgba(200, 208, 224, 0.1);
  }
}

@keyframes facet-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.35;
  }
  25% {
    transform: translate(0.75rem, -0.5rem) rotate(72deg);
    opacity: 0.55;
  }
  50% {
    transform: translate(-0.35rem, 0.65rem) rotate(144deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(0.5rem, 0.35rem) rotate(216deg);
    opacity: 0.5;
  }
}

@keyframes chain-shimmer {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes card-polish {
  0%,
  100% {
    transform: translateX(-35%) rotate(8deg);
  }
  50% {
    transform: translateX(35%) rotate(8deg);
  }
}

@keyframes ornament-pendant {
  0%,
  100% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(7deg);
  }
}

@keyframes ornament-teardrop {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-0.4rem, 0.35rem) rotate(-10deg);
  }
}

@keyframes ornament-briolette {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-0.45rem) rotate(14deg);
  }
  66% {
    transform: translateY(0.2rem) rotate(-12deg);
  }
}

@keyframes ornament-halo {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.06) rotate(200deg);
    opacity: 0.95;
  }
}

@keyframes scroll-pendant {
  0%,
  100% {
    transform: rotate(-2.8deg);
  }
  50% {
    transform: rotate(2.8deg);
  }
}

@keyframes clasp-sparkle {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) scale(0.88);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}

@keyframes bead-chain-shine {
  0% {
    filter: brightness(0.88);
    transform: translateX(calc(-50% - 10px));
  }
  100% {
    filter: brightness(1.12);
    transform: translateX(calc(-50% + 10px));
  }
}

@keyframes gem-catchlight {
  0%,
  65%,
  100% {
    opacity: 0;
  }
  72% {
    opacity: 0.9;
  }
  82% {
    opacity: 0.25;
  }
}

@keyframes pearl-sheen {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-mark__img {
    animation: none;
  }

  .marquee-track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }

  .marquee-item:nth-child(n + 11) {
    display: none;
  }

  .app-cta__screen-track {
    animation: none;
    transform: none;
  }

  .jewel-halo-rotate {
    animation: none;
  }

  .halo-necklace-path {
    animation: none;
  }

  .hero__logo {
    animation: none;
    opacity: 1;
  }

  .hero__silver-ring,
  .hero__logo-glow,
  .hero__facet-sweep,
  .hero__ring-orbit,
  .hero-ornament,
  .hero-ornament--halo::before,
  .hero__scroll,
  .hero__scroll::before,
  .section--pillars::before,
  .section--cta::before,
  .card__gem,
  .card__gem::after,
  .card--shimmer::before,
  .card--shimmer::after,
  .jewel-float,
  .jewel-facet,
  .chain-motif__path,
  .hero__title {
    animation: none;
  }

  .hero__title {
    text-shadow: none;
  }

  .hero__scroll {
    transform: none;
  }

  .hero__scroll::before {
    transform: translateX(-50%);
    opacity: 0.75;
  }

  .section--cta::before {
    opacity: 0.65;
    transform: none;
  }

  .card--shimmer::before {
    background-position: 50% 50%;
  }

  .jewel-facet {
    opacity: 0.25;
    transform: none;
  }

  .section--pillars::before {
    animation: none;
    opacity: 0.45;
    transform: translateX(-50%);
    filter: none;
  }

  .hero-ornament,
  .hero-ornament--halo::before {
    transform: none;
  }

  .hero-ornament--halo {
    opacity: 0.65;
    transform: none;
  }

  .card__gem::after {
    opacity: 0;
  }

  .hero__float-jewels > .jewel-float {
    opacity: 0.32;
    transform: none;
  }

  .jewel-float--marquise {
    transform: rotate(-25deg);
  }

  .jewel-float__link {
    transform: none;
  }

  .jewel-float--tennis {
    background-position: 0 0;
    opacity: 0.35;
  }

  .hero__silver-ring {
    transform: none;
    opacity: 0.32;
  }

  .btn--ghost::after {
    display: none;
  }
}
