:root {
  --plum: #5b3449;
  --plum-dark: #482a3a;
  --plum-soft: #7a4d63;
  --blush: #f3d3d5;
  --blush-deep: #e7b6ba;
  --ivory: #fbf3ea;
  --ivory-deep: #f4e6d6;
  --sage: #9cb49b;
  --sage-deep: #7e9a7d;
  --honey: #e9b872;
  --ink: #3e2c35;
  --ink-soft: #6f5a64;
  --white: #fffdf8;
  --line: #ecdacb;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 40px -18px rgba(91, 52, 73, 0.22);
  --shadow-hover: 0 30px 50px -20px rgba(91, 52, 73, 0.32);
  --font-display: "Baloo Bhaijaan 2", "Segoe UI", system-ui, sans-serif;
  --font-body: "Vazirmatn", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--plum);
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--blush);
  color: var(--plum);
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 10vw, 128px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--honey);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
}

.section-head p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: var(--plum);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: var(--plum-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--plum);
  color: var(--plum);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--white);
  border-color: var(--plum-dark);
  color: var(--plum-dark);
}

.btn-sage {
  background: var(--sage);
  color: #29392a;
}

.btn-sage:hover,
.btn-sage:focus-visible {
  background: var(--sage-deep);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #06250f;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1eb958;
  color: #06250f;
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}

[dir="rtl"] .btn .arrow {
  transform: scaleX(-1);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

[dir="rtl"] .btn:hover .arrow {
  transform: translateX(-4px) scaleX(-1);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 243, 234, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236, 218, 203, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--plum);
  color: var(--honey);
  flex: none;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--plum);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.lang-switch {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background 0.25s, color 0.25s;
}

.lang-btn.is-active {
  background: var(--plum);
  color: #fff;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  position: relative;
  padding-block: 4px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: start;
  transition: transform 0.3s var(--ease);
}

[dir="rtl"] .primary-nav a::after {
  transform-origin: end;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--plum);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  place-items: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Mobile menu overlay ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--plum);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-close {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ivory);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  place-items: center;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.menu-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ivory);
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.menu-links a.is-active {
  color: var(--honey);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 110px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(243, 211, 213, 0.7);
  inset-block-start: -120px;
  inset-inline-end: -80px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: rgba(233, 184, 114, 0.45);
  inset-block-end: -140px;
  inset-inline-start: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--plum-soft);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 50 2 100 7 T 198 6' fill='none' stroke='%23E9B872' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center / 100% 100%;
}

.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--plum-soft);
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-points li svg {
  width: 16px;
  height: 16px;
  color: var(--sage-deep);
  flex: none;
}

.hero-art {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-art svg.main-art,
.hero-art img.main-art {
  width: min(430px, 100%);
  height: auto;
}

.float-slow {
  animation: floaty 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-8px) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-16px) rotate(1.2deg) scale(1.015);
  }
  75% {
    transform: translateY(-6px) rotate(-0.8deg);
  }
}

/* ---------- Journey (signature) ---------- */

.journey {
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  overflow: hidden;
}

.journey-track {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 250px;
  pointer-events: none;
}

.journey-track svg {
  width: 100%;
  height: 100%;
}

.journey-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: none;
}

.journey.is-visible .journey-path {
  transition: stroke-dashoffset 2.2s var(--ease) 0.2s;
  stroke-dashoffset: 0;
}

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.journey-step {
  position: relative;
  padding-top: 118px;
}

.journey-node {
  position: absolute;
  inset-inline-start: 50%;
  top: 64px;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blush-deep);
  box-shadow: var(--shadow-soft);
  z-index: 3;
}

[dir="rtl"] .journey-node {
  transform: translate(50%, -50%);
}

.journey-node::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--honey);
  opacity: 0;
  animation: pulse 3s ease-out infinite;
}

