/* ============================================================
   小結（こゆね）マヤ暦セッション LP
   main.css v20260502a
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  /* colors */
  --c-bg:           #F7F4E8;
  --c-bg-soft:      #EAEAD8;
  --c-leaf-light:   #D4DDB1;
  --c-leaf:         #A8B872;
  --c-leaf-dark:    #7A8B4A;
  --c-text:         #3A3A2E;
  --c-text-soft:    #6B6B5A;
  --c-text-mute:    #9A9A8A;
  --c-cta:          #E89B5A;
  --c-cta-dark:     #C77B3D;
  --c-cta-text:     #FFFFFF;
  --c-card:         #FAF8EE;
  --c-card-border:  #D8D5BC;
  --c-bubble:       #DCE5BC;
  --c-bubble-soft:  #E7EFD0;

  /* typography */
  --ff-mincho: 'Shippori Mincho B1', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --ff-sans: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --ff-en: 'Cormorant Garamond', serif;

  /* spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* layout */
  --container-w: 720px;
  --container-narrow-w: 580px;
  --content-pad-x: 20px;

  /* radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text);
  background:
    radial-gradient(ellipse at top right, #EFEEDB 0%, #F7F4E8 60%, #F7F4E8 100%),
    var(--c-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button, input { font: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 8px; top: 8px;
  width: auto; height: auto;
  background: #fff;
  color: var(--c-text);
  padding: 8px 16px;
  z-index: 100;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--c-leaf-dark);
  outline-offset: 2px;
}

/* ---------- Layout containers ---------- */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--content-pad-x);
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: var(--container-narrow-w); }

.section {
  padding-block: var(--sp-7);
  position: relative;
}

/* ---------- Decorative leaves (background) ---------- */
.leaf-decoration {
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.leaf-decoration img { width: 100%; height: auto; }
.leaf-decoration--left  { left: 0;  width: 90px; }
.leaf-decoration--right { right: 0; width: 90px; }
@media (min-width: 768px) {
  .leaf-decoration--left  { width: 140px; }
  .leaf-decoration--right { width: 140px; }
}

/* ---------- Typography helpers ---------- */
.section__title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-text);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .section__title { font-size: 26px; white-space: normal; }
}

.rule { display: block; }
.rule--leaf {
  width: 200px;
  height: 14px;
  margin-block: var(--sp-4);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'><path d='M5 7 Q 50 0 100 7 Q 150 14 195 7' stroke='%23A8B872' stroke-width='1' fill='none'/><circle cx='100' cy='7' r='2' fill='%23A8B872'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* leaf 区切りアイコン（タイトル左右） */
.leaf-divider {
  display: inline-block;
  width: 28px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 14'><path d='M2 8 Q 14 0 26 8 Q 14 14 2 8 Z' fill='%23A8B872' opacity='0.7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.leaf-divider--right { transform: scaleX(-1); }

/* ============================================================
   FV (ファーストビュー)
   ============================================================ */
.fv {
  padding-block: var(--sp-5) var(--sp-6);
}

.fv__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
@media (min-width: 768px) {
  .fv__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.fv__role {
  font-family: var(--ff-mincho);
  font-size: 12px;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
}

.fv__name {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 32px;
  color: var(--c-text);
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: 4px;
  position: relative;
}
.fv__name-main {
  font-size: 36px;
  letter-spacing: 0.18em;
}
.fv__name-sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
}
.fv__lotus {
  margin-left: var(--sp-2);
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.fv__tags {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fv__tags { align-items: flex-end; }
}

.tag-list {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.tag {
  background: var(--c-bubble);
  color: var(--c-text);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.fv__service-name {
  font-family: var(--ff-mincho);
  font-size: 13px;
  color: var(--c-text-soft);
  letter-spacing: 0.05em;
}
.fv__service-name span {
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.fv__main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  align-items: stretch;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .fv__main {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-5);
  }
  .fv__copy   { flex: 1 1 52%; order: 1; }
  .fv__visual { flex: 1 1 48%; order: 2; }
}

.fv__headline {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.45;
  color: var(--c-text);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-3);
  position: relative;
  display: inline-block;
}
.fv__headline-indent {
  display: inline-block;
  padding-left: 1em;
}
.fv__headline::before,
.fv__headline::after {
  content: '✦';
  position: absolute;
  font-size: 16px;
  color: var(--c-leaf);
  opacity: 0.5;
  pointer-events: none;
}
.fv__headline::before { left: -10px; top: 0.4em; }
.fv__headline::after  { right: 0.5em; bottom: 0.3em; }

@media (min-width: 768px) {
  .fv__headline { font-size: 36px; }
}

.fv__sub {
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.85;
  margin-top: var(--sp-3);
}
@media (min-width: 768px) {
  .fv__sub { font-size: 14px; }
}

.fv__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(58, 58, 46, 0.08);
  width: 100%;
  position: relative;
  z-index: 1;
}
.fv__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5 / 4;
  display: block;
}
@media (min-width: 768px) {
  .fv__visual img { aspect-ratio: 4 / 3; }
}

/* ============================================================
   悩みセクション
   ============================================================ */
.trouble {
  padding-block: var(--sp-6) var(--sp-7);
}

.trouble__title {
  font-size: 18px;
  margin-bottom: var(--sp-5);
  color: var(--c-text);
  font-weight: 500;
}
@media (min-width: 768px) {
  .trouble__title { font-size: 20px; }
}

.trouble__list {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: var(--sp-6);
}

.trouble__item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.trouble__bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-bubble-soft) 0%, var(--c-bubble) 80%);
  color: var(--c-text);
  font-size: 11px;
  line-height: 1.6;
  padding: var(--sp-3);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    0 4px 8px rgba(168, 184, 114, 0.15);
}
@media (min-width: 768px) {
  .trouble__bubble {
    max-width: 170px;
    font-size: 13px;
  }
}

