/* ==========================================================================
   Sugar Baby Canada — Static Website Stylesheet
   Soft Seduction / Sugar Baby Lifestyle design system
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --berry: #C94F73;          /* primary CTA, highlights */
  --berry-dark: #B03A5E;     /* berry hover / pressed */
  --berry-deep: #8E2F4C;     /* deep berry for gradients */
  --berry-tint: #F7DDE6;     /* soft berry wash */
  --rose: #E8A1B2;           /* soft rose accent */
  --rose-soft: #F4C9D4;      /* lighter rose */
  --blush: #F4D9DC;          /* blush nude */
  --blush-soft: #FAE9EC;     /* pale blush */
  --cream: #FFF8F3;          /* cream background */
  --warm-white: #FFFCFA;     /* warm white background */
  --cocoa: #4A3538;          /* headings / primary text */
  --mocha: #765C60;          /* secondary text */
  --mocha-soft: #9C8489;     /* tertiary text */
  --champagne: #E7C9A5;      /* fine borders / premium detail */
  --champagne-soft: #F2E3CE;

  /* Intimate (dark) sections — deep muted berry-plum, not black */
  --plum: #43222E;
  --plum-deep: #2E151E;
  --plum-wash: #5A2C3C;

  /* Derived */
  --bg: var(--cream);
  --ink: var(--cocoa);
  --ink-soft: var(--mocha);
  --line: #EFE4DF;           /* hairline borders on light bg */
  --line-strong: #E6D6D2;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-2xl: 34px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(74, 53, 56, 0.06);
  --shadow-md: 0 12px 30px rgba(74, 53, 56, 0.10);
  --shadow-lg: 0 24px 55px rgba(74, 53, 56, 0.16);
  --shadow-berry: 0 16px 40px rgba(201, 79, 115, 0.30);

  /* Type */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Lato", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-ui: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: var(--font-serif);
  --font-body: var(--font-ui);

  /* Layout */
  /* Max widths include the responsive gutters: 1320px - 2 × 40px = 1240px content. */
  --container: 1320px;
  --container-wide: 1320px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--cocoa); margin: 0 0 0.5em; letter-spacing: normal; }
h1 { font-size: clamp(2.75rem, 4.7vw, 3.75rem); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(2rem, 3vw, 2.25rem); font-weight: 500; line-height: 1.111; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.333; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }

::selection { background: var(--berry); color: #fff; }

:focus-visible {
  outline: 2px solid var(--berry);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: 12px 18px; border-radius: var(--radius-pill);
  background: var(--warm-white); color: var(--berry-deep); font-weight: 700;
  box-shadow: var(--shadow-md); transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* --------------------------------------------------------------------------
   3. Layout utilities
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(64px, 9vw, 118px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }

.section--cream { background: var(--cream); }
.section--warm { background: var(--warm-white); }
.section--blush { background: var(--blush-soft); }
.section--rose { background: linear-gradient(135deg, var(--blush-soft), var(--rose-soft)); }
.section--plum { background: linear-gradient(150deg, var(--plum) 0%, var(--plum-deep) 100%); color: #fff; }

.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }

.split { display: grid; gap: clamp(32px, 6vw, 72px); grid-template-columns: 1fr 1fr; align-items: center; }

.center { text-align: center; }
.section-action { margin-top: 40px; }
.mx-auto { margin-inline: auto; }
.maxw-sm { max-width: 640px; }
.maxw-md { max-width: 760px; }
.maxw-lg { max-width: 880px; }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.serif { font-family: var(--font-serif); }
.text-berry { color: var(--berry); }
.text-mocha { color: var(--mocha); }
.text-rose { color: var(--rose); }
.text-champagne { color: var(--champagne); }
.text-white { color: #fff; }
.text-small { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.7; color: var(--mocha); }
.lead--light { color: rgba(255, 255, 255, 0.72); }

/* Eyebrow / section label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--berry);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--champagne); }
.eyebrow--light { color: var(--rose); }
.eyebrow--center::before, .eyebrow--center::after { display: none; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 16px; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  min-height: 44px;
  touch-action: manipulation;
}
.btn .icon { width: 17px; height: 17px; }

.btn-primary { background: var(--berry); color: #fff; box-shadow: var(--shadow-berry); }
.btn-primary:hover { background: var(--berry-dark); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(201, 79, 115, 0.4); }

.btn-dark { background: var(--cocoa); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: #5c4246; transform: translateY(-2px); }

.btn-outline { border-color: var(--berry); color: var(--berry); background: transparent; }
.btn-outline:hover { background: var(--berry); color: #fff; transform: translateY(-2px); }

.btn-ghost { color: var(--mocha); background: transparent; }
.btn-ghost:hover { color: var(--berry); background: rgba(201, 79, 115, 0.07); }

.btn-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-gold { background: var(--champagne); color: var(--cocoa); box-shadow: var(--shadow-md); }
.btn-gold:hover { background: #dbbd8c; transform: translateY(-2px); }

.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 16px;
  background: rgba(255,252,250,.96);
  border-bottom: 1px solid rgba(239,228,223,.72);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled {
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(74, 53, 56, 0.08);
  padding-block: 12px;
}
.site-header:not(.is-scrolled) .brand-name { color: var(--cocoa); }
.site-header:not(.is-scrolled) .main-nav a,
.site-header:not(.is-scrolled) .btn-ghost { color: var(--mocha); }
.site-header:not(.is-scrolled) .main-nav a:hover,
.site-header:not(.is-scrolled) .main-nav a.is-active,
.site-header:not(.is-scrolled) .brand-name em { color: var(--berry); }
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--cocoa); }
.site-header:not(.is-scrolled) .nav-toggle { background: var(--blush-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--berry), var(--rose));
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-mark .icon { width: 18px; height: 18px; }
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.28rem; color: var(--cocoa); line-height: 1; }
.brand-name em { font-style: normal; color: var(--berry); }
.brand-name small { font-size: 0.72rem; font-weight: 400; color: var(--mocha-soft); margin-left: 2px; }

.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); }
.main-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--mocha); position: relative;
  padding-block: 4px; transition: color .2s ease;
}
.main-nav a:hover { color: var(--berry); }
.main-nav a.is-active { color: var(--berry); font-weight: 700; }
.main-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--berry); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 0; border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cocoa); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--warm-white); border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 14px var(--gutter) 26px;
  max-height: calc(100dvh - 70px); overflow-y: auto; overscroll-behavior: contain;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 2px; font-size: 1rem; font-weight: 600; color: var(--cocoa);
  border-bottom: 1px solid var(--line);
  min-height: 48px;
}
.mobile-nav a:hover { color: var(--berry); }
.mobile-nav .mobile-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: min(100svh, 940px);
  display: flex; align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,248,243,1) 0%, rgba(255,248,243,.98) 30%, rgba(255,248,243,.84) 46%, rgba(255,248,243,.18) 72%, rgba(255,248,243,.08) 100%),
    linear-gradient(0deg, rgba(255,248,243,.9) 0%, rgba(255,248,243,.3) 28%, transparent 58%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(132px, 17vh, 184px) clamp(64px, 9vh, 96px); }
.hero__content { max-width: 590px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--berry-tint); border: 1px solid rgba(201,79,115,.1);
  color: var(--berry); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 30px;
}
.hero__badge .icon { width: 14px; height: 14px; }

.hero h1 { color: var(--cocoa); margin-bottom: 26px; font-size: clamp(3rem, 4.7vw, 3.85rem); font-weight: 500; line-height: 1; letter-spacing: -.025em; }
.hero__title > span { display: block; }
.hero__title-intro { margin-bottom: .08em; }
.hero__title-accent { position: relative; width: max-content; max-width: 100%; color: var(--berry); font-size: .86em; font-style: italic; font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.hero__title-accent::after { content: ""; position: absolute; right: .04em; bottom: -.08em; width: 1.55em; height: 1px; background: linear-gradient(90deg, rgba(201,79,115,0), rgba(201,79,115,.5)); }
.hero__title-accent i { color: var(--cocoa); font-size: .7em; font-style: normal; font-weight: 400; vertical-align: .12em; }
.hero__title-tail { margin-top: .06em; }
.hero__copy { color: var(--mocha); font-size: clamp(1.02rem, 1.45vw, 1.16rem); line-height: 1.68; max-width: 560px; margin-bottom: 30px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 0; }

/* Floating stat card */
.hero__stat {
  position: absolute; right: clamp(20px, 5vw, 64px); bottom: clamp(28px, 7vh, 60px); z-index: 3;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(10px);
  border-radius: var(--radius-xl); padding: 22px 24px; color: #fff; display: none;
}
.hero__stat .num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--rose); line-height: 1; }
.hero__stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.hero__stat .stars { margin-top: 12px; }
.hero__stat .sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 6px; }

@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.5; transform: scale(1.4);} }

/* --------------------------------------------------------------------------
   8. Stars & badges
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 3px; color: var(--berry); }
.stars .icon { width: 14px; height: 14px; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.badge--verified { background: rgba(16, 122, 71, 0.10); color: #1d7a4e; }
.badge--verified .icon { width: 14px; height: 14px; color: #1d9a5f; }
.badge--solid { background: rgba(74,53,56,0.82); color: #fff; }
.badge--berry { background: rgba(201,79,115,0.82); color: #fff; }
.badge--champagne { background: var(--champagne); color: var(--cocoa); }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blush-soft); color: var(--berry-deep);
  font-size: 0.76rem; font-weight: 600; padding: 6px 13px; border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   9. Icon system
   -------------------------------------------------------------------------- */
