/* ===== Milfrow — brand system ===== */
:root {
  /* multiple shades of pink */
  --ink: #2d0f1e;          /* deep plum-black */
  --ink-soft: #6b4356;
  --paper: #fff5f9;        /* blush white */
  --paper-2: #ffe1ee;      /* pale pink */
  --plum: #a01458;         /* berry */
  --plum-2: #d21f74;       /* deep pink */
  --coral: #ff4fa3;        /* hot pink */
  --coral-2: #ff9ecb;      /* light rose */
  --lime: #ffc2e0;         /* soft pink accent (on dark) */
  --cream: #fff5fa;
  --line: rgba(45, 15, 30, 0.12);
  --shadow: 0 24px 60px -24px rgba(150, 20, 85, 0.45);
  --shadow-plush: 0 32px 64px -28px rgba(210, 31, 116, 0.35), 0 8px 24px -8px rgba(255, 159, 203, 0.4);
  --plush-gradient: linear-gradient(165deg, var(--cream) 0%, var(--paper-2) 45%, #ffd6eb 100%);
  --radius: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 158, 203, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 192, 224, 0.15), transparent);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
section { position: relative; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-3px); background: var(--plum); border-color: var(--plum); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 245, 249, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}
.nav__logo-k {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum-2);
}
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8rem 1.5rem 3rem;
}
.hero__bg {
  position: absolute;
  inset: -20% -40% auto auto;
  width: 72vw; height: 72vw;
  background:
    radial-gradient(circle at 70% 25%, var(--coral-2), transparent 55%),
    radial-gradient(circle at 30% 35%, var(--coral), transparent 55%),
    radial-gradient(circle at 45% 70%, var(--plum-2), var(--plum) 55%, transparent 72%);
  filter: blur(10px);
  opacity: 0.4;
  z-index: -1;
  border-radius: 50%;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-2);
  margin-bottom: 1.2rem;
}
.eyebrow--center { display: block; text-align: center; }
.hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, var(--plum-2), var(--coral));
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-plush);
}
.hero__welcome {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--plum-2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero__welcome span {
  font-style: normal;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--plum);
}
.hero__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.9;
  font-size: clamp(3rem, 8vw, 6.3rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--plum);
}
.hero__sub {
  margin: 1.6rem 0 2rem;
  max-width: 46ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--plum);
}
.hero__stats span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__figures {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  min-height: 480px;
}
.hero__figures .figure-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-plush);
}
.hero__figures .figure-card:nth-child(1) { transform: translateY(24px) rotate(-4deg); }
.hero__figures .figure-card:nth-child(2) { transform: translateY(-18px) rotate(3deg); z-index: 2; }
.hero__figures .figure-card:nth-child(3) { transform: translateY(30px) rotate(-2deg); }

.figure-card {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.figure-card svg,
.figure-card img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Marquee ===== */
.marquee {
  background: var(--ink);
  color: var(--lime);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 2px solid var(--ink);
}
.marquee__track {
  display: inline-flex;
  gap: 1.6rem;
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  animation: scroll 18s linear infinite;
}
.marquee__track span { padding-right: 1.6rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===== Brand story ===== */
.story {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}
.story__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.story__intro h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--plum);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.story__tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--plum-2);
  max-width: 36ch;
  margin: 0 auto;
}
.story__chapter {
  background: var(--plush-gradient);
  border: 1px solid rgba(255, 192, 224, 0.5);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.8rem 2.4rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-plush);
}
.story__chapter--alt {
  background: linear-gradient(165deg, #fff0f7 0%, var(--paper-2) 50%, var(--cream) 100%);
}
.story__chapter--invitation {
  text-align: center;
  background: linear-gradient(145deg, var(--plum) 0%, var(--plum-2) 40%, var(--coral) 100%);
  border: none;
  color: var(--cream);
  padding: 3.2rem 2.4rem;
}
.story__chapter--invitation .story__label { color: var(--lime); }
.story__chapter--invitation h3 { color: var(--cream); }
.story__chapter--invitation .story__prose p { color: rgba(255, 245, 250, 0.92); }
.story__chapter--invitation .story__prose em { color: var(--lime); font-style: italic; }
.story__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.8rem;
}
.story__chapter h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.story__prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.story__prose p:last-child { margin-bottom: 0; }
.story__prose em { color: var(--plum-2); font-style: italic; }
.story__prose strong { color: var(--plum); font-weight: 600; }
.story__quote {
  margin: 2.5rem 0;
  padding: 2rem 2.4rem;
  background: var(--cream);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-plush);
}
.story__quote p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.5;
  color: var(--plum);
  margin: 0;
}
.story__quote--inline {
  margin: 1.5rem 0;
  background: rgba(255, 245, 250, 0.7);
  border-left-color: var(--plum-2);
}
.story__signoff {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream);
  margin: 2rem 0 1.5rem;
}
.story__cta {
  background: var(--cream);
  color: var(--plum);
  border-color: var(--cream);
}
.story__cta:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

/* ===== Section head ===== */
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0.4rem 0 1rem;
}
.section-lead { color: var(--ink-soft); font-size: 1.05rem; }
.section-head--light h2, .section-head--light .eyebrow { color: var(--cream); }
.section-head--light .eyebrow { color: var(--lime); }

