:root {
  --bg: #fffaf6;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --blush: #f6d9d8;
  --peach: #f8e0c9;
  --butter: #f8efd7;
  --blue: #dcecf2;
  --sage: #d8e3d5;
  --sage-deep: #4c6964;
  --rose-deep: #8d5f67;
  --text: #2b393f;
  --muted: #55666c;
  --shadow: 0 24px 60px rgba(133, 111, 106, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 217, 216, 0.72), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(220, 236, 242, 0.85), transparent 22%),
    radial-gradient(circle at bottom right, rgba(248, 224, 201, 0.75), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

.site-header,
.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.35rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-logo img {
  display: block;
  width: clamp(62px, 6.6vw, 83px);
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 700;
  color: #637279;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: rgba(89, 117, 111, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #de929d 0%, #b86f79 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(184, 111, 121, 0.24);
}

.button-soft {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(89, 117, 111, 0.14);
  color: var(--text);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(89, 117, 111, 0.16);
  color: var(--sage-deep);
}

.section {
  padding: 4.8rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 3rem;
  min-height: 72vh;
  padding-top: 0.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  color: #415452;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 0.6rem;
}

.hero-text,
.section-heading p,
.story-copy p,
.details-copy p,
.brand-copy p,
.trust-card p,
.feature-card p,
.inclusion-card p,
.brand-points p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-text {
  margin-top: 1.4rem;
  max-width: 34rem;
  color: #506168;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage-deep);
  font-weight: 800;
}

.hero-link::after {
  content: "\2192";
  font-size: 0.95em;
}

.hero-link:hover,
.hero-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.hero-reassurance {
  margin: -0.1rem 0 1rem;
  color: var(--rose-deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 38rem;
}

.hero-highlights li,
.pill,
.point-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(89, 117, 111, 0.12);
  color: var(--sage-deep);
  font-weight: 700;
}

.hero-highlights li {
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.hero-highlights li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  flex: 0 0 auto;
}

.image-stack {
  position: relative;
  padding: 1rem 1rem 4.4rem;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.hero-card-main {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.96);
  z-index: 2;
}

.hero-card-main img {
  width: 100%;
  border-radius: 22px;
}

.hero-backdrop {
  position: absolute;
  border-radius: 32px;
  pointer-events: none;
}

.hero-backdrop-one {
  top: 2.2rem;
  right: -0.6rem;
  width: 68%;
  height: 72%;
  background: linear-gradient(160deg, rgba(246, 217, 216, 0.66), rgba(248, 239, 215, 0.2));
  filter: blur(2px);
}

.hero-backdrop-two {
  left: -0.5rem;
  bottom: 3.2rem;
  width: 44%;
  height: 38%;
  background: linear-gradient(160deg, rgba(220, 236, 242, 0.55), rgba(255, 255, 255, 0.12));
}

.hero-proof-row {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-proof-row span:not(:last-child)::after {
  content: "";
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
}

.feature-band,
.inside-box,
.facts-section,
.faq-section,
.brand-panel,
.trust-strip {
  position: relative;
}

.sku-section {
  padding-top: 0.6rem;
}

.feature-band {
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.inside-box {
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.facts-section {
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.feature-band::before,
.inside-box::before,
.facts-section::before,
.brand-panel::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  z-index: -1;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.sku-selector {
  display: grid;
  gap: 1.35rem;
  position: relative;
}

.sku-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.sku-tab {
  display: grid;
  gap: 0.28rem;
  min-width: 170px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(89, 117, 111, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 246, 0.84));
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 12px 30px rgba(133, 111, 106, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.sku-tab-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.sku-tab-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.sku-tab-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.sku-swatch {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(89, 117, 111, 0.14);
}

.sku-swatch-black {
  background: #232323;
}

.sku-swatch-gold {
  background: linear-gradient(135deg, #c89f46 0%, #f1dc9a 100%);
}

.sku-size-badge,
.sku-pack-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(89, 117, 111, 0.12);
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.sku-tab:hover,
.sku-tab:focus-visible,
.sku-tab.is-active {
  transform: translateY(-3px);
  border-color: rgba(141, 95, 103, 0.26);
  box-shadow: 0 18px 38px rgba(141, 95, 103, 0.13);
}

.sku-tab.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 217, 216, 0.5));
  outline: 2px solid rgba(141, 95, 103, 0.14);
  outline-offset: 2px;
}

.sku-display {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 217, 216, 0.36), transparent 28%),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.sku-image-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(133, 111, 106, 0.1);
}

.sku-copy {
  display: grid;
  gap: 0.9rem;
}

.sku-kicker {
  margin: 0;
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sku-description {
  margin: 0;
  color: var(--muted);
}

.sku-occasion {
  margin: -0.1rem 0 0;
  color: var(--rose-deep);
  font-weight: 800;
  line-height: 1.5;
}

.sku-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.sku-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(89, 117, 111, 0.12);
  color: var(--sage-deep);
  font-weight: 700;
}

.sku-points {
  margin-top: 0;
}

.sku-actions {
  display: flex;
  align-items: flex-start;
}

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

.fact-card,
.faq-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(89, 117, 111, 0.1);
  box-shadow: 0 14px 34px rgba(133, 111, 106, 0.08);
}

.fact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246, 217, 216, 0.72), rgba(255, 255, 255, 0.92));
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.7rem;
}