.icon { width: 20px; height: 20px; flex: none; vertical-align: -0.15em; }
.icon-stroke { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   10. Role stories / feature cards
   -------------------------------------------------------------------------- */
.role-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 15%, rgba(232,161,178,.14), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--warm-white));
}
.role-showcase .section-head {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(156px, 14vw, 186px);
}
.role-showcase .section-head::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: calc(100% + 12px);
  width: clamp(430px, 62vw, 760px);
  height: clamp(106px, 12vw, 148px);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: .52;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 760 148' fill='none'%3E%3Cpath d='M10 76C112 58 225 58 348 76M412 76c123-18 236-18 338 0' stroke='%23e8a1b2' stroke-width='1.35' stroke-linecap='round'/%3E%3Cpath d='M10 96c110-14 224-12 338-3M412 93c114-9 228-11 338 3' stroke='%23d4ac67' stroke-width='1.15' stroke-linecap='round'/%3E%3Crect x='356' y='62' width='48' height='46' rx='5' stroke='%23cf4b74' stroke-width='1.4'/%3E%3Crect x='349' y='52' width='62' height='13' rx='3' stroke='%23cf4b74' stroke-width='1.4'/%3E%3Cpath d='M380 52v56' stroke='%23d4ac67' stroke-width='1.2'/%3E%3Cpath d='M379 51c-15-1-24-8-21-16 4-9 18-3 21 16Zm2 0c15-1 24-8 21-16-4-9-18-3-21 16Z' stroke='%23cf4b74' stroke-width='1.4' stroke-linejoin='round'/%3E%3Cpath d='M368 53c-5 4-8 8-9 13M392 53c5 4 8 8 9 13' stroke='%23d4ac67' stroke-width='1.1' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: role-gift-line-breathe 8s ease-in-out infinite alternate;
}
@keyframes role-gift-line-breathe {
  0% { opacity: .36; }
  55% { opacity: .66; }
  100% { opacity: .48; }
}
.role-showcase__stack {
  display: grid;
  gap: clamp(56px, 7vw, 92px);
}
.role-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  min-height: 520px;
  background: transparent;
}
.role-story--daddy {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}
.role-story + .role-story::before {
  content: "";
  position: absolute;
  top: calc(clamp(56px, 7vw, 92px) / -2);
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line-strong);
}
.role-story + .role-story::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(clamp(56px, 7vw, 92px) / -2 - 4px);
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--cream);
  border: 1px solid var(--rose);
  transform: translateX(-50%) rotate(45deg);
}
.role-story--baby .role-story__media { order: 2; }
.role-story--baby .role-story__content { order: 1; }
.role-story__media { position: relative; min-height: 520px; overflow: hidden; background: transparent; }
.role-story__media::before,
.role-story__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: clamp(52px, 5vw, 78px);
  height: clamp(52px, 5vw, 78px);
  pointer-events: none;
  opacity: .82;
}
.role-story__media::before {
  top: 22px;
  left: 22px;
  border-top: 1px solid rgba(255,255,255,.84);
  border-left: 1px solid rgba(255,255,255,.84);
}
.role-story__media::after {
  right: 22px;
  bottom: 22px;
  border-right: 1px solid rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.72);
}
.role-story__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .8s ease;
}
.role-story:hover .role-story__media img { transform: scale(1.025); }
.role-story__content {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: clamp(42px, 5vw, 68px);
  background: transparent;
}
.role-story--daddy .role-story__content {
  padding-inline: clamp(32px, 3.5vw, 44px);
}
.role-story__content .eyebrow { margin-bottom: 14px; }
.role-story__content .eyebrow::before { width: 52px; }
.role-story__content .eyebrow::after { width: 14px; background: var(--rose); }
.role-showcase .section-head h2 { font-size: clamp(2.35rem, 4vw, 3rem); line-height: 1.25; }
.role-story__heading { width: 100%; }
.role-story__content h3 { margin-bottom: 18px; font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 500; line-height: 1.25; text-wrap: balance; }
.role-story--daddy .role-story__content h3 { text-wrap: wrap; }
.role-story__content h3.role-story__kicker {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--berry);
  text-wrap: wrap;
}
.role-story__content h3.role-story__kicker::before {
  width: 52px;
  height: 1px;
  margin: 0;
  background: var(--champagne);
}
.role-story__content h3.role-story__kicker::after {
  width: 14px;
  height: 1px;
  margin: 0;
  background: var(--rose);
}
.role-story__accent {
  color: var(--berry);
  font-style: italic;
  font-weight: 500;
}
.role-story__content h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 20px;
  background: var(--champagne);
}
.role-story__content > p { max-width: 500px; margin-bottom: 24px; color: var(--mocha); font-size: .98rem; line-height: 1.72; }
.role-story__benefits { display: grid; gap: 11px; margin: 0 0 28px; padding: 0; }
.role-story__benefits li {
  display: flex; align-items: center; gap: 12px; list-style: none;
  color: var(--cocoa); font-size: .9rem; font-weight: 500;
}
.role-story__benefits li > span {
  width: 31px; height: 31px; flex: none; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--berry-tint); color: var(--berry-deep);
}
.role-story__benefits .icon { width: 14px; height: 14px; }
.role-story__content .btn { margin-top: auto; }

.feature-card {
  padding: 30px; border-radius: var(--radius-xl); background: var(--warm-white);
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--rose-soft); }
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--berry-tint), var(--blush-soft));
  color: var(--berry); display: inline-flex; align-items: center; justify-content: center;
}
.feature-card__icon .icon { width: 20px; height: 20px; }
.feature-card h3 { margin-bottom: 8px; font-family: var(--font-ui); font-size: 1rem; font-weight: 600; line-height: 1.5; }
.feature-card p { color: var(--mocha); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   11. Steps (how it works)
   -------------------------------------------------------------------------- */
.steps { position: relative; }
.steps__line { position: absolute; top: 46px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent); display: none; }
.step { text-align: center; position: relative; }
.step__num {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--berry), var(--rose));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; box-shadow: var(--shadow-berry);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--mocha); font-size: 0.92rem; margin: 0; }
.section--plum .step h3 { color: #fff; }
.section--plum .step p { color: rgba(255,255,255,0.62); }

/* Homepage process editorial */
.process-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 148px) 0 clamp(92px, 8vw, 132px);
  background:
    radial-gradient(circle at 8% 100%, rgba(201,79,115,.055), transparent 28%),
    #fff8f3;
}
.process-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48) 50%, transparent);
}
.process-showcase > .container { max-width: var(--container); }
.process-showcase__inner { position: relative; z-index: 1; }
.process-showcase__head {
  max-width: 680px;
  margin: 0 auto clamp(70px, 7vw, 104px);
  text-align: center;
}
.process-showcase__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 15px;
  border-radius: 999px;
  background: rgba(201,79,115,.13);
  color: var(--berry-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.process-showcase__head h2 {
  margin: 18px 0 8px;
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.111;
}
.process-showcase__head p {
  margin: 0;
  color: var(--mocha);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
}
.process-showcase__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 76px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-showcase__step { min-width: 0; text-align: left; }
.process-showcase__number {
  display: block;
  margin: 0 0 18px;
  color: rgba(201,79,115,.17);
  font-family: var(--font-display);
  font-size: clamp(5rem, 6.3vw, 7.25rem);
  font-weight: 600;
  line-height: .72;
  letter-spacing: -.055em;
}
.process-showcase__step h3 {
  margin: 0 0 13px;
  color: var(--cocoa);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
}
.process-showcase__step p {
  max-width: 290px;
  margin: 0;
  color: var(--mocha);
  font-size: .94rem;
  line-height: 1.7;
}
.process-showcase__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(58px, 6vw, 88px);
}
.process-showcase__action .btn { min-height: 52px; padding-inline: 27px; }

/* --------------------------------------------------------------------------
   12. Profile cards
   -------------------------------------------------------------------------- */
.profile-card {
  background: var(--warm-white); border-radius: var(--radius-xl); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.profile-card__media { position: relative; height: 300px; background: var(--blush-soft); overflow: hidden; }
.profile-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s ease; }
.profile-card:hover .profile-card__media img { transform: scale(1.06); }
.profile-card__verified {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-pill); padding: 5px 11px;
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--cocoa);
  box-shadow: var(--shadow-sm);
}
.profile-card__type {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 0.74rem; font-weight: 600; padding: 6px 13px; border-radius: var(--radius-pill); color: #fff;
  backdrop-filter: blur(4px);
}
.profile-card__type--daddy { background: rgba(74,53,56,0.82); }
.profile-card__type--baby { background: rgba(201,79,115,0.85); }
.profile-card__body { padding: 22px; display: flex; flex: 1; flex-direction: column; }
.profile-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.profile-card__top h3 { font-size: 1.25rem; margin: 0; }
.profile-card__loc { display: flex; align-items: center; gap: 5px; color: var(--mocha-soft); font-size: 0.8rem; margin-top: 4px; }
.profile-card__loc .icon { width: 13px; height: 13px; }
.profile-card__bio { color: var(--mocha); font-size: 0.9rem; margin: 0 0 18px; }
.profile-card .btn { width: 100%; margin-top: auto; }

/* --------------------------------------------------------------------------
   13. City cards
   -------------------------------------------------------------------------- */
.city-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 260px;
  background: var(--plum); display: block;
}
.city-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, opacity .5s ease; opacity: 0.62; }
.city-card:hover img { transform: scale(1.06); opacity: 0.8; }
.city-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,21,30,0.92), rgba(46,21,30,0.15) 60%, transparent); }
.city-card__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; }
.city-card__body h3 { color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 1.5rem; font-weight: 600; line-height: 1.333; }
.city-card__body h3 .icon { width: 15px; height: 15px; color: var(--rose); }
.city-card__body p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; }
.city-card__hover {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--champagne); color: var(--cocoa); font-size: 0.74rem; font-weight: 700;
  padding: 7px 13px; border-radius: var(--radius-pill); opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.city-card:hover .city-card__hover { opacity: 1; transform: translateY(0); }

