@font-face {
  font-family: "Inter";
  src: url("../design/current/date-of-earth-current-design/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("../design/current/date-of-earth-current-design/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("../design/current/date-of-earth-current-design/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../design/current/date-of-earth-current-design/fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../design/current/date-of-earth-current-design/fonts/CormorantGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../design/current/date-of-earth-current-design/fonts/CormorantGaramond-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Fragment Mono";
  src: url("../design/targets/target-reference-design/fonts/FragmentMono-Regular.ttf") format("truetype");
  font-weight: 400;
}

:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Fragment Mono", "SFMono-Regular", Consolas, monospace;

  --text-hero: clamp(50px, 7.1vw, 94px);
  --text-h1: clamp(42px, 6vw, 72px);
  --text-h2: clamp(34px, 4.5vw, 56px);
  --text-h3: 24px;
  --text-legal-heading: clamp(30px, 4vw, 40px);
  --text-lead: 16px;
  --text-body: 14px;
  --text-small: 13px;
  --text-meta: 12px;

  --doe-void: #05070c;
  --doe-deep: #0a0e15;
  --doe-ink: #111827;
  --doe-panel: #151d2a;
  --doe-control-dark: #15171e;
  --doe-control-dark-line: #313339;
  --doe-control-dark-focus: #1a1c23;
  --doe-control-dark-ring: rgba(255, 255, 255, .12);
  --doe-paper: #ffffff;
  --doe-card: #f5f6f7;
  --doe-mist: #edeef0;
  --doe-line: #d7dce2;
  --doe-line-dark: rgba(255, 255, 255, .12);
  --doe-text: #101318;
  --doe-muted: #68707c;
  --doe-muted-dark: rgba(255, 255, 255, .74);
  --doe-star: #d6dcf4;
  --doe-gold: #d4be9a;
  --doe-success: #3db364;
  --doe-focus: #9db7d8;
  --doe-grey: #8d9298;
  --doe-placeholder: #e5e7eb;
  --doe-placeholder-line: #c7ccd3;
  --doe-placeholder-dark: #444a52;

  --content-max: 1224px;
  --occasion-rail-max: 1592px;
  --occasion-card-min-height: 442px;
  --card-gap: 8px;
  --section-pad-x: clamp(16px, 3vw, 40px);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-video: 9px;
  --shadow-flat: 0 1px 0 rgba(16, 19, 24, .06);
  --shadow-raised: 0 8px 18px rgba(16, 19, 24, .1);
  --shadow-float: 0 20px 54px rgba(0, 0, 0, .22);
  --carousel-arrow-bg: rgba(0, 0, 0, .4);
  --carousel-arrow-bg-hover: rgba(0, 0, 0, .48);
  --scroll-reveal-light-muted: rgba(16, 19, 24, .28);
  --scroll-reveal-dark-muted: rgba(255, 255, 255, .24);
  --scroll-reveal-fade-width: 34%;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--doe-paper);
  color: var(--doe-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: -0.16em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--doe-focus);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 24px;
  background: var(--doe-deep);
  color: var(--doe-paper);
  box-shadow: none;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.landing-body .site-header {
  background: transparent;
}

.landing-body .site-header.is-solid {
  background: var(--doe-deep);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .8);
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.button,
.moment-continue {
  transition: background-color .2s, border-color .2s, color .2s, box-shadow .2s, transform .167s cubic-bezier(.33, 0, 0, 1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: center;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  flex-direction: column;
  border-radius: 999px;
  background: var(--doe-paper) url("doe-earth-icon.png") center / contain no-repeat;
  color: var(--doe-deep);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.brand-name {
  min-width: 0;
  font-weight: 700;
}

.site-header .brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-cta,
.button,
.moment-continue {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-cta,
.button-light,
.moment-continue {
  background: var(--doe-paper);
  color: var(--doe-deep);
}

.header-cta {
  justify-self: end;
  min-width: 132px;
}

.header-cta:hover,
.button-light:hover,
.moment-continue:hover {
  background: rgba(255, 255, 255, .84);
}

.button-dark {
  background: var(--doe-deep);
  color: var(--doe-paper);
}

.button-dark:hover {
  background: var(--doe-ink);
}

.button-inline {
  width: max-content;
  max-width: 100%;
}

/* Mobile nav toggle (hamburger) — hidden on desktop, shown when the nav collapses */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--doe-paper);
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: opacity .2s ease;
}

.nav-toggle:hover {
  color: rgba(255, 255, 255, .82);
}

/* Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding: 18px 24px calc(28px + env(safe-area-inset-bottom, 0px));
  background: var(--doe-deep);
  color: var(--doe-paper);
}

.mobile-menu.is-open {
  display: flex;
  animation: mobileMenuIn .24s ease-out;
}

@keyframes mobileMenuIn {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: none;
  }
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.mobile-menu-brand {
  justify-self: start;
  justify-content: flex-start;
}

.mobile-menu-brand .brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-menu-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .08);
  color: var(--doe-paper);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, .15);
}

.mobile-menu-close-x {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.mobile-menu-close-x::before,
.mobile-menu-close-x::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.mobile-menu-close-x::before {
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-close-x::after {
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: var(--doe-paper);
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 500;
  line-height: 1.04;
}

.mobile-menu-nav a::after {
  color: var(--doe-muted-dark);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  content: "\2192";
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.mobile-menu-deal {
  justify-content: flex-start;
  font-size: var(--text-body);
}

.mobile-menu-create {
  width: 100%;
  min-height: 56px;
  font-size: var(--text-lead);
}

.mobile-menu-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 4px;
  color: var(--doe-muted-dark);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mobile-menu-foot a:hover {
  color: var(--doe-paper);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--doe-deep);
  color: var(--doe-paper);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../creatives/ugc/woman_man_holding.png") center 63% / cover no-repeat;
  content: "";
  opacity: .26;
}

.hero-media img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(84vw, 1540px);
  min-width: 980px;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .18) 5%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .18) 5%, #000 18%, #000 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, .28) 0%, rgba(5, 7, 12, .32) 58%, rgba(5, 7, 12, .76) 81%, var(--doe-deep) 100%),
    linear-gradient(90deg, var(--doe-deep) 0%, rgba(5, 7, 12, .94) 10%, rgba(5, 7, 12, .64) 28%, rgba(5, 7, 12, .2) 54%, rgba(5, 7, 12, .46) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 560px) minmax(300px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(40px, 10vw, 180px);
  margin: 0 auto;
  padding: 132px clamp(24px, 11vw, 212px) 84px;
}

.hero-copy-block {
  max-width: 560px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2,
.rail-caption h3,
.occasion-card h3,
.quality-card h3,
.flow-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.03;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}

.hero-title-keep {
  white-space: nowrap;
}

.hero-copy {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.42;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}

.hero-commerce {
  display: flex;
  width: min(100%, 380px);
  align-items: center;
  justify-self: end;
  flex-direction: column;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.hero-commerce .button {
  min-width: 330px;
  min-height: 64px;
  padding-inline: 30px;
  font-size: 14px;
}

.hero-shipping-origin {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .42);
}

.hero-shipping-origin img {
  width: 24px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2);
}

.moment-strip {
  display: none;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  background: var(--doe-deep);
  color: var(--doe-paper);
  padding: 14px var(--section-pad-x);
}

.live-deal.hero-live-deal {
  margin: 0 0 18px;
  font-size: var(--text-body);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .42);
}

.live-deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: var(--doe-paper);
  font-size: var(--text-lead);
  font-weight: 700;
  line-height: 1.3;
}

.live-deal-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--doe-success);
  box-shadow: 0 0 0 0 rgba(61, 179, 100, .5);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 179, 100, .55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(61, 179, 100, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(61, 179, 100, 0);
  }
}

.moment-preview {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: var(--doe-deep);
  color: var(--doe-paper);
  padding: 104px var(--section-pad-x) 132px;
}

.moment-preview-inner {
  display: grid;
  width: 100%;
  max-width: 680px;
  min-width: 0;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.moment-preview h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.02;
}

.moment-globe-shell {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 420px;
  min-width: 0;
  margin-top: 30px;
  justify-items: center;
}

.moment-globe {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 338px;
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.moment-globe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .5));
  opacity: 1;
  transition: opacity .18s ease;
}

.moment-globe img.loading {
  opacity: .38;
}

.moment-preview-form {
  display: grid;
  width: 100%;
  max-width: 408px;
  min-width: 0;
  gap: 10px;
  margin-top: 24px;
}

.moment-field {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 7px;
  text-align: left;
}

.moment-field > span,
.moment-field > label {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.25;
}

.moment-field input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--doe-control-dark-line);
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
  background: var(--doe-control-dark);
  color: var(--doe-paper);
  font-size: var(--text-lead);
  padding: 10px 12px;
  line-height: 1.2;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .26);
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.moment-field input::placeholder {
  color: rgba(255, 255, 255, .44);
}

.moment-field input:focus {
  border-color: rgba(255, 255, 255, .72);
  background: var(--doe-control-dark-focus);
  box-shadow: 0 0 0 3px var(--doe-control-dark-ring);
}

.moment-field input[type="date"] {
  color-scheme: dark;
}

.moment-field input[type="date"]::-webkit-date-and-time-value {
  margin: 0;
  text-align: left;
}

.moment-location-field {
  position: relative;
  z-index: 5;
}

.moment-location-search {
  position: relative;
  width: 100%;
  min-width: 0;
}

.moment-location-results {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 6px;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--doe-line);
  border-radius: var(--radius-sm);
  background: var(--doe-paper);
  padding: 6px;
  color: var(--doe-deep);
  box-shadow: var(--shadow-float);
}

.moment-location-results button {
  display: grid;
  gap: 2px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--doe-deep);
  padding: 9px 10px;
  text-align: left;
}

.moment-location-results button:hover {
  background: var(--doe-mist);
}

.moment-location-results strong {
  font-size: var(--text-small);
  line-height: 1.25;
}

.moment-location-results span,
.location-empty {
  color: var(--doe-muted);
  font-size: 11px;
  line-height: 1.35;
}

.location-empty {
  margin: 0;
  padding: 8px 9px;
}

.moment-continue {
  border: 1px solid var(--doe-paper);
}

.intro-section,
.product-rail-section,
.ugc-video-section,
.reviews-section,
.how-section,
.occasion-section,
.quality-section,
.social-proof {
  background: var(--doe-paper);
  padding: 124px var(--section-pad-x);
}

#personalize,
#gallery {
  scroll-margin-top: 72px;
}

.intro-layout,
.section-heading,
.flow,
.reviews-grid,
.quality-grid,
.social-grid {
  width: 100%;
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.intro-poster-wrap {
  grid-column: 1;
  display: grid;
  width: 100%;
  min-width: 0;
  justify-items: start;
}

.intro-copy {
  grid-column: 2;
}

.intro-poster-explainer {
  --intro-earth-fade: 210ms;
  --intro-spin-duration: 1260ms;
  --poster-message-size: clamp(5.4px, 1.12cqw, 7.1px);
  --poster-meta-size: clamp(5.1px, 1.02cqw, 6.7px);
  --poster-strong-size: clamp(5.4px, 1.08cqw, 7.1px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
  width: min(100%, 536px);
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--doe-void);
  color: var(--doe-paper);
  box-shadow:
    0 24px 54px rgba(5, 7, 12, .18),
    0 1px 0 rgba(16, 19, 24, .08);
}

.intro-poster-base {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 38%, rgba(157, 183, 216, .16), transparent 40%),
    linear-gradient(180deg, #171d26, #06080d 58%, var(--doe-void));
}

.intro-poster-base::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 24%, rgba(5, 7, 12, .1) 56%, rgba(5, 7, 12, .36) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 22%, transparent 72%, rgba(0, 0, 0, .34));
  content: "";
  pointer-events: none;
}

.intro-poster-border {
  position: absolute;
  z-index: 5;
  inset: 4.2%;
  border: clamp(2px, .7cqw, 4px) solid currentColor;
  opacity: .94;
  pointer-events: none;
}

.intro-earth-holder {
  position: absolute;
  z-index: 2;
  top: 10.5%;
  left: 50%;
  width: 59%;
  aspect-ratio: 1;
  margin: 0;
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  will-change: transform;
}

.intro-earth-holder::after {
  position: absolute;
  inset: -2.5%;
  z-index: 4;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 12, 18, .035) 0 58%, rgba(8, 12, 18, .08) 76%, rgba(8, 12, 18, 0) 100%);
  -webkit-backdrop-filter: blur(.6px) saturate(.99) brightness(1);
  backdrop-filter: blur(.6px) saturate(.99) brightness(1);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s cubic-bezier(.45, 0, .2, 1);
}

.intro-earth-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .32));
  transition:
    opacity var(--intro-earth-fade) cubic-bezier(.45, 0, .2, 1),
    transform .21s cubic-bezier(.45, 0, .2, 1),
    filter .21s cubic-bezier(.45, 0, .2, 1);
  will-change: opacity, transform;
}

.intro-earth-layer.is-active {
  z-index: 2;
  opacity: 1;
}

.intro-poster-explainer.is-spinning .intro-earth-holder {
  animation: introEarthMaskSpin var(--intro-spin-duration) linear both;
}

.intro-poster-explainer.is-spinning .intro-earth-layer {
  transform: translateZ(0) scale(1);
  filter:
    drop-shadow(0 10px 14px rgba(0, 0, 0, .31))
    blur(.35px)
    saturate(1)
    brightness(1);
}

.intro-poster-explainer.is-spinning .intro-earth-holder::after {
  opacity: .18;
}

@keyframes introEarthMaskSpin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(-360deg);
  }
}

.intro-poster-text-stack {
  position: absolute;
  z-index: 6;
  right: 18%;
  bottom: 8.2%;
  left: 18%;
  display: flex;
  max-height: 20%;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  text-align: center;
  transition:
    opacity .18s ease,
    transform .18s ease;
}

.intro-poster-explainer.is-text-changing .intro-poster-text-stack {
  opacity: .16;
  transform: translateY(4px);
}

.intro-poster-message {
  max-width: 100%;
  max-height: 3em;
  margin: 0;
  overflow: hidden;
  font-size: var(--poster-message-size);
  font-weight: var(--weight-bold);
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.intro-poster-meta {
  display: grid;
  gap: 2px;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: var(--poster-meta-size);
  font-weight: var(--weight-bold);
  line-height: 1.28;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.intro-poster-meta strong {
  font-size: var(--poster-strong-size);
}

.intro-heading,
.section-heading h2,
.feature-copy h2,
.promise-band h2 {
  max-width: 760px;
  margin-top: 0;
  font-size: var(--text-h2);
  line-height: 1.05;
}

.intro-copy p,
.feature-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--doe-muted);
  font-size: var(--text-lead);
  line-height: 1.58;
}

.intro-copy p {
  margin-top: 0;
}

.intro-copy .button,
.feature-copy .button {
  margin-top: 28px;
}

.section-heading {
  margin-bottom: 48px;
}

.ugc-video-section {
  overflow: hidden;
}

.ugc-video-heading {
  margin: 0 auto 48px;
}

.ugc-video-heading h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.05;
}

.ugc-video-heading p {
  margin: 14px auto 0;
  color: var(--doe-muted);
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-style: normal;
  line-height: 1.5;
}

.ugc-video-shell {
  position: relative;
  width: 100%;
  max-width: var(--occasion-rail-max);
  margin: 0 auto;
  overflow: hidden;
}

.ugc-video-track {
  --ugc-video-width: clamp(260px, 28vw, 382px);

  display: grid;
  width: 100%;
  grid-auto-columns: var(--ugc-video-width);
  grid-auto-flow: column;
  align-items: center;
  gap: clamp(12px, 2.1vw, 24px);
  overflow-x: auto;
  padding: 34px calc((100% - var(--ugc-video-width)) / 2) 46px;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100% - var(--ugc-video-width)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
}

.ugc-video-track::-webkit-scrollbar {
  display: none;
}

.ugc-video-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.ugc-video-card {
  min-width: 0;
  scroll-snap-align: center;
  cursor: pointer;
  opacity: .58;
  filter: saturate(.82);
  transform: scale(.76);
  transform-origin: center;
  transition:
    opacity .28s ease,
    filter .28s ease,
    transform .28s ease;
  will-change: opacity, transform;
}

.ugc-video-card.is-active {
  z-index: 1;
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.ugc-video-card:focus-visible {
  outline: 2px solid var(--doe-focus);
  outline-offset: 5px;
}

.ugc-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--doe-placeholder-line);
  border-radius: var(--radius-md);
  background: var(--doe-deep);
  box-shadow: var(--shadow-raised);
}

.ugc-video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-video-control {
  position: absolute;
  z-index: 3;
  top: 42%;
  display: grid;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  aspect-ratio: 1 / 1;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--carousel-arrow-bg);
  color: var(--doe-paper);
  opacity: .95;
  transform: translateY(-50%);
  transition: background-color .18s ease, opacity .18s ease;
}

.ugc-video-control:hover {
  background: var(--carousel-arrow-bg-hover);
}

.ugc-video-control:focus-visible {
  outline: 2px solid var(--doe-focus);
  outline-offset: 3px;
}

.ugc-video-control svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.4;
}

.ugc-video-control-prev {
  left: 4px;
}

.ugc-video-control-next {
  right: 4px;
}

.scroll-reveal-text {
  --scroll-reveal-solid: currentColor;
  --scroll-reveal-muted: var(--scroll-reveal-light-muted);
  --scroll-reveal-progress: -34%;
}

.scroll-reveal-fade {
  display: inline;
  background: linear-gradient(
    90deg,
    var(--scroll-reveal-solid) 0%,
    var(--scroll-reveal-solid) calc(var(--scroll-reveal-progress) - var(--scroll-reveal-fade-width)),
    var(--scroll-reveal-muted) calc(var(--scroll-reveal-progress) + var(--scroll-reveal-fade-width)),
    var(--scroll-reveal-muted) 100%
  );
  background-clip: text;
  box-decoration-break: clone;
  color: var(--scroll-reveal-solid);
  line-height: inherit;
  -webkit-background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-text-fill-color: transparent;
}

.moment-preview .scroll-reveal-text,
.feature-story .scroll-reveal-text,
.promise-band .scroll-reveal-text {
  --scroll-reveal-muted: var(--scroll-reveal-dark-muted);
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .scroll-reveal-fade {
    background: none;
    color: inherit;
    -webkit-text-fill-color: currentColor;
  }
}

.section-heading-center {
  max-width: 760px;
  text-align: center;
}

.placeholder-image {
  display: grid;
  width: 100%;
  min-height: 280px;
  place-items: center;
  border: 1px solid var(--doe-placeholder-line);
  border-radius: var(--radius-sm);
  background: var(--doe-placeholder);
  color: var(--doe-muted);
  padding: 18px;
  text-align: center;
}

.placeholder-image span {
  max-width: 32ch;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.45;
}

.placeholder-landscape {
  aspect-ratio: 4 / 3;
}

.placeholder-portrait {
  aspect-ratio: 3 / 4;
}

.placeholder-occasion {
  aspect-ratio: 4 / 5;
  min-height: var(--occasion-card-min-height);
}

.placeholder-feature {
  aspect-ratio: 11 / 13;
  min-height: 520px;
  border-color: rgba(255, 255, 255, .22);
  background: var(--doe-placeholder-dark);
  color: rgba(255, 255, 255, .72);
}

.placeholder-quality {
  aspect-ratio: 21 / 16;
  min-height: 240px;
}

.quality-image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 16;
  min-height: 240px;
  border-radius: 0;
  object-fit: cover;
}

.placeholder-social {
  aspect-ratio: 10 / 13;
  min-height: 320px;
}

.image-rail,
.occasion-rail {
  display: grid;
  width: 100%;
  max-width: var(--content-max);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--card-gap);
  margin: 0 auto;
}

.occasion-rail,
.occasion-section .mobile-carousel {
  max-width: var(--occasion-rail-max);
}

.mobile-carousel {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.carousel-arrow {
  display: none;
}

.rail-card {
  min-width: 0;
}

.rail-caption {
  padding-top: 14px;
}

.rail-caption h3,
.quality-card h3,
.occasion-card h3,
.flow-card h3 {
  font-size: var(--text-h3);
  line-height: 1.1;
}

.rail-caption p,
.quality-card p,
.flow-card p,
.review-card p {
  margin: 8px 0 0;
  color: var(--doe-muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

.review-card {
  display: grid;
  min-height: 212px;
  grid-template-columns: 1fr auto;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--doe-card);
  padding: 28px;
  box-shadow: none;
}

.review-stars {
  display: inline-flex;
  grid-column: 2;
  grid-row: 2;
  align-items: center;
  justify-self: end;
  gap: 2px;
  font-size: 0;
  line-height: 1;
}

.review-star {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: #00b67a;
  color: var(--doe-paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.review-card p {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  margin: 0;
  color: var(--doe-text);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.06;
  text-align: center;
}

.review-card > span {
  display: block;
  grid-column: 1;
  grid-row: 2;
  margin-top: 24px;
  color: var(--doe-muted);
  font-size: var(--text-meta);
  font-weight: 400;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

.how-section {
  padding-block: 96px;
  text-align: center;
}

.how-section .section-heading {
  margin: 0 auto 32px;
}

.how-section .section-heading h2 {
  font-size: clamp(34px, 3.2vw, 46px);
}

.how-section .section-heading p {
  margin: 8px 0 0;
  color: var(--doe-muted);
  font-size: var(--text-body);
  line-height: 1.5;
}

.flow-card {
  display: grid;
  min-height: 420px;
  grid-template-rows: 36px auto minmax(0, 1fr);
  align-items: start;
  justify-items: center;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--doe-card);
  padding: 24px 24px 30px;
  box-shadow: none;
  text-align: center;
}

.flow-card > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--doe-deep);
  color: var(--doe-paper);
  font-size: var(--text-meta);
  font-weight: 700;
}

.flow-card-copy {
  width: 100%;
}

.flow-card h3 {
  margin-top: 22px;
}

.flow-card p {
  max-width: 288px;
  margin-right: auto;
  margin-left: auto;
}

.how-example {
  display: grid;
  width: 100%;
  min-height: 0;
  height: 100%;
  align-items: center;
  justify-items: center;
  margin-top: 0;
  padding-top: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 280ms ease, transform 280ms ease;
}

.how-example.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.how-example-date {
  align-content: center;
  padding-top: 0;
}

.how-example-date time {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--doe-text);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 500;
  line-height: 1.02;
  white-space: nowrap;
}

.how-example-poster {
  margin-bottom: 0;
}

.how-example-poster img {
  width: 144px;
  height: 216px;
  object-fit: contain;
  filter: drop-shadow(0 7px 5px rgba(16, 19, 24, .2));
}

.how-example-message p {
  max-width: 278px;
  margin: 0;
  color: var(--doe-text);
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.04;
}

.how-example-message {
  align-content: center;
  padding-top: 0;
}

.how-cta {
  margin: 32px auto 0;
}

.occasion-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--doe-ink);
  color: var(--doe-paper);
}

.occasion-card .placeholder-image {
  border: 0;
  border-radius: 0;
  background: #b4bac2;
  color: rgba(16, 19, 24, .74);
}

.occasion-card-has-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
  content: "";
  pointer-events: none;
}

.occasion-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: var(--occasion-card-min-height);
  object-fit: cover;
  object-position: center 47%;
}

.occasion-card h3 {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--doe-paper);
  font-size: 24px;
  line-height: 1.05;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .38);
}

.feature-story {
  display: grid;
  width: min(100% - 32px, 1000px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: stretch;
  margin: 112px auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--doe-deep);
  color: var(--doe-paper);
}

.feature-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.feature-copy h2,
.promise-band h2 {
  color: var(--doe-paper);
}

.feature-copy p {
  color: rgba(255, 255, 255, .72);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px);
}

.quality-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--doe-card);
}

.quality-card-copy {
  padding: 20px 20px 22px;
}

.quality-card-copy h3 {
  margin: 0;
}

.social-grid {
  display: grid;
  width: 100%;
  max-width: var(--occasion-rail-max);
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 5);
  grid-template-columns: none;
  gap: var(--card-gap);
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 0;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
}

.social-grid::-webkit-scrollbar {
  display: none;
}

.social-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.social-image {
  display: block;
  width: 100%;
  min-height: var(--occasion-card-min-height);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.social-image-focus-left {
  object-position: left center;
}

.social-image-focus-right {
  object-position: right center;
}

.social-proof .mobile-carousel {
  max-width: var(--occasion-rail-max);
}

.social-proof .carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 42%;
  display: grid;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  aspect-ratio: 1 / 1;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--carousel-arrow-bg);
  color: var(--doe-paper);
  opacity: .95;
  transform: translateY(-50%);
  transition: background-color .18s ease, opacity .18s ease;
}

.social-proof .carousel-arrow-left {
  left: 4px;
}

.social-proof .carousel-arrow-right {
  right: 4px;
}

.social-proof .carousel-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.social-proof .carousel-arrow:hover {
  background: var(--carousel-arrow-bg-hover);
}

.social-proof .carousel-arrow.is-disabled {
  opacity: .22;
}

.promise-band {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 104px var(--section-pad-x);
  border-bottom: 1px solid var(--doe-line-dark);
  background: var(--doe-void);
  color: var(--doe-paper);
}

.promise-band h2 {
  max-width: 620px;
}

.site-footer {
  width: 100%;
  padding: 0 var(--section-pad-x);
  background: var(--doe-void);
  color: var(--doe-paper);
}

.site-footer-inner {
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 1fr);
  gap: clamp(64px, 9vw, 144px);
  align-items: start;
  padding: 84px 0 68px;
}

.footer-brand-column {
  max-width: 440px;
}

.footer-brand {
  justify-content: flex-start;
  justify-self: start;
}

.footer-brand .brand-mark {
  width: 64px;
  height: 64px;
}

.site-footer .footer-description {
  max-width: 420px;
  margin-top: 24px;
  color: var(--doe-muted-dark);
  font-size: var(--text-body);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 80px);
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-link-group h2 {
  margin: 0 0 7px;
  color: var(--doe-paper);
  font-family: var(--font-body);
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-link-group a {
  width: fit-content;
  color: var(--doe-muted-dark);
  font-size: var(--text-small);
  line-height: 1.4;
  transition: color .18s ease;
}

.footer-link-group a:hover {
  color: var(--doe-paper);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--doe-line-dark);
}

.site-footer .footer-legal p,
.site-footer .footer-made {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: var(--text-meta);
  line-height: 1.5;
}

.site-footer .footer-made {
  padding: 24px 0 30px;
  border-top: 1px solid var(--doe-line-dark);
  color: rgba(255, 255, 255, .82);
  font-size: var(--text-small);
  text-align: center;
}

.terms-body {
  background: var(--doe-paper);
}

.terms-body .site-header {
  grid-template-columns: auto 1fr;
}

.terms-body .brand {
  justify-self: start;
}

.terms-body .site-nav {
  justify-self: end;
}

.terms-body .brand-name,
.terms-body .brand > span:not(.brand-mark) {
  color: var(--doe-paper);
  font-weight: 700;
}

.terms-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 132px 24px 80px;
}

.terms-page h1 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.terms-page section {
  margin-top: 32px;
}

.terms-page h2 {
  font-size: 18px;
}

.terms-page p {
  color: var(--doe-muted);
}

.legal-body {
  background: var(--doe-paper);
}

.legal-body .site-header {
  background: var(--doe-deep);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 164px var(--section-pad-x) 92px;
  background: var(--doe-deep);
  color: var(--doe-paper);
  isolation: isolate;
}

.legal-hero::after {
  position: absolute;
  z-index: -1;
  right: clamp(-120px, -4vw, -48px);
  bottom: clamp(-190px, -14vw, -112px);
  width: clamp(320px, 38vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("doe-earth-icon.png") center / cover no-repeat;
  content: "";
  opacity: .12;
}

.legal-hero-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.legal-hero .section-kicker {
  color: var(--doe-star);
}

.legal-hero h1 {
  max-width: 780px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: 1.02;
}

.legal-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--doe-muted-dark);
  font-size: var(--text-lead);
  line-height: 1.6;
}

.legal-updated {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  line-height: 1.5;
}

.legal-layout {
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(56px, 8vw, 104px);
  align-items: start;
  margin: 0 auto;
  padding: 88px var(--section-pad-x) 112px;
}

.legal-toc {
  position: sticky;
  top: 104px;
}

.legal-toc > p {
  margin: 0 0 18px;
  color: var(--doe-text);
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--doe-line);
}

.legal-toc a {
  color: var(--doe-muted);
  font-size: var(--text-small);
  line-height: 1.4;
  transition: color .18s ease;
}

.legal-toc a:hover {
  color: var(--doe-text);
}

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

.legal-introduction {
  padding: 24px;
  border: 1px solid var(--doe-line);
  border-radius: var(--radius-md);
  background: var(--doe-card);
}

.legal-copy section {
  scroll-margin-top: 104px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--doe-line);
}

.legal-section-number {
  margin: 0 0 10px;
  color: var(--doe-muted);
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  line-height: 1.25;
}

.legal-copy h2 {
  margin: 0 0 24px;
  color: var(--doe-text);
  font-family: var(--font-display);
  font-size: var(--text-legal-heading);
  font-weight: 600;
  line-height: 1.06;
}

.legal-copy h3 {
  margin: 30px 0 10px;
  color: var(--doe-text);
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: 700;
  line-height: 1.35;
}

.legal-copy p,
.legal-copy li {
  color: var(--doe-muted);
  font-size: var(--text-body);
  line-height: 1.7;
}

.legal-copy p {
  margin: 0 0 16px;
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding-left: 20px;
}

.legal-copy strong {
  color: var(--doe-text);
  font-weight: 600;
}

.legal-copy a {
  color: var(--doe-text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--doe-line);
  text-underline-offset: 3px;
  transition: text-decoration-color .18s ease;
}

.legal-copy a:hover {
  text-decoration-color: var(--doe-text);
}

.legal-contact {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--doe-deep);
  color: var(--doe-muted-dark);
  font-size: var(--text-body);
  font-style: normal;
}

.legal-contact strong,
.legal-contact a {
  color: var(--doe-paper);
}

.legal-note {
  margin: 24px 0;
  padding: 24px;
  border-left: 3px solid var(--doe-gold);
  border-radius: var(--radius-sm);
  background: var(--doe-card);
}

.legal-note > strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-small);
  text-transform: uppercase;
}

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

.site-footer [aria-current="page"] {
  color: var(--doe-paper);
}

.contact-section {
  padding: 96px var(--section-pad-x) 112px;
  background: var(--doe-paper);
}

.contact-layout {
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(56px, 8vw, 104px);
  align-items: start;
  margin: 0 auto;
}

.contact-intro {
  padding-top: 12px;
}

.contact-intro h2 {
  margin: 10px 0 22px;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.06;
}

.contact-intro > p:not(.section-kicker) {
  max-width: 420px;
  margin: 0;
  color: var(--doe-muted);
  font-size: var(--text-body);
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--doe-line);
}

.contact-direct span {
  color: var(--doe-muted);
  font-size: var(--text-meta);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  color: var(--doe-text);
  font-size: var(--text-body);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--doe-line);
  text-underline-offset: 3px;
}

.contact-form-shell {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--doe-line);
  border-radius: var(--radius-md);
  background: var(--doe-card);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--doe-text);
  font-size: var(--text-meta);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-field small {
  color: var(--doe-muted);
  font-size: var(--text-meta);
  font-weight: 400;
  text-transform: none;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--doe-line);
  border-radius: var(--radius-sm);
  background: var(--doe-paper);
  color: var(--doe-text);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-field input,
.contact-field select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 168px;
  padding: 13px 14px;
  line-height: 1.6;
  resize: vertical;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: var(--doe-muted);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--doe-focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--doe-focus) 24%, transparent);
}

.contact-submit {
  width: fit-content;
  min-width: 172px;
  margin-top: 4px;
}

.contact-privacy {
  margin: -4px 0 0;
  color: var(--doe-muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

.contact-privacy a {
  color: var(--doe-text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--doe-line);
  text-underline-offset: 3px;
}

.contact-alert {
  margin-bottom: 24px;
  padding: 20px;
  border-left: 3px solid var(--doe-gold);
  border-radius: var(--radius-sm);
  background: var(--doe-paper);
}

.contact-alert-success {
  border-left-color: var(--doe-success);
}

.contact-alert strong {
  display: block;
  color: var(--doe-text);
  font-size: var(--text-body);
  font-weight: 700;
}

.contact-alert p,
.contact-alert li {
  color: var(--doe-muted);
  font-size: var(--text-small);
  line-height: 1.55;
}

.contact-alert p {
  margin: 6px 0 0;
}

.contact-alert ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ── CAPTCHA checkbox ─────────────────────────────────────────────────────── */
.contact-captcha {
  display: flex;
  align-items: center;
}

.contact-captcha-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--doe-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.4;
  user-select: none;
}

.contact-captcha-btn:focus-visible {
  outline: 2px solid var(--doe-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.contact-captcha-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--doe-line);
  border-radius: var(--radius-sm);
  background: var(--doe-paper);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.contact-captcha-btn:hover .contact-captcha-box {
  border-color: var(--doe-muted);
}

.contact-captcha-btn.is-checked .contact-captcha-box {
  border-color: var(--doe-text);
  background: var(--doe-text);
}

.contact-captcha-tick {
  display: block;
  width: 12px;
  height: 10px;
  color: var(--doe-paper);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .15s ease, transform .15s ease;
}

.contact-captcha-btn.is-checked .contact-captcha-tick {
  opacity: 1;
  transform: scale(1);
}

.contact-captcha-text {
  color: var(--doe-text);
  font-size: var(--text-body);
}

/* Shake animation shown when the user tries to submit without ticking */
@keyframes captcha-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

.contact-captcha-btn.captcha-shake {
  animation: captcha-shake .4s ease;
}

@media (max-width: 1100px) {
  .image-rail,
  .occasion-rail,
  .social-grid {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 38vw);
    grid-template-columns: none;
    max-width: none;
    margin: 0;
    padding-bottom: 0;
    cursor: grab;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
  }

  .occasion-rail {
    grid-auto-columns: minmax(312px, 49vw);
  }

  .image-rail::-webkit-scrollbar,
  .occasion-rail::-webkit-scrollbar,
  .social-grid::-webkit-scrollbar {
    display: none;
  }

  .image-rail.is-dragging,
  .occasion-rail.is-dragging,
  .social-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .rail-card,
  .occasion-card,
  .social-grid > .social-image {
    scroll-snap-align: start;
  }

  .carousel-arrow {
    position: absolute;
    z-index: 4;
    top: 42%;
    display: grid;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    aspect-ratio: 1 / 1;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--carousel-arrow-bg);
    color: var(--doe-paper);
    opacity: .95;
    transform: translateY(-50%);
    transition: background-color .18s ease, opacity .18s ease;
  }

  .carousel-arrow-left {
    left: 4px;
  }

  .carousel-arrow-right {
    right: 4px;
  }

  .carousel-arrow svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
  }

  .carousel-arrow:hover {
    background: var(--carousel-arrow-bg-hover);
  }

  .carousel-arrow.is-disabled {
    opacity: .22;
    pointer-events: none;
  }

  .social-grid {
    grid-auto-columns: minmax(312px, 49vw);
  }
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 72px 88px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-intro > p:not(.section-kicker) {
    max-width: 600px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 16px;
  }

  .landing-body .site-header {
    background: linear-gradient(180deg, rgba(5, 7, 12, .55), rgba(5, 7, 12, 0));
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
    min-width: 112px;
    padding-inline: 18px;
  }

  .ugc-video-shell {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
  }

  .ugc-video-track {
    --ugc-video-width: clamp(252px, 42vw, 360px);

    justify-content: start;
    gap: clamp(12px, 2.1vw, 24px);
    padding-inline: calc((100vw - var(--ugc-video-width)) / 2);
    scroll-padding-inline: calc((100vw - var(--ugc-video-width)) / 2);
  }

  .hero,
  .hero-layout {
    min-height: 82svh;
  }

  .hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .hero-media img {
    position: static;
    width: 100%;
    min-width: 0;
    object-fit: cover;
    object-position: 50% 52%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(5, 7, 12, .2) 0%, rgba(5, 7, 12, .34) 46%, rgba(5, 7, 12, .82) 80%, var(--doe-deep) 100%),
      linear-gradient(90deg, rgba(5, 7, 12, .44) 0%, rgba(5, 7, 12, .2) 52%, rgba(5, 7, 12, .36) 100%);
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 132px 20px 40px;
  }

  .hero-commerce {
    width: 100%;
    max-width: 560px;
    align-items: flex-start;
    justify-self: auto;
  }

  .hero-live-deal {
    display: none;
  }

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

  .hero-commerce .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 24px;
    font-size: var(--text-meta);
  }

  .moment-strip {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 60px);
  }

  .intro-section,
  .product-rail-section,
  .ugc-video-section,
  .reviews-section,
  .how-section,
  .occasion-section,
  .quality-section,
  .social-proof {
    padding-block: 84px;
  }

  .intro-layout,
  .feature-story,
  .promise-band {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 0 48px;
  }

  .footer-brand-column,
  .site-footer .footer-description {
    max-width: 100%;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .intro-layout {
    gap: 32px;
    justify-items: center;
    text-align: center;
  }

  .intro-copy {
    display: contents;
  }

  .intro-heading {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
  }

  .intro-body {
    grid-column: 1;
    grid-row: 3;
    max-width: 560px;
  }

  .intro-poster-wrap {
    grid-column: 1;
    grid-row: 2;
    justify-items: center;
  }

  .intro-poster-explainer {
    width: min(100%, 520px);
  }

  .feature-story {
    width: 100%;
    margin: 84px auto;
  }

  .feature-copy {
    padding: 40px 20px 48px;
  }

  .feature-copy p {
    margin: 24px 0 30px;
  }

  .feature-copy .button {
    margin-top: 0;
  }

  .reviews-grid,
  .flow,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .flow {
    max-width: 560px;
  }

  .promise-band {
    align-items: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: var(--text-small);
  }

  .legal-hero {
    padding: 132px 16px 64px;
  }

  .legal-hero::after {
    right: -120px;
    bottom: -92px;
    width: 320px;
    opacity: .09;
  }

  .legal-lead {
    margin-top: 18px;
    font-size: var(--text-body);
  }

  .legal-updated {
    max-width: 260px;
    margin-top: 24px;
  }

  .legal-layout {
    gap: 48px;
    padding: 56px 16px 72px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-introduction {
    padding: 20px;
  }

  .legal-copy section {
    margin-top: 44px;
    padding-top: 44px;
  }

  .legal-contact {
    padding: 20px;
  }

  .legal-note {
    padding: 20px;
  }

  .contact-section {
    padding: 64px 16px 72px;
  }

  .contact-layout {
    gap: 40px;
  }

  .contact-form-shell {
    padding: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-submit {
    width: 100%;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    height: 68px;
    padding: 8px 14px;
    background: linear-gradient(180deg, rgba(5, 7, 12, .5), rgba(5, 7, 12, 0));
    box-shadow: none;
  }

  .brand {
    grid-column: 2;
    gap: 8px;
    justify-self: center;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    font-size: 8px;
  }

  .site-header .brand-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-cta {
    grid-column: 3;
    min-width: 104px;
    min-height: 44px;
    padding-inline: 18px;
  }

  .hero,
  .hero-layout {
    min-height: 100svh;
  }

  .hero-media img {
    height: calc(100% + 10svh);
    object-position: 50% 48%;
    transform: translateY(-10svh);
  }

  .hero-media::before {
    opacity: 0;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(5, 7, 12, .08) 0%, rgba(5, 7, 12, .16) 36%, rgba(5, 7, 12, .58) 69%, var(--doe-deep) 100%),
      linear-gradient(90deg, rgba(5, 7, 12, .34) 0%, rgba(5, 7, 12, .08) 50%, rgba(5, 7, 12, .26) 100%);
  }

  .hero-layout {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 120px 16px 16px;
    text-align: center;
  }

  .hero-copy-block {
    width: 100%;
    max-width: 410px;
    margin-inline: auto;
  }

  .hero-commerce {
    max-width: 410px;
    align-items: center;
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 410px;
    margin-inline: auto;
    font-size: clamp(36px, 8.4vw, 40px);
    line-height: 1;
  }

  .hero-copy {
    max-width: 340px;
    margin: 12px auto 0;
    font-size: var(--text-small);
    line-height: 1.38;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 310px);
    margin: 16px auto 0;
  }

  .hero-shipping-origin {
    width: 100%;
    justify-content: center;
    margin-top: 29px;
    text-align: center;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

  .button-inline {
    width: 100%;
  }

  .live-deal {
    font-size: var(--text-body);
  }

  .moment-preview {
    padding: 84px 16px 104px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .footer-brand {
    grid-column: auto;
    justify-self: start;
  }

  .moment-globe-shell,
  .moment-preview-form {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .moment-globe {
    max-width: min(82vw, 316px);
  }

  .intro-poster-explainer {
    --poster-message-size: clamp(5px, 1.08cqw, 6.4px);
    --poster-meta-size: clamp(4.7px, 0.96cqw, 5.9px);
    --poster-strong-size: clamp(4.9px, 1cqw, 6.2px);
    width: min(100%, 356px);
  }

  .section-heading h2,
  .intro-heading,
  .feature-copy h2,
  .promise-band h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .ugc-video-heading {
    margin-bottom: 34px;
  }

  .ugc-video-track {
    --ugc-video-width: clamp(236px, 62vw, 360px);

    gap: 14px;
    padding-block: 28px 42px;
  }

  .ugc-video-card {
    opacity: .66;
    transform: scale(.74);
  }

  .ugc-video-frame {
    min-height: 314px;
  }

  .image-rail,
  .occasion-rail {
    grid-auto-columns: minmax(232px, 78vw);
  }

  .occasion-rail {
    grid-auto-columns: minmax(302px, 86vw);
  }

  .social-grid {
    grid-auto-columns: minmax(302px, 86vw);
  }

  .review-card p {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .flow-card {
    min-height: 390px;
  }

  .how-example {
    min-height: 0;
    padding-top: 0;
  }

  .how-example-poster img {
    width: 122px;
    height: 183px;
  }

  .how-example-date,
  .how-example-message {
    padding-top: 0;
  }

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

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

  .placeholder-social {
    min-height: 280px;
  }
}

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

  .live-deal-dot {
    animation: none;
  }

  .scroll-reveal-fade {
    background: none;
    color: inherit;
    -webkit-text-fill-color: currentColor;
  }

  .how-example {
    transition: none;
  }

  .how-example.is-changing {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-earth-layer,
  .intro-earth-holder::after,
  .intro-poster-star-map,
  .intro-poster-text-stack {
    transition: none !important;
  }

  .intro-poster-explainer.is-spinning .intro-earth-layer {
    transform: translateZ(0) scale(1);
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .32));
  }

  .intro-poster-explainer.is-spinning .intro-earth-holder {
    animation: none;
    transform: translateX(-50%);
  }

  .intro-poster-explainer.is-spinning .intro-earth-holder::after {
    opacity: 0;
  }

  .intro-poster-explainer.is-text-changing .intro-poster-text-stack {
    opacity: 1;
    transform: none;
  }
}
