/* Yaratu — brand identity 2026
   Colors: olive #2F391C · cream #FFF0D9 · white · gold accent #A17513
   Logo: Circe Contrast (as SVG). Body: public sans substitute for TT Norms Pro. */

:root {
  --olive: #2f391c;
  --olive-deep: #1f2612;
  --olive-soft: #4e5337;
  --cream: #fff0d9;
  --cream-dim: #f5e4c4;
  --white: #ffffff;
  --gold: #a17513;
  --ink: #2f391c;
  --muted: rgba(47, 57, 28, 0.68);
  --line: rgba(47, 57, 28, 0.14);
  --radius: 0;
  --max: 1120px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-soft);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 38rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 240, 217, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 2.1rem;
  width: auto;
}

.nav__links {
  display: none;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav__links a {
  text-decoration: none;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  background: var(--olive);
  color: var(--cream) !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav__cta:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
}

@media (min-width: 860px) {
  .nav__links {
    display: flex;
  }
}

/* Hero — abstract brand plane (olive + cream, no packshots) */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background: var(--olive-deep);
  padding: 0;
}

.hero__plane {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 82% 28%, rgba(255, 240, 217, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 8% 72%, rgba(161, 117, 19, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 48% 108%, rgba(255, 240, 217, 0.08) 0%, transparent 42%),
    linear-gradient(148deg, #1a2110 0%, #2f391c 38%, #455230 62%, #2a3319 82%, #1f2612 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("/assets/graphics/pattern-1.png");
  background-repeat: repeat;
  background-size: 280px auto;
  mix-blend-mode: screen;
  transform: rotate(-8deg) scale(1.25);
  transform-origin: center;
}

.hero__glow {
  position: absolute;
  inset: -12% -8%;
  pointer-events: none;
}

.hero__glow--warm {
  background:
    radial-gradient(ellipse 50% 42% at 72% 40%, rgba(255, 240, 217, 0.18), transparent 68%),
    radial-gradient(ellipse 40% 35% at 18% 55%, rgba(161, 117, 19, 0.14), transparent 60%);
  animation: hero-glow 18s ease-in-out infinite alternate;
}

.hero__glow--soft {
  background: radial-gradient(circle at 30% 20%, rgba(78, 83, 55, 0.5), transparent 42%);
  animation: hero-glow 22s ease-in-out infinite alternate-reverse;
}

.hero__orb {
  position: absolute;
  width: min(52vw, 540px);
  aspect-ratio: 1;
  right: 4%;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 240, 217, 0.16) 0%, rgba(161, 117, 19, 0.08) 35%, transparent 68%);
  filter: blur(8px);
  animation: hero-orb 20s ease-in-out infinite alternate;
}

.hero__mark {
  position: absolute;
  width: min(58vw, 720px);
  height: auto;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.22;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.25));
  pointer-events: none;
  user-select: none;
  animation: hero-mark 24s ease-in-out infinite alternate;
}

.hero__star {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  background: rgba(255, 240, 217, 0.55);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  opacity: 0.55;
  animation: hero-star 10s ease-in-out infinite alternate;
}

.hero__star--a {
  top: 18%;
  right: 22%;
  width: 0.85rem;
  height: 0.85rem;
}

.hero__star--b {
  top: 68%;
  right: 12%;
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0.35;
  animation-delay: -3s;
}

.hero__star--c {
  top: 28%;
  right: 48%;
  width: 0.65rem;
  height: 0.65rem;
  opacity: 0.28;
  animation-delay: -6s;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(26, 33, 16, 0.82) 0%, rgba(26, 33, 16, 0.55) 38%, rgba(26, 33, 16, 0.18) 68%, transparent 100%),
    linear-gradient(180deg, rgba(26, 33, 16, 0.2) 0%, transparent 28%, rgba(26, 33, 16, 0.45) 100%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  padding: clamp(4.5rem, 10vh, 6.5rem) 0 clamp(3rem, 7vh, 4.5rem);
}

.hero__content {
  position: relative;
  max-width: 34rem;
}

.hero__brand {
  height: clamp(2.2rem, 4.2vw, 3.35rem);
  width: auto;
  margin-bottom: 1.15rem;
  opacity: 0.98;
  animation: rise 0.9s ease both;
}