.cities-showcase { overflow: hidden; }
.city-grid {
  position: relative;
  isolation: isolate;
}
.city-grid::before,
.city-grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(280px, 33vw, 430px);
  height: clamp(100px, 12vw, 156px);
  pointer-events: none;
  opacity: .5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 430 156'%3E%3Cpath d='M4 120C55 24 124 140 194 72c58-56 116 38 232-55' fill='none' stroke='%23cf4b74' stroke-opacity='.42' stroke-width='1.35' stroke-linecap='round'/%3E%3Cpath d='M28 151c61-77 123-11 195-58 68-45 120-32 188-82' fill='none' stroke='%23d4ac67' stroke-opacity='.48' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M88 139c43-42 87-12 131-35 55-29 97-19 151-58' fill='none' stroke='%23e8a1b2' stroke-opacity='.25' stroke-width='.85' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: city-line-breathe 7s ease-in-out infinite alternate;
}
.city-grid::before {
  top: -86px;
  left: 0;
}
.city-grid::after {
  right: 0;
  bottom: -92px;
  transform: rotate(180deg);
  animation-delay: -3.5s;
}
@keyframes city-line-breathe {
  0% { opacity: .38; }
  55% { opacity: .62; }
  100% { opacity: .48; }
}

/* --------------------------------------------------------------------------
   14. Lifestyle image cards
   -------------------------------------------------------------------------- */
.lifestyle-grid {
  position: relative;
  isolation: isolate;
}
.lifestyle-grid::before,
.lifestyle-grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(190px, 20vw, 260px);
  height: clamp(88px, 9vw, 120px);
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 120'%3E%3Cpath d='M6 94C31 42 68 28 108 56c37 26 64 36 110-4 16-14 27-24 36-40' fill='none' stroke='%23cf4b74' stroke-opacity='.34' stroke-width='1.35' stroke-linecap='round'/%3E%3Cpath d='M28 112c27-34 55-44 88-37 38 9 65-5 90-33' fill='none' stroke='%23d4ac67' stroke-opacity='.42' stroke-width='1.1' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.lifestyle-grid::before {
  top: -58px;
  left: 0;
}
.lifestyle-grid::after {
  right: 0;
  bottom: -58px;
  transform: rotate(180deg);
}
.lifestyle-card {
  position: relative; border-radius: var(--radius-2xl); overflow: hidden; min-height: 340px;
  background: var(--blush-soft); display: flex; align-items: flex-end;
}
.lifestyle-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 1; transition: transform .7s ease;
}
.lifestyle-card:hover img { transform: scale(1.045); }
.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,31,.68) 0%, rgba(42,26,31,.38) 34%, rgba(42,26,31,.08) 72%, transparent 100%);
}
.lifestyle-card__body { position: relative; z-index: 3; padding: clamp(30px, 3vw, 40px); }
.lifestyle-card__body h3 { color: #fff; margin-bottom: 9px; text-shadow: 0 1px 16px rgba(26,15,18,.26); }
.lifestyle-card__body p { max-width: 620px; color: rgba(255,255,255,.86); font-size: 0.9rem; margin: 0; text-shadow: 0 1px 12px rgba(26,15,18,.24); }

/* --------------------------------------------------------------------------
   15. Wishlist cards
   -------------------------------------------------------------------------- */
.wishlist-card {
  background: var(--warm-white); border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease; position: relative;
}
.wishlist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wishlist-card__media { position: relative; height: 250px; overflow: hidden; background: var(--blush-soft); }
.wishlist-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.wishlist-card:hover .wishlist-card__media img { transform: scale(1.06); }
.wishlist-card__heart {
  position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 0; display: inline-flex; align-items: center; justify-content: center;
  color: var(--berry); box-shadow: var(--shadow-sm); transition: transform .2s ease, background .2s ease;
}
.wishlist-card__heart:hover { transform: scale(1.1); }
.wishlist-card__heart .icon { width: 19px; height: 19px; }
.wishlist-card__heart.is-saved { background: var(--berry); color: #fff; }
.wishlist-card__body { padding: 20px 22px 22px; }
.wishlist-card__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--berry); margin-bottom: 6px; }
.wishlist-card__body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.wishlist-card__body p { color: var(--mocha); font-size: 0.88rem; margin: 0; }
.wishlist-showcase { position: relative; overflow: hidden; }
.wishlist-showcase .wishlist-card__heart { pointer-events: none; }

/* --------------------------------------------------------------------------
   16. Editorial / article cards
   -------------------------------------------------------------------------- */
.article-card { display: block; background: var(--warm-white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-card__media { height: 220px; overflow: hidden; background: var(--blush-soft); }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__body { padding: 22px; }
.article-card__meta { display: flex; align-items: center; gap: 10px; font-size: 0.74rem; color: var(--mocha-soft); margin-bottom: 10px; }
.article-card__meta .cat { color: var(--berry); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.article-card__body h3 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 8px; }
.article-card__body p { color: var(--mocha); font-size: 0.88rem; margin: 0 0 14px; }
.article-card__more { font-size: 0.82rem; font-weight: 700; color: var(--berry); display: inline-flex; align-items: center; gap: 6px; }
.article-card__more .icon { width: 14px; height: 14px; }

/* Featured article (large) */
.article-featured { display: grid; grid-template-columns: 1.05fr 1fr; border-radius: var(--radius-2xl); overflow: hidden; background: var(--warm-white); border: 1px solid var(--line); }
.article-featured__media { min-height: 380px; background: var(--blush-soft); }
.article-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.article-featured__body { padding: clamp(26px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }

/* --------------------------------------------------------------------------
   17. Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background: var(--warm-white); border-radius: var(--radius-xl); padding: 30px;
  border: 1px solid var(--line); transition: box-shadow .3s ease;
}
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial .stars { margin-bottom: 18px; }
.testimonial__quote { color: var(--mocha); font-family: var(--font-serif); font-style: italic; font-size: 0.98rem; line-height: 1.7; margin-bottom: 22px; }
.testimonial__person { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  object-fit: cover; border: 2px solid var(--warm-white); box-shadow: 0 0 0 1px var(--rose-soft);
}
.testimonial__person .name { font-weight: 700; color: var(--cocoa); font-family: var(--font-serif); }
.testimonial__person .loc { font-size: 0.78rem; color: var(--mocha-soft); display: flex; align-items: center; gap: 4px; }
.testimonial__person .loc .icon { width: 12px; height: 12px; }

/* --------------------------------------------------------------------------
   18. Trust / safety list
   -------------------------------------------------------------------------- */
.trust-item { display: flex; gap: 16px; }
.trust-item__icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--berry-tint), var(--blush-soft)); color: var(--berry);
  display: flex; align-items: center; justify-content: center;
}
.trust-item__icon .icon { width: 22px; height: 22px; }
.trust-item h4 { margin-bottom: 4px; }
.trust-item p { color: var(--mocha); font-size: 0.9rem; margin: 0; }

.safety-float {
  position: absolute; background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border-radius: var(--radius-lg); padding: 16px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px;
}
.safety-float__icon { width: 40px; height: 40px; border-radius: 50%; background: #1d9a5f; color: #fff; display: flex; align-items: center; justify-content: center; }
.safety-float__icon .icon { width: 18px; height: 18px; }
.safety-float .t { font-family: var(--font-serif); font-weight: 700; font-size: 0.86rem; color: var(--cocoa); }
.safety-float .s { font-size: 0.74rem; color: var(--mocha-soft); }

.safety-showcase {
  background:
    radial-gradient(circle at 10% 20%, rgba(232,161,178,.18), transparent 30%),
    var(--warm-white);
  padding-block: clamp(72px, 7vw, 104px);
}
.safety-showcase > .container { max-width: var(--container); }
.safety-panel {
  position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
  min-height: 520px; overflow: hidden; border: 1px solid rgba(201,79,115,.12);
  border-radius: clamp(26px, 3vw, 36px); background: linear-gradient(135deg, #fbefeb 0%, #f7dddf 100%);
  box-shadow: 0 24px 64px rgba(74,53,56,.09);
}
.safety-panel::before {
  content: ""; position: absolute; left: -90px; bottom: -110px; width: 300px; height: 300px;
  border: 1px solid rgba(201,79,115,.18); border-radius: 50%; pointer-events: none;
}
.safety-panel__content {
  position: relative; z-index: 2; padding: clamp(48px, 5vw, 72px) clamp(44px, 5vw, 68px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.safety-panel__content .eyebrow { margin-bottom: 13px; }
.safety-panel__content h2 { font-size: clamp(2rem, 3vw, 2.25rem); font-weight: 500; line-height: 1.111; margin-bottom: 16px; }
.safety-panel__content .lead { max-width: 500px; margin-bottom: 26px; color: #664c51; font-size: 1rem; }
.safety-panel__guides {
  display: flex; align-items: center;
  padding: clamp(44px, 4.5vw, 64px) clamp(42px, 4.5vw, 62px) clamp(44px, 4.5vw, 64px) 0;
}
.safety-checklist { display: grid; width: 100%; gap: 16px; margin: 0; padding: 0; }
.safety-checklist li {
  min-height: 66px; padding: 12px 18px;
  list-style: none; display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: center; gap: 14px;
  color: var(--cocoa); font-size: .9rem; line-height: 1.4;
  border: 1px solid rgba(255,255,255,.82); border-radius: 17px;
  background: rgba(255,252,250,.82);
}
.safety-checklist__icon {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--berry); background: var(--berry-tint); border: 0;
}
.safety-checklist__icon .icon { width: 15px; height: 15px; }
.safety-panel__visual { position: relative; min-height: 600px; overflow: hidden; }
.safety-panel__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.safety-panel__shade {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,21,30,.03) 35%, rgba(46,21,30,.78) 100%);
}
.safety-panel__visual::before {
  content: none;
}
.safety-panel__badge {
  position: absolute; z-index: 2; top: 28px; right: 28px; max-width: calc(100% - 56px);
  display: flex; align-items: center; gap: 12px; padding: 13px 16px;
  color: var(--cocoa); background: rgba(255,252,250,.92); border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); backdrop-filter: blur(12px);
}
.safety-panel__badge-icon { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--berry); color: #fff; }
.safety-panel__badge-icon .icon { width: 18px; height: 18px; }
.safety-panel__badge strong, .safety-panel__badge span { display: block; }
.safety-panel__badge strong { font-family: var(--font-serif); font-size: .92rem; }
.safety-panel__badge span { color: var(--mocha); font-size: .72rem; margin-top: 1px; }
.safety-panel__caption {
  position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 30px;
  display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.88); font-size: .82rem; font-weight: 700;
  letter-spacing: .03em;
}
.safety-panel__caption span { width: 28px; height: 1px; background: var(--rose); }