.journey-node.is-hot::after {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.journey-node svg {
  width: 38px;
  height: 38px;
  color: var(--plum);
}

.stage-grossesse .journey-node {
  border-color: var(--blush-deep);
}

.stage-nouveau-ne .journey-node {
  border-color: var(--sage);
}

.stage-nourrisson .journey-node {
  border-color: var(--honey);
}

.stage-tout-petit .journey-node {
  border-color: var(--plum-soft);
}

.journey-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-step.is-seen .journey-card {
  animation: cardPop 0.7s var(--ease) both;
}

.journey-step:nth-child(2) .journey-card {
  animation-delay: 0.12s;
}

.journey-step:nth-child(3) .journey-card {
  animation-delay: 0.24s;
}

.journey-step:nth-child(4) .journey-card {
  animation-delay: 0.36s;
}

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.journey-step h3 {
  font-size: 1.28rem;
  margin-bottom: 4px;
}

.age-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--plum-soft);
  background: var(--blush);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.stage-nouveau-ne .age-chip {
  background: #e3ead9;
  color: var(--sage-deep);
}

.stage-nourrisson .age-chip {
  background: #f8e6c6;
  color: #8a641f;
}

.stage-tout-petit .age-chip {
  background: var(--plum);
  color: var(--honey);
}

.journey-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--plum);
  margin-top: auto;
}

.link-more .arrow {
  transition: transform 0.25s var(--ease);
}

[dir="rtl"] .link-more .arrow {
  transform: scaleX(-1);
}

.link-more:hover .arrow {
  transform: translateX(4px);
}

[dir="rtl"] .link-more:hover .arrow {
  transform: translateX(-4px) scaleX(-1);
}

/* ---------- Cards ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--plum);
}

.chips {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.read-time {
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.card h3 {
  font-size: 1.22rem;
  margin: 0;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
  flex: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum);
  font-size: 0.92rem;
}

.card-cta .arrow {
  transition: transform 0.25s var(--ease);
}

[dir="rtl"] .card-cta .arrow {
  transform: scaleX(-1);
}

.card:hover .card-cta .arrow {
  transform: translateX(4px);
}

[dir="rtl"] .card:hover .card-cta .arrow {
  transform: translateX(-4px) scaleX(-1);
}

/* ---------- Choice ---------- */

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: start;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.choice-card.is-selected {
  border-color: var(--plum);
  background: linear-gradient(180deg, var(--white), var(--blush) 160%);
}

.choice-sa {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--plum);
  background: var(--honey);
  border-radius: 999px;
  padding: 4px 14px;
}

.choice-card h3 {
  font-size: 1.35rem;
  margin: 4px 0 0;
}

.choice-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.choice-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum);
  margin-top: 10px;
}

.choice-cta .arrow {
  transition: transform 0.25s var(--ease);
}

[dir="rtl"] .choice-cta .arrow {
  transform: scaleX(-1);
}

.choice-card:hover .choice-cta .arrow {
  transform: translateX(4px);
}

[dir="rtl"] .choice-card:hover .choice-cta .arrow {
  transform: translateX(-4px) scaleX(-1);
}

.choice-selected {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ivory);
  background: var(--plum);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--honey);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  color: #4d340f;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.cta-band p {
  color: #6b4a16;
  margin: 0;
  max-width: 46ch;
}

/* ---------- Guides page ---------- */

.track-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.tracks-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-inline-end: 6px;
}

.track-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.track-tab:hover {
  border-color: var(--plum-soft);
}

.track-tab.is-active {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--honey);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.search-box {
  position: relative;
  flex: 1 1 320px;
}

.search-box svg {
  position: absolute;
  inset-inline-start: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  pointer-events: none;
}

.search-input {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 15px 22px 15px 52px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

[dir="rtl"] .search-input {
  padding: 15px 52px 15px 22px;
}

.search-input:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(91, 52, 73, 0.12);
}

.search-input::placeholder {
  color: var(--ink-soft);
  opacity: 0.7;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.filter-pill:hover {
  border-color: var(--plum-soft);
  color: var(--plum);
}

.filter-pill.is-active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.results-count {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum-soft);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border: 2px dashed var(--blush-deep);
  border-radius: var(--radius-lg);
}

.empty-state.is-visible {
  display: block;
}