.trouble__bridge {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: var(--sp-3);
}
@media (min-width: 768px) {
  .trouble__bridge { font-size: 16px; }
}
.trouble__bridge::before,
.trouble__bridge::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 14px;
  vertical-align: middle;
  margin-inline: var(--sp-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 14'><path d='M2 8 Q 14 0 26 8 Q 14 14 2 8 Z' fill='%23A8B872' opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.trouble__bridge::after { transform: scaleX(-1); }

/* ============================================================
   マヤ暦セッションとは？
   ============================================================ */
.about-session {
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.18) 0%, rgba(247, 244, 232, 0) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
  padding-block: var(--sp-7);
}
@media (min-width: 768px) {
  .about-session { margin-inline: var(--sp-5); }
}

.about-session__heading,
.reason__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  flex-wrap: nowrap;
}
.about-session__heading .leaf-divider,
.reason__heading .leaf-divider {
  width: 22px;
}
@media (min-width: 768px) {
  .about-session__heading,
  .reason__heading { gap: var(--sp-3); }
  .about-session__heading .leaf-divider,
  .reason__heading .leaf-divider { width: 28px; }
}

.about-session__lead {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 13px;
  color: var(--c-text-soft);
  margin-bottom: var(--sp-6);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .about-session__lead { font-size: 14px; }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .menu-list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }
}

.menu-card {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(58, 58, 46, 0.04);
}

.menu-card__name {
  font-family: var(--ff-mincho);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
.menu-card__leaf {
  margin-right: 4px;
  font-size: 14px;
}

.menu-card__price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px dashed var(--c-leaf-light);
}
.menu-card__time {
  font-size: 13px;
  color: var(--c-text-soft);
}
.menu-card__amount {
  font-family: var(--ff-mincho);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
}

.menu-card__bullets {
  text-align: left;
  font-size: 12px;
  color: var(--c-text);
  line-height: 1.9;
  margin-inline: auto;
  display: inline-block;
}
.menu-card__bullets li {
  position: relative;
  padding-left: 14px;
}
.menu-card__bullets li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--c-leaf-dark);
  font-size: 18px;
  line-height: 1;
}

.payment-note {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 14px;
  color: var(--c-text);
  margin-top: var(--sp-3);
}
.payment-note__icon {
  font-size: 18px;
  margin-left: var(--sp-1);
}

/* ============================================================
   子育て中のママにおすすめな理由
   ============================================================ */
.reason {
  padding-block: var(--sp-7);
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.12) 0%, rgba(247, 244, 232, 0) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
}
@media (min-width: 768px) {
  .reason { margin-inline: var(--sp-5); }
}

.reason__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
  margin-top: var(--sp-5);
}
@media (min-width: 768px) {
  .reason__main {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-6);
  }
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.reason__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .reason__item { font-size: 14px; }
}
.reason__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bubble);
  color: var(--c-leaf-dark);
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 500;
}
.reason__text {
  flex: 1;
}