/* --------------------------------------------------------------------------
   19. Stat blocks
   -------------------------------------------------------------------------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat { background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--berry); line-height: 1; }
.stat .lbl { font-size: 0.78rem; color: var(--mocha); margin-top: 7px; }

/* --------------------------------------------------------------------------
   20. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { background: var(--warm-white); border-radius: var(--radius-xl); border: 1px solid var(--line); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item__q {
  width: 100%; background: transparent; border: 0; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.06rem; color: var(--cocoa);
  transition: color .2s ease;
  min-height: 64px;
}
.faq-item__q:hover { color: var(--berry); }
.faq-item__q .icon { color: var(--berry); width: 20px; height: 20px; transition: transform .3s ease; flex: none; }
.faq-item.is-open .faq-item__q .icon { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__a-inner { padding: 0 26px 24px; color: var(--mocha); font-size: 0.95rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   21. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, var(--plum) 0%, var(--berry-deep) 100%);
  color: #fff;
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.cta-band__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,21,30,0.9), rgba(142,47,76,0.55)); }
.cta-band__inner { position: relative; z-index: 2; padding-block: clamp(80px, 12vw, 140px); }
.cta-band h2 { color: #fff; font-size: clamp(2.5rem, 4.7vw, 3.75rem); font-weight: 500; line-height: 1.25; }
.cta-band .lead { max-width: 620px; margin-inline: auto; }
.cta-band .eyebrow { color: var(--rose); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(232,161,178,0.5); }
.cta-band__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
/* --------------------------------------------------------------------------
   22. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; padding-block: clamp(150px, 20vh, 210px) clamp(80px, 10vh, 110px);
  background: var(--plum); overflow: hidden; text-align: left;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.24; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(46,21,30,0.92), rgba(66,34,46,0.55)); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero--center .page-hero__inner { text-align: center; }
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero p { color: rgba(255,255,255,0.86); font-size: 1.12rem; max-width: 640px; }
.page-hero--center h1, .page-hero--center p { margin-inline: auto; }

/* Restrained editorial split hero for high-intent landing pages */
.page-hero--split {
  min-height: calc(100vh - 96px);
  min-height: calc(100dvh - 96px);
  margin-top: 96px;
  padding: 0;
  display: grid;
  grid-template-columns:
    max(var(--gutter), calc((100vw - var(--container)) / 2))
    minmax(0, 46fr)
    minmax(0, 54fr)
    max(var(--gutter), calc((100vw - var(--container)) / 2));
  align-items: stretch;
  background: var(--cream);
  border-bottom: 1px solid rgba(97,61,61,.08);
}
.page-hero--split .page-hero__media {
  position: relative;
  inset: auto;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: min(100%, clamp(460px, 42vw, 560px));
  height: auto;
  aspect-ratio: 1 / 1;
  margin-block: 0;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 18px 48px rgba(74,53,56,.12);
}
.page-hero--split .page-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: inherit;
  opacity: 1;
  object-position: center;
}
.page-hero--split .page-hero__media::before {
  content: "";
  position: absolute;
  inset: -64px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/hero-botanical-lines.svg?v=20260814a") center / 100% 100% no-repeat;
  animation: hero-line-breathe 8.5s ease-in-out infinite alternate;
}
.page-hero--split .page-hero__media::after { display: none; }
@keyframes hero-line-breathe {
  0% { opacity: .34; }
  55% { opacity: .7; }
  100% { opacity: .46; }
}
.page-hero--split .page-hero__overlay { display: none; }
.page-hero--split .page-hero__inner {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: clamp(56px, 6vw, 80px) clamp(36px, 4vw, 60px) clamp(56px, 6vw, 80px) 0;
}
.page-hero--split h1 {
  color: var(--cocoa);
  max-width: 11.5ch;
  font-size: clamp(3.15rem, 4.25vw, 4.45rem);
  line-height: 1.03;
  text-wrap: balance;
}
.page-hero--split h1 em { color: var(--berry); }
.page-hero--split p { color: var(--mocha); max-width: 510px; line-height: 1.68; }
.page-hero--split .eyebrow,
.page-hero--split .eyebrow--light { color: var(--berry); }

.page-hero--compact.page-hero--split {
  min-height: calc(100vh - 96px);
  min-height: calc(100dvh - 96px);
  grid-template-columns:
    max(var(--gutter), calc((100vw - var(--container)) / 2))
    minmax(0, 48fr)
    minmax(0, 52fr)
    max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.page-hero--compact.page-hero--split .page-hero__media {
  width: min(100%, clamp(440px, 39vw, 520px));
  margin-block: 0;
}
.page-hero--compact.page-hero--split .page-hero__inner { padding-right: clamp(32px, 4vw, 54px); }
.page-hero--compact.page-hero--split h1 { max-width: 13ch; font-size: clamp(2.85rem, 3.75vw, 3.9rem); }
.page-hero--compact + .section { padding-top: clamp(64px, 6vw, 80px); }

/* Functional pages use their own information-first mastheads instead of role-page heroes. */
.utility-hero,
.editorial-masthead { margin-top: 96px; border-bottom: 1px solid rgba(97,61,61,.09); }
.utility-hero { background: var(--cream); }
.utility-hero__inner { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(48px,8vw,112px); align-items: center; min-height: 610px; padding-block: clamp(72px,8vw,104px); }
.utility-hero__copy h1 { max-width: 11ch; margin: 18px 0 24px; color: var(--cocoa); font-size: clamp(3.3rem,5.2vw,5.3rem); line-height: .98; }
.utility-hero__copy h1 em { color: var(--berry); }
.utility-hero__copy p { max-width: 560px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.wishlist-hero-board { display: grid; gap: 12px; padding: 22px; border: 1px solid rgba(201,79,115,.15); border-radius: 28px; background: var(--blush-soft); }
.wishlist-hero-note { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; padding: 22px 24px; border: 1px solid rgba(97,61,61,.1); border-radius: 18px; background: rgba(255,252,249,.92); }
.wishlist-hero-note:nth-child(2) { margin-left: 34px; }
.wishlist-hero-note > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: var(--blush); color: var(--berry); }
.wishlist-hero-note small { display: block; margin-bottom: 3px; color: var(--berry); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.wishlist-hero-note strong { display: block; margin-bottom: 5px; font-family: var(--font-display); color: var(--cocoa); font-size: 1.25rem; }
.wishlist-hero-note p { color: var(--muted); font-size: .84rem; line-height: 1.55; }

.editorial-masthead { background: var(--warm-white); }
.editorial-masthead__inner { max-width: 980px; padding-block: clamp(92px,10vw,138px) clamp(72px,8vw,104px); text-align: center; }
.editorial-masthead h1 { margin: 20px auto 24px; color: var(--cocoa); font-size: clamp(3.7rem,7vw,6.5rem); line-height: .96; }
.editorial-masthead h1 em { color: var(--berry); }
.editorial-masthead__inner > p:not(.editorial-masthead__meta) { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.editorial-masthead__topics { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 34px 0 24px; }
.editorial-masthead__topics span { padding: 10px 16px; border: 1px solid rgba(201,79,115,.18); border-radius: 999px; background: var(--cream); color: var(--cocoa); font-size: .82rem; }
.editorial-masthead__meta { display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--muted); font-size: .78rem; }
.editorial-masthead__meta .icon { color: var(--berry); }
.editorial-masthead--compact .editorial-masthead__inner {
  padding-block: clamp(58px, 6vw, 78px) clamp(50px, 5vw, 68px);
}
.editorial-masthead--compact h1 {
  margin-block: 16px 18px;
  font-size: clamp(3.35rem, 5.8vw, 5.25rem);
}
.editorial-masthead--compact .editorial-masthead__topics { margin: 24px 0 18px; }

.wishlist-photo-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(430px, 52vh, 540px);
  margin-top: 96px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.wishlist-photo-hero__media,
.wishlist-photo-hero__overlay { position: absolute; inset: 0; }
.wishlist-photo-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.wishlist-photo-hero__overlay { background: rgba(47, 25, 31, .43); }
.wishlist-photo-hero__content { position: relative; z-index: 1; padding-block: clamp(72px, 9vw, 108px); }
.wishlist-photo-hero .eyebrow { color: rgba(255, 255, 255, .92); }
.wishlist-photo-hero .eyebrow::before,
.wishlist-photo-hero .eyebrow::after { background: rgba(255, 255, 255, .55); }
.wishlist-photo-hero h1 {
  max-width: 12ch;
  margin: 18px auto 22px;
  color: #fff;
  font-size: clamp(3.9rem, 6vw, 5.7rem);
  line-height: .98;
  text-shadow: 0 2px 20px rgba(35, 15, 22, .28);
}
.wishlist-photo-hero h1 em { color: #f4a5bd; }
.wishlist-photo-hero p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .93);
  font-size: 1.06rem;
  line-height: 1.72;
  text-shadow: 0 1px 12px rgba(35, 15, 22, .25);
}

.wishlist-how { position: relative; overflow: hidden; }
.wishlist-how::before,
.wishlist-how::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 79, 115, .1);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}
.wishlist-how::before { top: -150px; left: -90px; }
.wishlist-how::after { right: -110px; bottom: -165px; }
.wishlist-how .section-head p { max-width: 680px; margin-inline: auto; color: var(--muted); line-height: 1.7; }
.wishlist-how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(97, 61, 61, .14);
  border-bottom: 1px solid rgba(97, 61, 61, .14);
}
.wishlist-how__step { min-width: 0; padding: 38px clamp(28px, 3.2vw, 48px) 42px; }
.wishlist-how__step + .wishlist-how__step { border-left: 1px solid rgba(97, 61, 61, .14); }
.wishlist-how__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.wishlist-how__number {
  font-family: var(--font-display);
  color: rgba(201, 79, 115, .62);
  font-size: 1.15rem;
  letter-spacing: .06em;
}
.wishlist-how__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(201, 79, 115, .18);
  border-radius: 50%;
  background: var(--blush);
  color: var(--berry);
}
.wishlist-how__icon .icon { width: 21px; height: 21px; }
.wishlist-how__step h3 { margin-bottom: 12px; font-size: 1.45rem; }
.wishlist-how__step p { color: var(--muted); font-size: .94rem; line-height: 1.7; }