.empty-state svg {
  width: 90px;
  height: 90px;
  margin-inline: auto;
  margin-bottom: 16px;
  color: var(--blush-deep);
}

.empty-state h3 {
  margin-bottom: 6px;
}

.empty-state p {
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Guide article ---------- */

.guide-top {
  margin-bottom: 40px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.back-link:hover {
  color: var(--plum);
}

.back-link .arrow {
  transition: transform 0.25s var(--ease);
}

[dir="rtl"] .back-link .arrow {
  transform: scaleX(-1);
}

.back-link:hover .arrow {
  transform: translateX(-4px);
}

[dir="rtl"] .back-link:hover .arrow {
  transform: translateX(4px) scaleX(-1);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.guide-top h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  max-width: 18ch;
}

.guide-top .guide-excerpt {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

.article-body {
  max-width: 720px;
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-block: 40px 14px;
}

.article-body p {
  color: var(--ink);
  font-size: 1.04rem;
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-inline-start: 22px;
  color: var(--ink);
  margin-bottom: 22px;
}

.article-body li::marker {
  color: var(--sage-deep);
  font-weight: 700;
}

.callout {
  background: var(--blush);
  border-inline-start: 5px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-block: 26px;
}

.callout .callout-note {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
  color: var(--ink);
}

.callout-warn {
  background: #fbeed8;
  border-inline-start-color: var(--honey);
}

.callout-warn .callout-note {
  color: #8a5a0f;
}

/* ---------- About / Contact ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--blush) 0%, rgba(243, 211, 213, 0) 100%);
  padding-block: clamp(56px, 8vw, 100px);
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 20ch;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 58ch;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--blush);
  color: var(--plum);
  margin-bottom: 18px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
}

.bio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.bio-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blush), var(--honey));
  display: grid;
  place-items: center;
  color: var(--plum);
}

.bio-avatar svg {
  width: 66px;
  height: 66px;
}

.bio-card h3 {
  margin-bottom: 4px;
}

.bio-role {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--plum-soft);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.bio-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.wa-art {
  background: #0f3d26;
  border-radius: var(--radius-lg);
  padding: 40px 26px;
  text-align: center;
  color: #bdffd6;
}

.wa-art svg {
  width: 84px;
  height: 84px;
  margin-inline: auto;
  margin-bottom: 12px;
}

.wa-art h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.wa-art p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--plum);
}

.contact-phone svg {
  width: 24px;
  height: 24px;
  color: #25d366;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--plum);
  color: #e8d6dc;
  margin-top: clamp(80px, 10vw, 120px);
}

.footer-inner {
  padding-block: clamp(50px, 6vw, 72px) 40px;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.footer-inner .brand-name {
  color: var(--ivory);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  margin-inline-start: auto;
}

.footer-links a {
  color: #e8d6dc;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--honey);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #c3a8b2;
  text-align: center;
}

.footer-bottom a {
  color: var(--honey);
  text-decoration: underline;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Scroll progress ---------- */

.scroll-progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 4px;
  width: 0%;
  background: var(--honey);
  z-index: 70;
  border-radius: 0 4px 4px 0;
}

[dir="rtl"] .scroll-progress {
  border-radius: 4px 0 0 4px;
}

/* ---------- Responsive ---------- */

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

  .nav-toggle {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: start;
  }

  .hero-art {
    order: -1;
  }

  .hero-art svg.main-art,
  .hero-art img.main-art {
    width: min(300px, 80%);
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 84px;
  }

  .journey-track {
    display: none;
  }

  .journey-step:nth-child(even) .journey-node {
    inset-inline-start: 50%;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .results-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bio-card,
  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-avatar {
    margin-inline: auto;
  }

  .contact-phone {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .cards-grid,
  .results-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-step {
    padding-top: 0;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 18px;
    text-align: start;
  }

  .journey-node {
    position: relative;
    inset-inline-start: auto;
    top: auto;
    transform: none;
    width: 60px;
    height: 60px;
  }

  .journey-node svg {
    width: 28px;
    height: 28px;
  }

  .journey-step p {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}