.reason__illustration {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.reason__illustration img {
  width: 100%;
  height: auto;
}

/* ============================================================
   プロフィール（ABOUT）
   ============================================================ */
.about {
  padding-block: var(--sp-7);
}

.about__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .about__main {
    grid-template-columns: auto 1fr;
    gap: var(--sp-6);
    text-align: left;
  }
}

.about__portrait {
  width: 140px;
  height: 140px;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .about__portrait { width: 160px; height: 160px; }
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }

.about__role {
  font-family: var(--ff-mincho);
  font-size: 12px;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}

.about__name {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 28px;
  color: var(--c-text);
  letter-spacing: 0.18em;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.about__name-sub {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-text-soft);
  margin-left: var(--sp-2);
}

.about__bio {
  font-size: 12px;
  color: var(--c-text);
  line-height: 2;
}
@media (min-width: 768px) {
  .about__bio { font-size: 13px; }
}

/* ============================================================
   CTA セクション
   ============================================================ */
.cta {
  padding-block: var(--sp-7);
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.25) 0%, rgba(220, 229, 188, 0.12) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
}
@media (min-width: 768px) {
  .cta { margin-inline: var(--sp-5); }
}

.cta__title {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .cta__title { font-size: 18px; }
}

.cta__sub {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-soft);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-pill);
  padding: 10px var(--sp-4);
  max-width: 360px;
  margin: 0 auto var(--sp-5);
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 18px var(--sp-5);
  background: linear-gradient(180deg, #E89B5A 0%, #D88A4A 100%);
  color: var(--c-cta-text);
  font-family: var(--ff-mincho);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  box-shadow:
    0 6px 16px rgba(232, 155, 90, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(232, 155, 90, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta__btn:active {
  transform: translateY(0);
}
.cta__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  line-height: 1;
}

.cta__note {
  text-align: center;
  font-size: 11px;
  color: var(--c-text-mute);
  margin-top: var(--sp-4);
}

/* ============================================================
   SNS / 連絡セクション
   ============================================================ */
.contact {
  padding-block: var(--sp-7);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
  }
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 58, 46, 0.1);
}

.contact__card-lead {
  font-size: 11px;
  color: var(--c-text-soft);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}

.contact__card-qr {
  display: block;
  width: 130px;
  height: 130px;
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2);
}
.contact__card-qr img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.contact__card-name {
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text);
  margin-top: var(--sp-2);
}
.contact__card-icon {
  width: 18px; height: 18px;
}
.contact__card-icon--line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 18px;
  padding: 1px 6px;
  background: #06C755;
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
}

.contact__card-handle {
  font-family: var(--ff-en);
  font-size: 11px;
  color: var(--c-text-soft);
  margin-top: 2px;
}

.contact__card--brand {
  grid-column: span 2;
  background: transparent;
  border: none;
  box-shadow: none;
}
@media (min-width: 768px) {
  .contact__card--brand {
    grid-column: span 1;
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
  }
}
.contact__card--brand:hover { transform: none; box-shadow: none; }

.contact__card-lotus {
  width: 64px; height: 64px;
  margin-bottom: var(--sp-2);
  opacity: 0.85;
}

.contact__card-tagline {
  font-family: var(--ff-mincho);
  font-size: 12px;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.contact__card-brand-name {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-text);
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-1);
}
.contact__card-brand-sub {
  font-size: 11px;
  color: var(--c-text-soft);
  letter-spacing: 0.05em;
}

/* ============================================================
   フッター
   ============================================================ */
.footer {
  padding-block: var(--sp-5) var(--sp-6);
  text-align: center;
  background: rgba(220, 229, 188, 0.18);
}
.footer__copy {
  font-size: 11px;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
}
.footer__links {
  margin-top: var(--sp-2);
  font-size: 11px;
}
.footer__links a {
  color: var(--c-text-soft);
  text-decoration: underline;
}
.footer__links a:hover { color: var(--c-text); }

/* ============================================================
   Scroll-in animation (only section titles)
   ELLIE 反省点 #3：title のみ観測 + rootMargin
   ============================================================ */
.section__title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section__title.is-visible,
.fv__headline {
  opacity: 1;
  transform: translateY(0);
}
.fv__headline { transition: none; }

@media (prefers-reduced-motion: reduce) {
  .section__title { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .leaf-decoration, .skip-link { display: none; }
  body { background: #fff; }
}