/* Wishlist profiles and feature explanation */
.member-wishlists { position: relative; overflow: hidden; }
.member-wishlists::before,
.member-wishlists::after {
  position: absolute;
  width: 280px;
  height: 110px;
  border: 1px solid rgba(201, 79, 115, .12);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}
.member-wishlists::before { top: 82px; left: -170px; transform: rotate(-12deg); }
.member-wishlists::after { right: -160px; bottom: 90px; transform: rotate(11deg); }
.member-wishlists .section-head p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.72;
}
.member-wishlist-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.member-wishlist-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(97, 61, 61, .13);
  border-radius: 26px;
  background: rgba(255, 252, 249, .96);
  box-shadow: 0 18px 48px rgba(67, 35, 43, .07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.member-wishlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(67, 35, 43, .11);
}
.member-wishlist-card__profile {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(97, 61, 61, .1);
  background: var(--blush-soft);
}
.member-wishlist-card__profile img {
  width: 78px;
  height: 78px;
  border: 3px solid rgba(255, 252, 249, .92);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(67, 35, 43, .12);
}
.member-wishlist-card__label {
  display: block;
  margin-bottom: 4px;
  color: var(--berry);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.member-wishlist-card__profile h3 { margin-bottom: 4px; font-size: 1.28rem; }
.member-wishlist-card__profile p { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.member-wishlist-card__items { display: grid; gap: 0; padding: 6px 24px 12px; }
.member-wishlist-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 16px 0;
}
.member-wishlist-item + .member-wishlist-item { border-top: 1px solid rgba(97, 61, 61, .1); }
.member-wishlist-item > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: var(--blush);
  color: var(--berry);
}
.member-wishlist-item .icon { width: 18px; height: 18px; }
.member-wishlist-item small {
  display: block;
  margin-bottom: 2px;
  color: var(--berry);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.member-wishlist-item strong { color: var(--cocoa); font-size: .86rem; line-height: 1.45; }
.member-wishlists__action {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 770px;
  margin: 42px auto 0;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.member-wishlists__action p { max-width: 370px; color: var(--muted); line-height: 1.62; }
.member-wishlists__action .btn { flex: 0 0 auto; }

.wishlist-feature__inner { gap: clamp(54px, 7vw, 104px); }
.wishlist-feature__inner > div:first-child { align-self: center; }
.wishlist-feature__inner .lead { max-width: 660px; }
.wishlist-feature__list { display: grid; gap: 18px; margin-top: 30px; }
.wishlist-feature__list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.wishlist-feature__list li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(201, 79, 115, .15);
  border-radius: 50%;
  background: rgba(255, 252, 249, .76);
  color: var(--berry);
}
.wishlist-feature__list .icon { width: 18px; height: 18px; }
.wishlist-feature__list strong { display: block; margin: 1px 0 3px; color: var(--cocoa); }
.wishlist-feature__list p { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.wishlist-feature__media { position: relative; min-height: 480px; margin: 0; }
.wishlist-feature__media img {
  width: 100%;
  height: 480px;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 26px 64px rgba(67, 35, 43, .15);
}
.wishlist-feature__media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  max-width: calc(100% - 48px);
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(97, 61, 61, .1);
  border-radius: 16px;
  background: rgba(255, 252, 249, .93);
  color: var(--cocoa);
  font-size: .8rem;
  box-shadow: 0 12px 30px rgba(67, 35, 43, .12);
  backdrop-filter: blur(8px);
}
.wishlist-feature__media figcaption .icon { width: 18px; height: 18px; color: var(--berry); }

.safety-photo-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(440px, 54vh, 560px);
  margin-top: 96px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.safety-photo-hero__media,
.safety-photo-hero__overlay { position: absolute; inset: 0; }
.safety-photo-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.safety-photo-hero__overlay { background: rgba(46, 21, 30, .44); }
.safety-photo-hero__content { position: relative; z-index: 1; padding-block: clamp(74px, 9vw, 112px); }
.safety-photo-hero .eyebrow { color: rgba(255, 255, 255, .9); }
.safety-photo-hero .eyebrow::before,
.safety-photo-hero .eyebrow::after { background: rgba(255, 255, 255, .55); }
.safety-photo-hero h1 {
  margin: 18px auto 22px;
  color: #fff;
  font-size: clamp(4rem, 6vw, 5.8rem);
  line-height: .98;
  text-shadow: 0 2px 22px rgba(35, 15, 22, .3);
}
.safety-photo-hero h1 em { color: #f4a5bd; }
.safety-photo-hero p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .92);
  font-size: 1.08rem;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(35, 15, 22, .28);
}

.editorial-guide__image { margin: 30px 0 24px; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; }
.editorial-guide__image img { width: 100%; height: 100%; object-fit: cover; }
.image-ribbon {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr);
  gap: 22px;
  margin-top: 46px;
  align-items: end;
}
.image-ribbon__item { position: relative; overflow: hidden; border-radius: 30px; min-height: 300px; }
.image-ribbon__item:nth-child(2) { min-height: 238px; border-radius: 72px 30px 30px 30px; }
.image-ribbon__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-ribbon__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,248,243,.9);
  color: var(--cocoa);
  font-size: .78rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.split-media-frame { position: relative; }
