:root {
  --cream: #fafaf7;
  --paper: #f5f4ee;
  --indigo: #1b3a5c;
  --ink: #2c2c2a;
  --muted: #62605b;
  --gold: #b89a50;
  --azuki: #a71932;
  --logo-gold: #f2a900;
  --orange: #ffb347;
  --rose: #d4537e;
  --matcha: #6b8e5a;
  --sakura: #f4c2c2;
  --line: #d9d6cc;
  --white: #fff;
  --shadow: 0 22px 60px rgba(27, 58, 92, 0.1);
  --container: min(1180px, calc(100vw - 40px));
  --bg: var(--cream);
  --surface: var(--white);
  --accent: var(--gold);
  --accent-2: var(--matcha);
  --radius: 8px;
  --button-radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.birthday {
  --accent: var(--orange);
  --accent-2: var(--sakura);
  --radius: 16px;
  --button-radius: 14px;
}

body.bachelorette {
  --bg: #f5f4ee;
  --accent: var(--rose);
  --accent-2: var(--gold);
  --radius: 6px;
}

body.b2b {
  --accent: var(--gold);
  --accent-2: var(--matcha);
  --radius: 8px;
}

body.gift {
  --bg: #f5f4ee;
  --accent: var(--gold);
  --accent-2: var(--sakura);
  --radius: 2px;
}

.page-scroll {
  position: fixed;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.page-scroll::after {
  display: block;
  height: 1px;
  content: "";
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  background: var(--azuki);
  color: rgba(255, 255, 255, 0.9);
}

.section.dark h2,
.section.dark h3,
.section.dark .eyebrow {
  color: var(--white);
}

.section.dark .section-head p,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--indigo);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent);
  border-radius: var(--button-radius);
  padding: 14px 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--indigo);
}

.dark .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(217, 214, 204, 0.84);
  background: color-mix(in srgb, var(--bg) 92%, white);
  backdrop-filter: blur(18px);
}

.topbar.scrolled {
  box-shadow: 0 10px 28px rgba(27, 58, 92, 0.08);
}

.nav-inner {
  display: grid;
  min-height: 70px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 104px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-action {
  display: flex;
  justify-content: end;
}

.icon-cart {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  padding: 54px 0 92px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: center;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.microcopy,
.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-line {
  color: var(--indigo);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-media.tall {
  aspect-ratio: 2 / 3;
  min-height: 720px;
}

.hero-full {
  position: relative;
  display: grid;
  min-height: calc(100vh - 70px);
  align-items: end;
  padding: 0;
  color: var(--white);
}

.hero-full .hero-bg {
  position: absolute;
  inset: 0;
}

.hero-full .hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 14, 0.16), rgba(20, 18, 14, 0.68));
  content: "";
}

.hero-full .hero-panel {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 0 88px;
}

.hero-full h1,
.hero-full .eyebrow {
  color: var(--white);
}

.hero-full p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-full .microcopy {
  color: rgba(255, 255, 255, 0.78);
}

.b2b-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 40px;
  align-items: stretch;
}

body.b2b .hero {
  padding-top: 42px;
}

body.b2b .hero-copy {
  min-height: 650px;
}

.b2b-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--azuki), var(--logo-gold));
  content: "";
}

.b2b-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 58, 92, 0.02), rgba(27, 58, 92, 0.44));
  content: "";
}

.b2b-hero-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.b2b-intake {
  border: 1px solid rgba(184, 154, 80, 0.34);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.b2b-intake h3 {
  font-size: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.email-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 50px;
}

.section-head.center {
  display: block;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid rgba(217, 214, 204, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(27, 58, 92, 0.06);
}

.card-pad {
  padding: 30px;
}

.card h3 + p,
.card .eyebrow + h3,
.plain-list p {
  margin-top: 12px;
}

.card p,
.plain-list p,
.timeline p {
  color: var(--muted);
}

.image-card {
  position: relative;
  min-height: 420px;
}

.image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62));
  content: "";
}