.hero h1 {
  max-width: 11ch;
  color: var(--cream);
  font-size: clamp(2.35rem, 5.8vw, 4.75rem);
  letter-spacing: 0.005em;
  animation: rise 1s ease 0.08s both;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f7e7c4;
}

.hero .lede {
  color: rgba(255, 240, 217, 0.86);
  margin: 1rem 0 1.65rem;
  max-width: 32rem;
  animation: rise 1s ease 0.16s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: rise 1s ease 0.24s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.55rem 0 0;
  padding: 0;
  list-style: none;
  animation: rise 1s ease 0.32s both;
}

.badge {
  border: 1px solid rgba(255, 240, 217, 0.32);
  padding: 0.32rem 0.68rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 240, 217, 0.88);
  background: rgba(255, 240, 217, 0.04);
}

/* Desktop: asymmetric composition, richer depth */
@media (min-width: 900px) {
  .hero {
    align-items: stretch;
  }

  .hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    align-items: center;
    min-height: min(92svh, 860px);
    padding-block: 0;
  }

  .hero__content {
    max-width: 36rem;
    padding: 5.5rem 0 5rem;
  }

  .hero__mark {
    width: min(48vw, 780px);
    right: 3%;
    opacity: 0.28;
  }

  .hero__orb {
    width: min(42vw, 580px);
    right: 6%;
  }

  .hero__pattern {
    opacity: 0.07;
    background-size: 320px auto;
  }

  .hero__badges {
    margin-top: 1.85rem;
    gap: 0.6rem;
  }

  .hero .lede {
    font-size: 1.18rem;
  }
}

/* Mobile: compact, intentional first viewport — no oversized mark */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero__layout {
    padding: 4.75rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    min-height: calc(100svh - 0.1px);
  }

  .hero__content {
    max-width: 22rem;
    padding-top: 4.5rem; /* clear subtle top mark */
  }

  .hero__brand {
    height: 1.95rem;
    margin-bottom: 0.85rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    max-width: 10ch;
    line-height: 1.08;
  }

  .hero .lede {
    margin: 0.7rem 0 1.15rem;
    font-size: 0.96rem;
    line-height: 1.45;
    max-width: 30ch;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 2.8rem;
    font-size: 0.92rem;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    margin-top: 1.15rem;
    max-width: 100%;
  }

  .badge {
    text-align: center;
    padding: 0.28rem 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero__mark {
    width: min(58vw, 220px);
    right: auto;
    left: 50%;
    top: 7.5rem;
    transform: translateX(-50%);
    opacity: 0.1;
    filter: none;
    animation: hero-mark-mobile 26s ease-in-out infinite alternate;
  }

  .hero__orb {
    width: min(75vw, 260px);
    right: auto;
    left: 50%;
    top: 9rem;
    translate: -50% -50%;
    opacity: 0.55;
  }

  .hero__star--a {
    top: 6.5rem;
    right: 12%;
    width: 0.7rem;
    height: 0.7rem;
  }

  .hero__star--b,
  .hero__star--c {
    display: none;
  }

  .hero__pattern {
    opacity: 0.03;
    background-size: 180px auto;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(26, 33, 16, 0.35) 0%, rgba(26, 33, 16, 0.2) 40%, rgba(26, 33, 16, 0.78) 100%);
  }

  .hero__glow--warm,
  .hero__glow--soft {
    animation: none;
    opacity: 0.85;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--cream);
  color: var(--olive) !important;
}

.btn--ghost {
  border-color: rgba(255, 240, 217, 0.55);
  color: var(--cream) !important;
  background: transparent;
}

.btn--olive {
  background: var(--olive);
  color: var(--cream) !important;
}

.btn--outline {
  border-color: var(--olive);
  color: var(--olive) !important;
  background: transparent;
}

/* Sections */
section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.band-olive {
  background: var(--olive);
  color: var(--cream);
}

.band-olive .section-head p,
.band-olive .lede,
.band-olive .muted {
  color: rgba(255, 240, 217, 0.78);
}

.band-olive .eyebrow {
  color: rgba(255, 240, 217, 0.7);
}

.band-dim {
  background: var(--cream-dim);
}

.quality {
  background:
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(161, 117, 19, 0.18), transparent 55%),
    linear-gradient(155deg, var(--olive-soft) 0%, var(--olive) 48%, var(--olive-deep) 100%);
  color: var(--cream);
}