.split-media-frame > img { border-radius: 24px !important; box-shadow: 0 16px 42px rgba(74,53,56,.11); }
.role-benefit-section { overflow: hidden; }
.role-benefit {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(68px, 8vw, 118px);
  align-items: center;
}
.role-benefit--media-first { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
.role-benefit__content { padding-block: 22px; }
.role-benefit__content h2 {
  max-width: 12ch;
  margin: 18px 0 22px;
  font-size: clamp(2.8rem, 4vw, 4.15rem);
  line-height: 1.05;
}
.role-benefit__lead { max-width: 580px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.role-benefit__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}
.role-benefit__list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid rgba(97, 61, 61, .12);
  color: var(--cocoa);
  font-size: .91rem;
  line-height: 1.5;
}
.role-benefit__list li:last-child { grid-column: 1 / -1; }
.role-benefit__list .icon { width: 19px; height: 19px; margin-top: 1px; color: var(--berry); }
.role-benefit__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px 36px 92px 36px;
  box-shadow: 0 22px 56px rgba(74, 53, 56, .13);
}
.role-benefit--media-first .role-benefit__media { border-radius: 36px 92px 36px 36px; }
.role-benefit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.process-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.process-card {
  position: relative;
  min-height: 280px;
  padding: 34px 36px 38px;
  overflow: hidden;
  border: 1px solid rgba(97, 61, 61, .11);
  border-radius: 28px;
  background: var(--warm-white);
}
.process-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(201, 79, 115, .13);
  border-radius: 50%;
  content: '';
}
.process-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.process-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(201, 79, 115, .18);
  border-radius: 17px;
  background: var(--blush);
  color: var(--berry);
}
.process-card__icon .icon { width: 23px; height: 23px; }
.process-card__step { color: var(--berry); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.process-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 1.48rem; }
.process-card p { position: relative; z-index: 1; max-width: 56ch; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.visual-break {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}
.visual-break__media { min-height: 420px; overflow: hidden; border-radius: 34px 34px 90px 34px; }
.visual-break__media img { width: 100%; height: 100%; object-fit: cover; }
.visual-break__content { padding: clamp(36px,5vw,68px); background: var(--blush-soft); border-radius: 34px; display: flex; flex-direction: column; justify-content: center; }
.visual-break__content p { color: var(--muted); line-height: 1.75; }

/* --------------------------------------------------------------------------
   23. Forms
   -------------------------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--cocoa); margin-bottom: 7px; }
.input, .textarea {
  width: 100%; background: var(--warm-white); border: 1px solid var(--line-strong);
  border-radius: var(--radius-md); padding: 14px 16px; font-size: 0.95rem; color: var(--cocoa);
  transition: border-color .2s ease, box-shadow .2s ease;
  min-height: 48px;
}
.input::placeholder, .textarea::placeholder { color: var(--mocha-soft); }
.input:focus, .textarea:focus { outline: none; border-color: var(--berry); box-shadow: 0 0 0 3px rgba(201,79,115,0.14); }
.textarea { resize: vertical; min-height: 130px; }
.input.is-error, .textarea.is-error { border-color: #d4183d; }
.field-error { font-size: 0.78rem; color: #d4183d; margin-top: 6px; display: none; }
.field-error.is-visible { display: block; }

.form-card { background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius-2xl); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-note { font-size: 0.8rem; color: var(--mocha-soft); margin-top: 14px; text-align: center; }
.form-status { display: none; margin-top: 16px; padding: 13px 16px; border-radius: var(--radius-md); font-size: 0.86rem; background: var(--berry-tint); color: var(--berry-deep); }
.form-status.is-visible { display: block; }

.role-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.role-toggle button {
  padding: 15px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.92rem;
  border: 1.5px solid var(--line-strong); background: var(--warm-white); color: var(--mocha);
  transition: all .2s ease;
}
.role-toggle button.is-active { background: var(--berry); border-color: var(--berry); color: #fff; box-shadow: var(--shadow-berry); }

/* --------------------------------------------------------------------------
   24. Login split screen
   -------------------------------------------------------------------------- */
.login-wrap {
  min-height: calc(100dvh - 68px);
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-media { position: relative; display: block; }
.login-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.login-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,21,30,0.85), rgba(46,21,30,0.15) 50%, rgba(142,47,76,0.2)); }
.login-media__inner { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 44px; color: #fff; }
.login-media__inner .brand-name { color: #fff; font-size: 1.6rem; }
.login-media__inner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 12px 0 22px; }
.login-media__inner .perks { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.login-media__inner .perks span { display: inline-flex; align-items: center; gap: 7px; }
.login-media__inner .perks .icon { width: 14px; height: 14px; color: var(--rose); }
.login-form-panel { display: flex; align-items: center; justify-content: center; padding: 40px var(--gutter); background: var(--cream); }
.login-form-panel .login-box { width: 100%; max-width: 420px; }
.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  margin-bottom: 18px;
  padding-right: 10px;
  color: var(--mocha-soft);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1;
}
.back-link .icon {
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
  transition: transform .2s ease;
}
.back-link:hover { color: var(--berry); }
.back-link:hover .icon { transform: rotate(180deg) translateX(3px); }

/* --------------------------------------------------------------------------
   25. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: linear-gradient(160deg, var(--plum) 0%, var(--plum-deep) 100%); color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 32px; padding-block: clamp(56px, 8vw, 84px); }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.42); max-width: 300px; margin-top: 18px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16);
  display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.78rem;
  transition: all .2s ease;
}
.footer-social a:hover { color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.footer-col h3 { color: #fff; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.5); padding-block: 6px; transition: color .2s ease; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-block: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.32); margin: 0; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom .legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.32); transition: color .2s ease; }
.footer-bottom .legal-links a:hover { color: rgba(255,255,255,0.7); }

/* --------------------------------------------------------------------------
   26. Prose (legal / long-form)
   -------------------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; font-size: 1.6rem; }
.prose h3 { margin-top: 1.4em; font-size: 1.15rem; }
.prose p { color: var(--mocha); }
.prose ul { padding-left: 1.2em; color: var(--mocha); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--berry); text-decoration: underline; }
.prose .updated { color: var(--mocha-soft); font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   27. Reveal animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   28. Responsive
   -------------------------------------------------------------------------- */
.content-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.content-intro p { margin-top: 16px; color: var(--muted); line-height: 1.8; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.guide-panel { position: relative; padding: 34px 30px; border-top: 2px solid rgba(201,79,115,.38); background: rgba(255,255,255,.46); }
.guide-panel::before { content: ""; position: absolute; top: -2px; left: 0; width: 54px; border-top: 2px solid var(--berry); }
.guide-panel h3 { margin: 12px 0; font-size: 1.45rem; }
.guide-panel p { color: var(--muted); line-height: 1.75; }
.guide-panel .eyebrow { font-size: .67rem; }
.editorial-guide { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(36px,7vw,96px); align-items: start; }
.editorial-guide__lead { position: sticky; top: 118px; }
.editorial-guide__lead p { margin: 20px 0; color: var(--muted); line-height: 1.8; }
.editorial-guide__list { border-top: 1px solid rgba(97,61,61,.18); }
.editorial-guide__item { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(97,61,61,.18); }
.editorial-guide__item span { font-family: var(--font-display); color: var(--berry); font-size: 1.7rem; }
.editorial-guide__item h3 { margin-bottom: 8px; }
.editorial-guide__item p { color: var(--muted); line-height: 1.72; }
.question-band { padding: clamp(42px,6vw,72px); border-radius: 24px; background: var(--blush-soft); color: var(--cocoa); border: 1px solid rgba(201,79,115,.14); }
.question-band__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,7vw,90px); }
.question-band h2 { color: var(--cocoa); }
.question-band p { color: var(--muted); line-height: 1.75; }
.question-list { display: grid; gap: 14px; }
.question-list li { list-style: none; padding: 16px 0 16px 28px; border-bottom: 1px solid rgba(97,61,61,.14); position: relative; }
.question-list li::before { content: ""; position: absolute; left: 0; top: 24px; width: 12px; height: 1px; background: var(--berry); }
.do-dont-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; align-items: stretch; padding: 16px; border: 1px solid rgba(201,79,115,.16); border-radius: 30px; background: rgba(255,255,255,.44); }
.do-dont-column { --guide-accent: var(--berry); position: relative; padding: clamp(28px,3vw,40px); border: 0; border-radius: 22px; background: rgba(255,255,255,.82); }
.do-dont-column--dont { --guide-accent: var(--cocoa); background: rgba(255,249,247,.8); }
.do-dont-column__head { display: flex; align-items: center; gap: 18px; min-height: 92px; padding: 0 4px 24px; }
.do-dont-column__head h3 { margin: 5px 0 0; max-width: 20ch; font-size: clamp(1.35rem,1.8vw,1.75rem); }
.do-dont-column__icon { display: grid; flex: 0 0 52px; width: 52px; height: 52px; place-items: center; border-radius: 16px; background: var(--blush-soft); color: var(--guide-accent); box-shadow: inset 0 0 0 1px rgba(201,79,115,.08); }
.do-dont-column__icon .icon { width: 22px; height: 22px; }
.do-dont-list { margin: 0; padding: 0; list-style: none; counter-reset: guidance; }
.do-dont-list li { counter-increment: guidance; display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 18px; border: 1px solid rgba(97,61,61,.1); border-radius: 15px; background: rgba(255,255,255,.66); }
.do-dont-list li + li { margin-top: 10px; }
.do-dont-list li::before { content: counter(guidance, decimal-leading-zero); display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--guide-accent) 10%, white); font-family: var(--font-display); color: var(--guide-accent); font-size: .78rem; line-height: 1; }
.do-dont-list strong { display: block; margin-bottom: 7px; color: var(--cocoa); font-size: 1rem; }
.do-dont-list span { display: block; color: var(--muted); line-height: 1.62; }