.image-card .card-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
}

.image-card h3 {
  color: var(--white);
}

.pin-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.box-layout,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 52px;
  align-items: center;
}

.box-image,
.story-image {
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.callout-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.callout-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--muted);
}

.callout-list strong {
  color: var(--indigo);
}

.dark .callout-list li {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.dark .callout-list strong {
  color: var(--white);
}

.steps,
.timeline {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  display: grid;
  grid-template-rows: 280px 1fr;
}

.step-card .card-pad {
  position: relative;
}

.step-card .card-pad::before,
.timeline-item::before {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
}

.timeline {
  counter-reset: step;
}

.timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 28px 0 8px;
}

.timeline-time {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doubt-grid .card,
.benefit-grid .card,
.segment-grid .card {
  min-height: 220px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote {
  margin: 0;
  color: var(--indigo);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  line-height: 1.2;
}

.review-card blockquote {
  margin: 18px 0;
  color: var(--indigo);
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px;
}

.pricing-card.featured {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  box-shadow: 0 24px 60px rgba(184, 154, 80, 0.16);
}

.price {
  margin: 20px 0 18px;
  color: var(--indigo);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  font-weight: 700;
}

.price small {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.pricing-card .button {
  margin-top: auto;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--indigo);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  color: var(--indigo);
  font-weight: 800;
  cursor: pointer;
}

details p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
}

.final-cta {
  padding: 86px 0;
  background: var(--azuki);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin: 20px auto 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.sticky-atc,
.mobile-sticky {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(217, 214, 204, 0.9);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(27, 58, 92, 0.16);
  backdrop-filter: blur(18px);
}

.sticky-atc.visible {
  display: flex;
}

.sticky-product {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 800;
}

.sticky-product img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 50;
  max-width: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--indigo);
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-inner,
  .hero-split,
  .b2b-hero,
  .box-layout,
  .story-layout,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    min-height: auto;
  }

  body.b2b .hero {
    padding-top: 24px;
  }

  body.b2b .hero-copy {
    min-height: auto;
  }

  body.b2b .b2b-hero {
    gap: 28px;
  }

  body.b2b .b2b-hero-visual {
    order: -1;
    min-height: clamp(260px, 36vh, 360px);
  }

  body.b2b .hero-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-media,
  .hero-media.tall,
  .b2b-hero-visual,
  .box-image,
  .story-image {
    min-height: 440px;
  }

  .grid-3,
  .grid-4,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 32px, 1180px);
  }

  body {
    padding-bottom: 82px;
  }

  .page-scroll {
    padding-bottom: 82px;
  }

  .section {
    padding: 76px 0;
  }

  .nav-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .logo {
    font-size: 25px;
  }

  .hero {
    padding: 32px 0 70px;
  }

  body.b2b .hero {
    padding: 16px 0 64px;
  }

  body.b2b .b2b-hero {
    gap: 22px;
  }

  body.b2b .b2b-hero-visual {
    min-height: clamp(220px, 32vh, 300px);
  }

  body.b2b .b2b-hero-visual figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    font-size: 10px;
  }

  .hero-split {
    gap: 28px;
  }

  .hero-full {
    min-height: 80vh;
  }

  .hero-full .hero-panel {
    padding-bottom: 56px;
  }

  .hero-media,
  .hero-media.tall,
  .b2b-hero-visual,
  .box-image,
  .story-image {
    min-height: 360px;
  }

  .section-head,
  .footer-inner {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .grid-3,
  .grid-4,
  .steps,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .step-card {
    grid-template-rows: 230px 1fr;
  }

  .pricing-card {
    min-height: auto;
    padding: 28px;
  }

  .sticky-atc {
    display: none !important;
  }

  .mobile-sticky {
    display: flex;
  }

  .mobile-sticky .button {
    flex: 1;
  }

  .toast {
    right: 14px;
    bottom: 96px;
    left: 14px;
    max-width: none;
  }
}