.quality .section-head {
  max-width: 40rem;
}

.quality .section-head h2 {
  color: var(--cream);
}

.quality .section-head p {
  color: rgba(255, 240, 217, 0.78);
}

.quality .eyebrow {
  color: rgba(255, 240, 217, 0.72);
}

.quality__inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.quality__list {
  display: grid;
  gap: 0.85rem 1.75rem;
  max-width: 52rem;
}

@media (min-width: 720px) {
  .quality__list {
    grid-template-columns: 1fr 1fr;
  }
}

.quality .checklist li {
  color: rgba(255, 240, 217, 0.92);
}

.quality .checklist li::before {
  background: var(--gold);
}

/* Story */
.story {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.story__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--olive);
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.story__quote {
  margin: 1.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--olive);
}

/* Advantages */
. pros {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  .pros {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .pros {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pros article {
  background: var(--cream);
  padding: 1.5rem 1.35rem 1.6rem;
  min-height: 100%;
}

.band-olive .pros article {
  background: var(--olive-deep);
}

.pros__n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.pros h3 {
  margin-bottom: 0.45rem;
}

.pros p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.band-olive .pros p {
  color: rgba(255, 240, 217, 0.72);
}

/* Macro strip */
.macro-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .macro-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.macro-strip div {
  border-top: 1px solid rgba(255, 240, 217, 0.25);
  padding-top: 1rem;
}

.macro-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
}

.macro-strip span {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 240, 217, 0.7);
}

/* Products — 3 layers: stage → intro+KBJU → passport */
.products {
  display: grid;
  gap: clamp(3.5rem, 7vw, 6rem);
}

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.product__stage {
  line-height: 0;
  background: var(--olive-deep);
  padding: 0;
  overflow: hidden;
}

.product__stage img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  max-height: min(92vh, 960px);
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.product__intro {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem) 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
}

.product__intro-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.product__index {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.product__intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.product__intro > p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.02rem;
}

.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--line);
}

.kbju {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 520px) {
  .kbju {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kbju div { padding-top: 0.15rem; }

.kbju strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

.kbju span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product__passport {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--cream);
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .product__passport {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    align-items: start;
  }
}

.product__passport-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.product__passport-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive-soft);
}

.product__compose {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.product__label {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.product__label .nf-wrap {
  width: 100%;
  max-width: 300px;
  background: var(--white);
  padding: 0.65rem;
  border: 1px solid var(--line);
}

.product__label .nf-name { display: block; }

.product__label-miss {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.product__label-link {
  display: inline-flex;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 57, 28, 0.25);
  width: fit-content;
}

.product__label-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.note {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 46rem;
}

/* Quality / retail / contacts */
.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checklist li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 0.85rem;
}

.contact-box a {
  font-weight: 600;
  text-decoration: none;
}

.contact-box dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-box dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-box dd {
  margin: 0.15rem 0 0;
}

.legal-mini {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.footer__logo {
  height: 1.7rem;
  width: auto;
  margin-bottom: 0.7rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer a {
  text-decoration: none;
  font-weight: 500;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-glow {
  from {
    opacity: 0.85;
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.05) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes hero-orb {
  from {
    opacity: 0.75;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hero-mark {
  from {
    transform: translateY(-50%) scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: translateY(-50%) scale(1.04) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes hero-mark-mobile {
  from {
    transform: translateX(-50%) scale(1);
    opacity: 0.09;
  }
  to {
    transform: translateX(-50%) scale(1.06);
    opacity: 0.13;
  }
}

@keyframes hero-star {
  from {
    opacity: 0.25;
    transform: scale(0.85) rotate(0deg);
  }
  to {
    opacity: 0.7;
    transform: scale(1.15) rotate(18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__glow,
  .hero__orb,
  .hero__mark,
  .hero__star,
  .hero__brand,
  .hero h1,
  .hero .lede,
  .hero__actions,
  .hero__badges,
  .product {
    animation: none !important;
    transition: none !important;
  }
}

/* Legal page */
.page-legal {
  padding: 5rem 0 4rem;
}

.page-legal h1 {
  margin: 0.6rem 0 1.5rem;
}

.page-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.page-legal th,
.page-legal td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.page-legal th {
  width: 34%;
  background: var(--cream-dim);
  font-weight: 600;
}