.role-safety-panel { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); overflow: hidden; border: 1px solid rgba(201,79,115,.16); border-radius: 30px; background: var(--cream); box-shadow: 0 24px 70px rgba(76,39,43,.08); }
.role-safety-panel__media { position: relative; min-height: 680px; margin: 0; overflow: hidden; }
.role-safety-panel__media img { width: 100%; height: 100%; object-fit: cover; }
.role-safety-panel__media figcaption { position: absolute; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; background: rgba(255,252,249,.94); color: var(--cocoa); font-size: .86rem; line-height: 1.45; }
.role-safety-panel__media figcaption .icon { flex: 0 0 auto; color: var(--berry); }
.role-safety-panel__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,5vw,72px); }
.role-safety-panel__content h2 { margin: 16px 0 18px; }
.role-safety-panel__lead { max-width: 620px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.role-safety-checklist { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 28px 0 32px; }
.role-safety-checklist article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 16px 18px; border: 1px solid rgba(201,79,115,.12); border-radius: 14px; background: rgba(255,255,255,.72); }
.role-safety-checklist article > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--blush-soft); color: var(--berry); }
.role-safety-checklist h3 { margin: 1px 0 4px; font-family: var(--font-body); font-size: .98rem; }
.role-safety-checklist p { color: var(--muted); font-size: .86rem; line-height: 1.55; }
.role-safety-panel__content .btn { align-self: flex-start; }
.role-safety-panel--text-only { display: block; max-width: 1120px; margin-inline: auto; background: var(--blush-soft); box-shadow: none; }
.role-safety-panel--text-only .role-safety-panel__content { padding: clamp(42px,6vw,76px); }
.role-safety-panel--text-only .role-safety-panel__content h2 { max-width: 720px; }
.role-safety-panel--text-only .role-safety-panel__lead { max-width: 760px; }
.role-safety-panel--text-only .role-safety-checklist { margin-top: 34px; }
.role-safety-panel__footer { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.role-safety-panel__footer > p { display: flex; align-items: center; gap: 10px; color: var(--mocha); font-size: .86rem; }
.role-safety-panel__footer > p .icon { flex: 0 0 auto; color: var(--berry); }

.compatibility-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.compatibility-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 30px 26px; border: 1px solid rgba(201,79,115,.16); border-radius: 22px; background: rgba(255,255,255,.72); }
.compatibility-card__number { font-family: var(--font-display); color: rgba(201,79,115,.55); font-size: 2rem; line-height: 1; }
.compatibility-card h3 { margin: 10px 0 14px; font-size: 1.45rem; }
.compatibility-card > div > p { color: var(--muted); line-height: 1.72; }
.compatibility-card__prompt { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(97,61,61,.12); font-size: .9rem; }
.compatibility-card__prompt strong { display: block; margin-bottom: 5px; color: var(--berry); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.profile-builder-section { position: relative; overflow: hidden; scroll-margin-top: 88px; }
.profile-builder-section::after { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: 12%; border: 1px solid rgba(201,79,115,.14); border-radius: 47% 53% 61% 39%; transform: rotate(18deg); pointer-events: none; }
.profile-builder { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.72fr); gap: clamp(52px,7vw,96px); align-items: start; }
.profile-builder__content { padding-top: 18px; }
.profile-builder__content > h2 { margin: 16px 0 20px; max-width: 14ch; text-wrap: balance; }
.profile-builder__content > .lead { max-width: 680px; }
.profile-principles { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid rgba(97,61,61,.16); }
.profile-principles article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(97,61,61,.16); }
.profile-principles article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--blush-soft); font-family: var(--font-display); color: var(--berry); font-size: .88rem; }
.profile-principles h3 { margin-bottom: 7px; font-size: 1.15rem; }
.profile-principles p { max-width: 64ch; color: var(--muted); line-height: 1.68; }
.profile-builder__example { position: relative; display: flex; flex-direction: column; align-items: stretch; width: min(100%,430px); justify-self: end; padding: 18px; border: 1px solid rgba(201,79,115,.16); border-radius: 32px; background: rgba(250,233,236,.56); box-shadow: 0 26px 65px rgba(74,53,56,.12); }
.profile-builder__preview-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 4px 6px 16px; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--berry); }
.profile-builder__preview-head span:last-child { color: var(--mocha-soft); letter-spacing: .04em; text-transform: none; font-weight: 600; }
.profile-builder__example .profile-card { width: 100%; border-radius: 24px; border-color: rgba(201,79,115,.14); box-shadow: 0 14px 36px rgba(74,53,56,.09); }
.profile-builder__example .profile-card:hover { transform: none; box-shadow: 0 14px 36px rgba(74,53,56,.09); }
.profile-builder__example .profile-card__media { height: 370px; }
.profile-builder__example .profile-card__media img { object-position: center 30%; }
.profile-builder__example .profile-card:hover .profile-card__media img { transform: none; }
.profile-builder__example .profile-card__body { padding: 24px; }
.profile-builder__example .profile-card__top { align-items: center; margin-bottom: 16px; }
.profile-builder__example .profile-card__top h3 { font-size: 1.45rem; }
.profile-card__active { display: inline-flex; align-items: center; gap: 6px; color: var(--mocha); font-size: .72rem; font-weight: 600; white-space: nowrap; }
.profile-card__active > span { width: 7px; height: 7px; border-radius: 50%; background: #4aa978; box-shadow: 0 0 0 4px rgba(74,169,120,.12); }
.profile-builder__example .profile-card__bio { margin-bottom: 16px; line-height: 1.65; }
.profile-card__interests { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.profile-card__interests span { padding: 7px 11px; border-radius: var(--radius-pill); background: var(--blush-soft); color: var(--berry-deep); font-size: .74rem; font-weight: 600; }
.profile-builder__example .btn { width: 100%; min-height: 48px; }
.profile-card__privacy { display: grid; grid-template-columns: 34px 1fr; gap: 11px; margin-top: 18px; padding: 15px; border-radius: 16px; background: var(--cream); border: 1px solid var(--line); }
.profile-card__privacy > .icon { width: 18px; height: 18px; margin: 2px auto 0; color: var(--berry); }
.profile-card__privacy strong { display: block; margin-bottom: 3px; color: var(--cocoa); font-size: .8rem; }
.profile-card__privacy p { margin: 0; color: var(--mocha); font-size: .76rem; line-height: 1.5; }
.path-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.path-link { display: block; padding: 22px 24px; border: 1px solid rgba(201,79,115,.2); border-radius: 18px; background: rgba(255,255,255,.58); color: var(--cocoa); }
.path-link strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; }
.path-link span { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.updated-note { margin-top: 26px; color: var(--muted); font-size: .82rem; }

.app-showcase { position: relative; overflow: hidden; background: linear-gradient(135deg, #fffaf7 0%, #fbecef 52%, #fff8f3 100%); }
.app-showcase::before { content: ""; position: absolute; width: 520px; height: 520px; right: -250px; bottom: -300px; border: 1px solid rgba(201,79,115,.13); border-radius: 47% 53% 42% 58%; transform: rotate(-22deg); pointer-events: none; }
.app-showcase__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,.85fr); align-items: center; gap: clamp(48px,6vw,88px); min-height: 600px; }
.app-showcase__visual { position: relative; display: grid; place-items: center; min-width: 0; isolation: isolate; }
.app-showcase__visual::after { content: ""; position: absolute; right: 14%; bottom: 5%; left: 14%; height: 15%; border-radius: 50%; background: rgba(70,39,46,.14); filter: blur(30px); transform: scaleY(.45); z-index: -1; }
.app-showcase__halo { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.96) 0 47%, rgba(245,201,212,.48) 48% 66%, rgba(245,201,212,0) 67%); z-index: -2; }
.app-showcase__visual > img { display: block; width: min(100%,470px); height: auto; max-height: 470px; margin-inline: auto; object-fit: contain; filter: drop-shadow(0 24px 26px rgba(68,42,47,.15)); }
.app-showcase__content { width: 100%; max-width: 560px; }
.app-showcase .reveal { opacity: 1; transform: none; }
.app-showcase__content h2 { width: 100%; max-width: none; margin: 18px 0 22px; text-wrap: balance; }
.app-showcase__content > .lead { max-width: 53ch; color: var(--mocha); }
.app-showcase__features { display: grid; gap: 10px; margin: 30px 0 32px; }
.app-showcase__features > div { display: grid; grid-template-columns: 46px minmax(0,1fr); align-items: start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(97,61,61,.12); }
.app-showcase__features > div:first-child { border-top: 1px solid rgba(97,61,61,.12); }
.app-showcase__features > div > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: rgba(255,255,255,.78); color: var(--berry); box-shadow: 0 8px 24px rgba(94,54,65,.08); }
.app-showcase__features .icon { width: 19px; height: 19px; }
.app-showcase__features p { color: var(--muted); line-height: 1.55; }
.app-showcase__features strong { display: block; margin-bottom: 3px; color: var(--cocoa); font-size: .98rem; }
.app-showcase__stores { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.app-store-badge { display: grid; place-items: center; height: 52px; }
.app-store-badge img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.app-store-badge--apple { width: 144px; }
.app-store-badge--google { width: 162px; }
.app-store-badge--apple img { width: 144px; }
.app-store-badge--google img { width: 185px; max-width: none; max-height: none; transform: translateY(-10px); }

/* Long-form role pages keep their depth without oversized empty bands. */
.role-page main > .section { padding-block: clamp(56px, 6vw, 84px); }
.role-page .section-head { margin-bottom: clamp(30px, 4vw, 44px); }
.role-page .content-intro { margin-bottom: 36px; }
.role-page .guide-grid { gap: 16px; }
.role-page .guide-panel { padding: 28px 26px; }
.role-page .editorial-guide__item { padding-block: 22px; }
.role-page .cta-band__inner { padding-block: clamp(76px, 9vw, 104px); }

@media (max-width: 1080px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps__line { display: none; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured__media { min-height: 260px; }
  .safety-panel { grid-template-columns: 1fr .9fr; }
  .safety-panel__content { padding: 52px 44px; }
  .process-showcase__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 64px; }
  .process-showcase__step p { max-width: 440px; }
  .role-safety-panel { grid-template-columns: .8fr 1.2fr; }
  .role-safety-panel__media { min-height: 720px; }
  .compatibility-grid { grid-template-columns: 1fr; }
  .compatibility-card { grid-template-columns: 64px 1fr; }
  .member-wishlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-wishlist-card:last-child { grid-column: 1 / -1; width: min(100%, 560px); justify-self: center; }
}

@media (max-width: 820px) {
  .guide-grid { grid-template-columns: 1fr; }
  .editorial-guide, .question-band__grid { grid-template-columns: 1fr; }
  .do-dont-grid { grid-template-columns: 1fr; }
  .role-safety-panel, .profile-builder { grid-template-columns: 1fr; }
  .role-benefit, .role-benefit--media-first { grid-template-columns: 1fr; gap: 42px; }
  .role-benefit__media { min-height: 460px; order: -1; }
  .process-card-grid { grid-template-columns: 1fr; }
  .wishlist-how__steps { grid-template-columns: 1fr; }
  .wishlist-how__step + .wishlist-how__step { border-top: 1px solid rgba(97, 61, 61, .14); border-left: 0; }
  .utility-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .utility-hero__inner { gap: 44px; }
  .wishlist-hero-note:nth-child(2) { margin-left: 0; }
  .role-safety-panel__media { min-height: 420px; }
  .profile-builder__example { order: -1; }
  .app-showcase__inner { grid-template-columns: 1fr; gap: 34px; min-height: 0; }
  .app-showcase__content { order: -1; max-width: 680px; }
  .app-showcase__content h2 { max-width: none; }
  .app-showcase__visual > img { width: min(84%,470px); max-height: 440px; }
  .editorial-guide__lead { position: static; }
  .path-links { grid-template-columns: 1fr; }
  .grid-2, .split { grid-template-columns: 1fr; }
  .split .order-2 { order: 2; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-media { display: none; }
  .hero__stat { display: none; }
  .role-story { grid-template-columns: 1fr; min-height: 0; }
  .role-story__media, .role-story--baby .role-story__media { order: 1; min-height: 440px; }
  .role-story__content, .role-story--baby .role-story__content { order: 2; }
  .safety-panel { grid-template-columns: 1fr; min-height: 0; }
  .safety-panel__guides { padding: 0 44px 52px; }
  .member-wishlist-grid { grid-template-columns: 1fr; }
  .member-wishlist-card:last-child { grid-column: auto; width: 100%; }
  .member-wishlists__action { align-items: center; flex-direction: column; gap: 18px; text-align: center; }
  .wishlist-feature__media { order: -1; min-height: 390px; }
  .wishlist-feature__media img { height: 390px; }
}

@media (max-width: 620px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .do-dont-grid { padding: 8px; border-radius: 22px; }
  .do-dont-column { padding: 24px 16px; border-radius: 17px; }
  .do-dont-column__head { min-height: 0; padding-inline: 4px; }
  .do-dont-list li { grid-template-columns: 30px 1fr; padding: 16px 14px; }
  .role-safety-panel { border-radius: 22px; }
  .role-safety-panel__media { min-height: 300px; }
  .role-safety-panel__media figcaption { right: 14px; bottom: 14px; left: 14px; padding: 13px 14px; }
  .role-safety-panel__content { padding: 32px 20px; }
  .role-safety-checklist { grid-template-columns: 1fr; }
  .role-safety-checklist article { grid-template-columns: 38px 1fr; padding: 14px; }
  .role-safety-panel__footer { align-items: stretch; flex-direction: column; }
  .role-safety-panel__footer .btn { width: 100%; }
  .utility-hero, .editorial-masthead { margin-top: 90px; }
  .utility-hero__inner { padding-block: 58px 64px; }
  .utility-hero__copy h1 { font-size: clamp(2.8rem,13vw,3.8rem); }
  .wishlist-hero-board { padding: 10px; border-radius: 20px; }
  .wishlist-hero-note { grid-template-columns: 42px 1fr; padding: 18px 16px; }
  .wishlist-hero-note > span { width: 40px; height: 40px; }
  .editorial-masthead__inner { padding-block: 74px 64px; }
  .editorial-masthead h1 { font-size: clamp(3.1rem,15vw,4.4rem); }
  .editorial-masthead--compact .editorial-masthead__inner { padding-block: 40px; }
  .editorial-masthead--compact h1 { font-size: clamp(2.9rem, 14vw, 3.8rem); }
  .editorial-masthead--compact .editorial-masthead__topics { margin: 18px 0 0; }
  .editorial-masthead--compact .editorial-masthead__meta { display: none; }
  .editorial-masthead__topics { gap: 8px; }
  .editorial-masthead__topics span { padding: 9px 12px; }
  .editorial-masthead__meta { align-items: flex-start; text-align: left; }
  .safety-photo-hero { min-height: 470px; margin-top: 90px; }
  .safety-photo-hero__media img { object-position: 58% center; }
  .safety-photo-hero__content { padding-block: 64px; }
  .safety-photo-hero h1 { font-size: clamp(3.2rem, 15vw, 4.25rem); }
  .safety-photo-hero p { max-width: 34ch; font-size: .98rem; line-height: 1.65; }
  .wishlist-photo-hero { min-height: 460px; margin-top: 90px; }
  .wishlist-photo-hero__media img { object-position: 62% center; }
  .wishlist-photo-hero__content { padding-block: 60px; }
  .wishlist-photo-hero h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .wishlist-photo-hero p { max-width: 34ch; font-size: .98rem; line-height: 1.65; }
  .wishlist-how__step { padding: 28px 4px 30px; }
  .wishlist-how__top { margin-bottom: 22px; }
  .wishlist-how__icon { width: 48px; height: 48px; }
  .member-wishlist-card { border-radius: 22px; }
  .member-wishlist-card__profile { grid-template-columns: 66px minmax(0, 1fr); gap: 13px; padding: 20px 18px; }
  .member-wishlist-card__profile img { width: 66px; height: 66px; border-radius: 18px; }
  .member-wishlist-card__items { padding-inline: 18px; }
  .member-wishlists__action .btn { width: 100%; }
  .wishlist-feature__media { min-height: 320px; }
  .wishlist-feature__media img { height: 320px; border-radius: 24px; }
  .wishlist-feature__media figcaption { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .role-benefit__content { padding-block: 0; }
  .role-benefit__content h2 { font-size: clamp(2.45rem, 11vw, 3.25rem); }
  .role-benefit__list { grid-template-columns: 1fr; margin-block: 26px 30px; }
  .role-benefit__list li:last-child { grid-column: auto; }
  .role-benefit__media { min-height: 360px; border-radius: 24px 24px 62px 24px; }
  .role-benefit--media-first .role-benefit__media { border-radius: 24px 62px 24px 24px; }
  .process-card { min-height: 0; padding: 26px 22px 30px; border-radius: 22px; }
  .process-card__top { margin-bottom: 22px; }
  .process-card__icon { width: 48px; height: 48px; border-radius: 15px; }
  .compatibility-card { grid-template-columns: 1fr; padding: 24px 20px; }
  .compatibility-card__number { font-size: 1.55rem; }
  .profile-builder__example { width: 100%; justify-self: center; padding: 12px; border-radius: 26px; }
  .profile-builder__example .profile-card__media { height: 330px; }
  .profile-builder__example .profile-card__body { padding: 20px; }
  .profile-card__active { white-space: normal; text-align: right; }
  .app-showcase { padding-block: 72px 60px; }
  .app-showcase__inner { gap: 24px; }
  .app-showcase__content { width: 100%; max-width: none; text-align: center; }
  .app-showcase__content h2 { max-width: 100%; margin-inline: auto; font-size: clamp(2.25rem,10.5vw,3rem); }
  .app-showcase__content > .lead { max-width: 38ch; margin-inline: auto; font-size: .98rem; line-height: 1.68; }
  .app-showcase__features { margin-block: 26px 28px; }
  .app-showcase__features { text-align: left; }
  .app-showcase__features > div { grid-template-columns: 42px minmax(0,1fr); gap: 12px; }
  .app-showcase__features > div > span { width: 40px; height: 40px; }
  .app-showcase__stores { justify-content: center; gap: 8px; }
  .app-store-badge { height: 48px; }
  .app-store-badge--apple { width: 132px; }
  .app-store-badge--google { width: 148px; }
  .app-store-badge--apple img { width: 132px; }
  .app-store-badge--google img { width: 169px; transform: translateY(-8px); }
  .app-showcase__visual > img { width: min(90%,370px); max-width: 370px; max-height: 370px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .role-toggle { grid-template-columns: 1fr; }
  .role-showcase__stack { gap: 54px; }
  .role-showcase .section-head { margin-bottom: 128px; }
  .role-showcase .section-head::after {
    top: calc(100% + 8px);
    width: 420px;
    height: 94px;
  }
  .role-story__media, .role-story--baby .role-story__media { min-height: 320px; }
  .role-story__content { padding: 34px 24px 38px; }
  .role-story__content h3 { font-size: 2.15rem; }
  .role-story__content > p { font-size: .92rem; }
  .role-story__benefits li { align-items: flex-start; font-size: .86rem; }
  .role-story__content .btn { width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .cta-band__ctas .btn { width: 100%; }
  .page-hero { text-align: left; }
  .page-hero--split, .page-hero--compact.page-hero--split {
    min-height: calc(100vh - 90px);
    min-height: calc(100dvh - 90px);
    margin-top: 90px;
    display: block;
    padding: 18px 0 56px;
  }
  .page-hero--split .page-hero__media {
    position: relative;
    inset: auto;
    width: min(calc(100% - 40px), 280px);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 20px;
  }
  .page-hero--split .page-hero__media::before { inset: -32px; }
  .page-hero--split .page-hero__overlay { display: none; }
  .page-hero--split .page-hero__inner { padding: 36px 20px 0; }
  .page-hero--split h1, .page-hero--compact.page-hero--split h1 { font-size: clamp(2.55rem, 11vw, 3.55rem); }
  .page-hero--compact.page-hero--split .page-hero__media {
    position: relative;
    inset: auto;
    left: auto;
    width: min(calc(100% - 40px), 280px);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
  .page-hero--compact.page-hero--split .page-hero__inner { padding: 34px 20px 0; }
  .image-ribbon, .visual-break { grid-template-columns: 1fr; }
  .image-ribbon__item, .image-ribbon__item:nth-child(2) { min-height: 250px; }
  .visual-break__media { min-height: 320px; }
  .site-header { padding-block: 14px; }
  .site-header.is-scrolled { padding-block: 8px; }
  .brand-name { font-size: 1.08rem; }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: stretch;
    background: var(--plum);
  }
  .hero__media {
    inset: 0;
    height: 100%;
  }
  .hero__media img {
    object-position: 78% center;
    opacity: 1;
  }
  .hero__overlay {
    inset: 0;
    height: 100%;
    background: rgba(255,248,243,.85);
  }
  .hero__inner {
    min-height: 100svh;
    min-height: 100dvh;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    padding: clamp(112px, 17vh, 148px) 20px max(112px, calc(env(safe-area-inset-bottom) + 96px));
  }
  .hero__content {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-14px);
  }
  .hero__badge {
    line-height: 1.45;
    padding: 8px 15px;
    margin-bottom: 24px;
    color: var(--berry);
    background: rgba(255,244,246,.84);
    border-color: rgba(201,79,115,.14);
    box-shadow: 0 8px 24px rgba(91,50,61,.08);
    backdrop-filter: blur(8px);
  }
  .hero h1 {
    color: var(--cocoa);
    max-width: 100%;
    font-size: clamp(2.15rem, 9.8vw, 2.7rem);
    line-height: 1;
    margin-bottom: 24px;
    text-wrap: balance;
  }
  .hero__title-accent { width: auto; max-width: 10.8em; margin-inline: auto; line-height: 1.04; }
  .hero__title-accent::after { right: 12%; }
  .hero__copy {
    max-width: 35ch;
    margin-bottom: 32px;
    color: var(--mocha);
    line-height: 1.68;
  }
  .hero__ctas { width: 100%; justify-content: center; }
  .hero__ctas .btn {
    width: min(244px, 74vw);
    min-height: 56px;
    border: 1px solid rgba(255,255,255,.34);
    box-shadow: 0 18px 38px rgba(153,49,83,.22);
  }
  .section { padding-block: 64px; }
  .section-head { margin-bottom: 36px; }
  .feature-card, .testimonial { padding: 24px; }
  .city-grid::before,
  .city-grid::after {
    width: 230px;
    height: 84px;
  }
  .city-grid::before { top: -48px; }
  .city-grid::after { bottom: -50px; }
  .lifestyle-grid::before,
  .lifestyle-grid::after {
    width: 170px;
    height: 78px;
  }
  .lifestyle-grid::before { top: -42px; left: 0; }
  .lifestyle-grid::after { right: 0; bottom: -42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .safety-showcase { padding-block: 56px; }
  .safety-panel { border-radius: 28px; }
  .safety-panel__content { padding: 42px 24px; }
  .safety-panel__content h2 { font-size: 2.25rem; }
  .safety-panel__content .lead { font-size: 1rem; }
  .safety-checklist { gap: 16px; }
  .safety-checklist li { align-items: start; font-size: .9rem; }
  .safety-panel__content .btn { width: 100%; }
  .safety-panel__guides { padding: 0 24px 38px; }
  .safety-checklist { gap: 12px; }
  .safety-checklist li { min-height: 62px; padding: 11px 14px; }
  .process-showcase { padding-block: 72px; }
  .process-showcase__head { margin-bottom: 48px; }
  .process-showcase__head h2 { font-size: 2.25rem; }
  .process-showcase__steps { grid-template-columns: 1fr; gap: 0; }
  .process-showcase__step {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 18px;
    padding: 25px 0;
    border-top: 1px solid rgba(97,61,61,.12);
  }
  .process-showcase__step:last-child { border-bottom: 1px solid rgba(97,61,61,.12); }
  .process-showcase__number {
    grid-row: 1 / span 2;
    margin: 5px 0 0;
    font-size: 4rem;
    line-height: .8;
  }
  .process-showcase__step h3 { margin-bottom: 8px; }
  .process-showcase__step p { max-width: none; font-size: .9rem; line-height: 1.62; }
  .process-showcase__action { margin-top: 44px; }
  .process-showcase__action .btn { width: 100%; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}