/* ===== Collection cards ===== */
.collection { max-width: var(--maxw); margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.heart {
  display: inline-block;
  margin-left: 0.12em;
  color: var(--coral);
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  animation: heartbeat 1.6s var(--ease) infinite;
}
.heart--sm { font-size: 0.62em; vertical-align: super; margin-left: 0.06em; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-plush);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid rgba(255, 192, 224, 0.35);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 36px 72px -28px rgba(210, 31, 116, 0.4); }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2); }
.card__media svg,
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(20, 16, 15, 0.9);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}
.card__body { padding: 1.3rem 1.4rem 1.6rem; }
.card__body h3 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.card__body p { font-size: 0.9rem; color: var(--ink-soft); }
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.card__price { font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; letter-spacing: 0.04em; }
.card__support {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--line);
}

/* ===== Values ===== */
.values {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 1.5rem;
}
.values__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value {
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.value:hover { background: rgba(255, 250, 243, 0.05); transform: translateY(-6px); }
.value__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 1rem;
}
.value h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value p { font-size: 0.92rem; color: rgba(255, 250, 243, 0.75); }

/* ===== Fit ===== */
.fit {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}
.fit__inner .section-lead { margin: 0 auto 2rem; max-width: 42ch; }
.fit h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0.4rem 0 1rem;
}
.fit__levels { list-style: none; margin-top: 2rem; display: grid; gap: 1.2rem; text-align: left; }
.fit__levels li { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; align-items: start; }
.fit__levels p { color: var(--ink-soft); font-size: 0.95rem; }
.chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  text-align: center;
}
.chip--low { background: var(--paper-2); color: var(--ink); }
.chip--mid { background: var(--coral-2); color: var(--ink); }
.chip--high { background: var(--plum); color: var(--cream); }

/* ===== Fabric & materials ===== */
.fabric {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}
.fabric__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.fabric__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fabric__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fabric__icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 1rem;
}
.fabric__card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; color: var(--plum); }
.fabric__card p { font-size: 0.92rem; color: var(--ink-soft); }
.fabric__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, var(--paper-2), var(--coral-2));
  border-radius: var(--radius);
}
.fabric__specs li { display: flex; flex-direction: column; }
.fabric__specs strong { font-size: 1rem; color: var(--ink); }
.fabric__specs span { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* ===== Launch ===== */
.launch {
  background: linear-gradient(135deg, var(--plum), var(--coral));
  color: var(--cream);
  padding: 6rem 1.5rem;
}
.launch__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.launch__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.launch__sub { font-size: 1.05rem; opacity: 0.92; margin-bottom: 2rem; }
.signup {
  display: flex;
  gap: 0.6rem;
  background: var(--cream);
  padding: 0.5rem;
  border-radius: 100px;
  max-width: 480px;
  margin: 0 auto;
}
.signup input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.signup .btn { white-space: nowrap; }
.signup .btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.signup__msg { margin-top: 1rem; font-weight: 600; min-height: 1.2rem; }
.launch__press {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 250, 243, 0.2);
  font-size: 0.92rem;
  opacity: 0.88;
  line-height: 1.5;
}
.launch__press a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.launch__press a:hover { opacity: 1; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--cream); padding: 4rem 1.5rem 2rem; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2rem;
}
.footer__logo { font-family: "Anton", sans-serif; font-size: 2rem; letter-spacing: 0.05em; display: flex; flex-direction: column; line-height: 0.92; }
.footer__logo-k { font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--lime); }
.footer__brand p { color: rgba(255, 250, 243, 0.6); margin-top: 0.4rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h4 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; color: var(--lime); }
.footer__cols a { display: block; font-size: 0.92rem; color: rgba(255, 250, 243, 0.75); padding: 0.25rem 0; transition: color 0.2s; }
.footer__cols a:hover { color: var(--cream); }
.footer__legal {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 250, 243, 0.14);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 250, 243, 0.5);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero__figures { min-height: 380px; margin-top: 1rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .fit { grid-template-columns: 1fr; }
  .fabric__grid { grid-template-columns: repeat(2, 1fr); }
  .fabric__specs { grid-template-columns: repeat(2, 1fr); }
  .story__chapter { padding: 2rem 1.6rem; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  .cards, .values__grid, .fabric__grid, .fabric__specs { grid-template-columns: 1fr; }
  .story__quote { padding: 1.5rem 1.4rem; }
  .hero__stats { gap: 1.4rem; }
  .signup { flex-direction: column; border-radius: 22px; }
  .signup .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Legal pages ===== */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}
.legal h1 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--plum);
  margin: 0.4rem 0 0.5rem;
  line-height: 1.15;
}
.legal__updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.legal__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.legal section { margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.6rem;
}
.legal h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}
.legal p, .legal li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
.legal ul {
  margin: 0.5rem 0 1rem 1.2rem;
}
.legal__list {
  margin: 0.5rem 0 1rem 1.2rem;
}
.legal__list li {
  margin-bottom: 0.65rem;
}
.legal a {
  color: var(--plum-2);
  text-decoration: underline;
}
.legal a:hover { color: var(--plum); }
.legal__back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal__back a {
  font-weight: 600;
  text-decoration: none;
  color: var(--plum);
}
.legal__back a:hover { text-decoration: underline; }
.footer--minimal { padding: 2rem 1.5rem; }
.footer--minimal .footer__legal { margin: 0; padding-top: 0; border-top: none; }
.footer__legal a { color: rgba(255, 250, 243, 0.75); }
.footer__legal a:hover { color: var(--cream); }