.feature-grid,
.brand-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card,
.trust-card,
.inclusion-card,
.brand-points article {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(89, 117, 111, 0.1);
  box-shadow: 0 14px 34px rgba(133, 111, 106, 0.08);
}

.story-layout,
.details-layout,
.box-layout,
.brand-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story-layout,
.details-layout {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(133, 111, 106, 0.08);
}

.details-layout {
  background:
    radial-gradient(circle at top left, rgba(220, 236, 242, 0.3), transparent 28%),
    rgba(255, 255, 255, 0.54);
}

.story-visual img,
.details-visual img,
.box-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #fff;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.detail-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 0.65rem;
}

.box-copy {
  display: grid;
  gap: 1rem;
}

.accent-card {
  background: linear-gradient(145deg, rgba(248, 239, 215, 0.88), rgba(246, 217, 216, 0.6));
}

.brand-panel {
  padding-inline: min(4vw, 2rem);
}

.brand-points article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1.8rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 244, 0.88)),
    rgba(255, 255, 255, 0.82);
}

.brand-points article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blush), var(--blue), var(--sage));
}

.brand-points article::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  bottom: -2.2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 217, 216, 0.35), rgba(246, 217, 216, 0));
  pointer-events: none;
}

.point-label {
  justify-self: start;
  padding-inline: 1rem;
  background: linear-gradient(135deg, rgba(246, 217, 216, 0.75), rgba(255, 255, 255, 0.92));
  color: var(--rose-deep);
  border-color: rgba(141, 95, 103, 0.12);
  box-shadow: 0 10px 24px rgba(141, 95, 103, 0.08);
}

.brand-points p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.7;
}

.trust-card {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.4rem 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 224, 201, 0.58)),
    rgba(255, 255, 255, 0.82);
}

.trust-card .button {
  margin-top: 1.3rem;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #de929d 0%, #b86f79 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(184, 111, 121, 0.3);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .story-layout,
  .details-layout,
  .box-layout,
  .facts-grid,
  .faq-list,
  .brand-panel,
  .sku-display,
  .feature-grid,
  .brand-points {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.4rem;
  }

  .hero-copy,
  .story-copy,
  .details-copy,
  .brand-copy {
    order: initial;
  }

  .hero-proof-row {
    position: static;
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .image-stack {
    padding-bottom: 1.2rem;
  }
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }

  .site-header > .button-soft,
  .hero-actions .button-primary {
    display: none;
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero.section {
    padding-top: 2.2rem;
    padding-bottom: 2.6rem;
  }

  .feature-band,
  .inside-box,
  .facts-section,
  .brand-panel {
    padding-inline: 1rem;
  }

  .sku-tab {
    min-width: 0;
    flex: 1 1 100%;
  }

  .sku-display {
    padding: 1rem;
  }

  .sku-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > h1 {
    order: 2;
  }

  .hero-copy > .hero-text {
    order: 3;
    margin-top: 0.55rem;
  }

  .hero-media {
    order: 4;
    margin-top: 0.15rem;
  }

  .hero-copy > .hero-actions {
    order: 5;
    margin: 0.2rem 0 0.45rem;
  }

  .hero-copy > .hero-reassurance {
    order: 6;
  }

  .hero-copy > .hero-highlights {
    order: 7;
  }

  .hero-copy > .eyebrow {
    margin-bottom: 0.35rem;
  }

  .hero-copy > h1 {
    margin-bottom: 0.15rem;
  }

  .hero-reassurance {
    margin: 0.1rem 0 0.55rem;
    font-size: 0.9rem;
  }

  .hero-highlights {
    gap: 0.35rem 0.9rem;
  }

  .hero-highlights li {
    font-size: 0.95rem;
  }

  .image-stack {
    padding: 0.45rem 0.45rem 1.2rem;
  }

  .hero-proof-row {
    left: auto;
    right: auto;
  }

  .hero-proof-row {
    gap: 0.55rem;
    font-size: 0.84rem;
  }

  .button,
  .button-soft {
    width: 100%;
  }

  .mobile-cta {
    display: inline-flex;
  }

  body {
    padding-bottom: 5.5rem;
  }
}
