/* ============================================================
   Mor Pati Derneği — "Warm Sanctuary"
   Design system + global styles
   Fraunces (display) · Hanken Grotesk (body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color — OKLCH, neutrals tinted toward plum (~322) */
  --paper:       oklch(0.966 0.012 78);
  --paper-2:     oklch(0.935 0.020 76);
  --paper-3:     oklch(0.905 0.026 74);
  --card:        oklch(0.988 0.007 82);
  --ink:         oklch(0.245 0.030 322);
  --ink-soft:    oklch(0.445 0.038 322);
  --mist:        oklch(0.560 0.030 322);
  --line:        oklch(0.880 0.016 322);
  --line-soft:   oklch(0.915 0.012 322);

  --plum:        oklch(0.300 0.058 322);
  --plum-deep:   oklch(0.215 0.050 322);
  --grape:       oklch(0.500 0.150 312);
  --grape-bright:oklch(0.580 0.165 308);
  --grape-soft:  oklch(0.905 0.045 312);
  --grape-tint:  oklch(0.955 0.022 312);

  --honey:       oklch(0.785 0.135 68);
  --honey-deep:  oklch(0.660 0.140 60);
  --honey-soft:  oklch(0.930 0.060 78);

  --sky-soft:    oklch(0.930 0.040 232);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.36rem + 0.7vw, 1.95rem);
  --step-3:  clamp(1.9rem, 1.64rem + 1.3vw, 2.7rem);
  --step-4:  clamp(2.4rem, 1.95rem + 2.2vw, 3.8rem);
  --step-5:  clamp(3rem, 2.2rem + 4vw, 5.6rem);

  /* Space */
  --gutter: clamp(1.15rem, 0.6rem + 2.6vw, 2.5rem);
  --shell: 1200px;
  --shell-wide: 1340px;

  /* Form */
  --radius: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  /* Elevation — warm, plum-tinted shadows (never pure black) */
  --shadow-1: 0 1px 2px oklch(0.30 0.05 322 / 0.05), 0 4px 14px oklch(0.30 0.05 322 / 0.06);
  --shadow-2: 0 2px 6px oklch(0.30 0.05 322 / 0.07), 0 18px 40px oklch(0.30 0.05 322 / 0.10);
  --shadow-honey: 0 10px 28px oklch(0.66 0.14 60 / 0.28);
  --shadow-grape: 0 12px 30px oklch(0.50 0.15 312 / 0.30);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* ease-out-expo-ish */
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Paper texture: faint grain + paw constellation, fixed, behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--paper);
  background-image:
    radial-gradient(60% 50% at 12% -5%, oklch(0.90 0.05 312 / 0.35), transparent 70%),
    radial-gradient(50% 45% at 100% 0%, oklch(0.93 0.06 78 / 0.45), transparent 70%),
    radial-gradient(55% 60% at 85% 105%, oklch(0.90 0.05 312 / 0.30), transparent 70%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--grape);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--plum-deep);
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); font-weight: 560; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-weight: 600; }
p { text-wrap: pretty; }

.display-italic { font-style: italic; font-variation-settings: "SOFT" 60; }

/* ---------- Layout helpers ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell-wide { max-width: var(--shell-wide); }
.section { padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.stack > * + * { margin-top: 1rem; }
.measure { max-width: 64ch; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grape);
}
.eyebrow::before {
  content: "";
  width: 1.7em; height: 2px;
  background: var(--honey-deep);
  border-radius: 2px;
}
.eyebrow.is-light { color: var(--honey); }
.eyebrow.is-light::before { background: var(--honey); }

.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }

/* Decorative paw divider (replaces the original's bare em-dash) */
.paw-rule {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  color: var(--grape-soft);
  margin-block: clamp(1.5rem, 4vw, 3rem);
}
.paw-rule::before, .paw-rule::after {
  content: ""; height: 1px; flex: 1; max-width: 130px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.paw-rule::after { background: linear-gradient(90deg, var(--line), transparent); }
.paw-rule svg { width: 22px; height: 22px; color: var(--grape); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.92em 1.5em;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out),
              background-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.985); transition-duration: 0.08s; }

.btn-primary { background: var(--grape); color: oklch(0.99 0.01 312); box-shadow: var(--shadow-grape); }
.btn-primary:hover { background: var(--grape-bright); }

.btn-honey { background: var(--honey); color: var(--plum-deep); box-shadow: var(--shadow-honey); }
.btn-honey:hover { background: oklch(0.82 0.14 70); }

.btn-ghost {
  background: transparent; color: var(--plum);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--grape); color: var(--grape); }

.btn-light { background: oklch(0.99 0.01 80); color: var(--plum-deep); box-shadow: var(--shadow-1); }
.btn-light:hover { background: #fff; }

.btn-block { display: flex; width: 100%; justify-content: center; }

/* Animated honey-underline text link */
.link-underline {
  position: relative; font-weight: 700; color: var(--grape);
  background-image: linear-gradient(var(--honey), var(--honey));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.4s var(--ease-out);
  padding-bottom: 2px;
}
.link-underline:hover { background-size: 100% 2px; }
.link-underline svg { width: 0.85em; height: 0.85em; display: inline-block; vertical-align: middle; margin-left: 0.3em; transition: transform 0.4s var(--ease-out); }
.link-underline:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* Note: padding-block changes on .is-stuck but is intentionally NOT transitioned
     (padding is a layout property; animating it would thrash layout for 0.4s). */
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  padding-block: 1.1rem;
}
.site-header.is-stuck {
  background: oklch(0.97 0.012 78 / 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line-soft), var(--shadow-1);
  padding-block: 0.7rem;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-badge {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--card);
  box-shadow: inset 0 0 0 2px var(--grape-soft), var(--shadow-1);
  transition: transform 0.5s var(--ease-out);
}
.brand:hover .brand-badge { transform: rotate(-8deg) scale(1.05); }
.brand-badge svg { width: 26px; height: 26px; color: var(--grape); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem;
  letter-spacing: 0.02em; color: var(--plum-deep);
}
.brand-text span {
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--grape); font-weight: 700; margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  position: relative; padding: 0.55rem 0.9rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.96rem; color: var(--ink-soft);
  transition: color 0.3s ease, background-color 0.3s ease;
}
.nav a:hover { color: var(--plum-deep); background: var(--grape-tint); }
.nav a[aria-current="page"] { color: var(--grape); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--honey-deep);
}
.header-cta { margin-left: 0.4rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; place-items: center; color: var(--plum); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0.4rem;
    background: var(--paper);
    padding: 6rem 1.6rem 2rem;
    box-shadow: var(--shadow-2);
    transform: translateX(110%);
    transition: transform 0.5s var(--ease-out);
    border-left: 1px solid var(--line);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; padding: 0.85rem 1rem; }
  .header-cta { margin: 0.6rem 0 0; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle .icon-open { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
  .nav-scrim {
    position: fixed; inset: 0; z-index: 99; background: oklch(0.22 0.05 322 / 0.45);
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; padding-block: clamp(3rem, 2rem + 6vw, 6rem) clamp(1.5rem, 1rem + 3vw, 3rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 1.4rem; max-width: 58ch; }

/* ---------- Cards (squircle) ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  box-shadow: var(--shadow-1);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.card.is-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }

.card-plum { background: var(--plum); color: oklch(0.92 0.02 78); border-color: transparent; }
.card-plum h2, .card-plum h3 { color: oklch(0.97 0.02 78); }
.card-plum a { color: var(--honey); }

/* ---------- Footer ---------- */
.site-footer { position: relative; color: oklch(0.92 0.02 78); background: var(--plum-deep); margin-top: clamp(3rem, 6vw, 6rem); overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(45% 60% at 88% 0%, oklch(0.50 0.15 312 / 0.5), transparent 70%),
    radial-gradient(40% 55% at 5% 100%, oklch(0.66 0.14 60 / 0.22), transparent 70%);
}
.footer-top { position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding-block: clamp(3rem, 5vw, 5rem); }
.footer-brand .brand-text b { color: oklch(0.97 0.02 78); }
.footer-blurb { margin-top: 1.2rem; max-width: 38ch; color: oklch(0.82 0.02 78); font-size: 0.97rem; }
.footer-certs { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-pill);
  background: oklch(0.99 0.01 80 / 0.07); border: 1px solid oklch(0.99 0.01 80 / 0.16);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: oklch(0.92 0.02 78);
}
.cert-chip svg { width: 1.1rem; height: 1.1rem; color: var(--honey); }

.footer-col h4 { color: var(--honey); font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.75rem; }
.footer-col a, .footer-col li { color: oklch(0.86 0.02 78); font-size: 0.96rem; transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--honey); }
.footer-col a svg { width: 1rem; height: 1rem; opacity: 0.7; }

.footer-bottom {
  position: relative; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.5rem; border-top: 1px solid oklch(0.99 0.01 80 / 0.12);
  font-size: 0.82rem; color: oklch(0.78 0.02 78);
}
.footer-bottom .socials { display: flex; gap: 0.6rem; }
.footer-bottom .socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: oklch(0.99 0.01 80 / 0.08); transition: background-color 0.3s ease, transform 0.4s var(--ease-out);
}
.footer-bottom .socials a:hover { background: var(--grape); transform: translateY(-3px); }
.footer-bottom .socials svg { width: 1.05rem; height: 1.05rem; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .brand-badge, .nav, .nav-scrim, .info-card, .support-item { transition: none !important; }
  [data-load] { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
}

/* ---------- Page-load orchestration ---------- */
@keyframes loadUp {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
[data-load] { animation: loadUp 0.85s var(--ease-out) both; }
[data-load="1"] { animation-delay: 0.05s; }
[data-load="2"] { animation-delay: 0.16s; }
[data-load="3"] { animation-delay: 0.27s; }
[data-load="4"] { animation-delay: 0.38s; }
[data-load="5"] { animation-delay: 0.49s; }
[data-load="6"] { animation-delay: 0.60s; }

/* ---------- Decorative paw scatter ---------- */
.paw-scatter { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.paw-scatter svg { position: absolute; color: var(--grape); opacity: 0.07; }

.bg-band { position: relative; background: var(--paper-2); }
.bg-band-soft { position: relative; background: linear-gradient(180deg, var(--paper), var(--grape-tint)); }
.bg-plum { position: relative; background: var(--plum-deep); color: oklch(0.92 0.02 78); overflow: hidden; }
.bg-plum h2, .bg-plum h3 { color: oklch(0.97 0.02 78); }
.bg-plum .lede { color: oklch(0.85 0.02 78); }

/* ============================================================
   PAGE COMPONENTS
   ============================================================ */

/* ---------- Home hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 1.5rem + 6vw, 5.5rem) clamp(2rem, 1rem + 4vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.hero-copy h1 { font-size: var(--step-5); }
.hero-copy h1 .accent { color: var(--grape); font-style: italic; }
.hero-copy .lede { margin-top: 1.6rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2.4rem; color: var(--ink-soft); font-size: 0.9rem; }
.hero-trust .t-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 1.2rem; height: 1.2rem; color: var(--grape); }

/* Hero visual: layered photo in organic frame + floating cards */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; aspect-ratio: 4 / 4.4; border-radius: 48% 48% 46% 46% / 40% 40% 50% 50%;
  overflow: hidden; background: var(--grape-soft);
  box-shadow: var(--shadow-2);
  border: 6px solid var(--card);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-blob {
  position: absolute; inset: -8% -6% -6% -8%; z-index: -1;
  background: radial-gradient(circle at 35% 30%, var(--honey-soft), transparent 60%),
              radial-gradient(circle at 70% 75%, var(--grape-soft), transparent 62%);
  border-radius: 50%; filter: blur(8px);
}
.float-card {
  position: absolute; background: var(--card); border-radius: 20px; padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-2); display: flex; align-items: center; gap: 0.7rem;
  border: 1px solid var(--line-soft);
}
.float-card .fc-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float-card .fc-icon svg { width: 1.2rem; height: 1.2rem; }
.float-card b { display: block; font-family: var(--font-display); font-size: 1.15rem; line-height: 1; color: var(--plum-deep); }
.float-card span { font-size: 0.78rem; color: var(--ink-soft); }
.float-card.fc-1 { top: 8%; left: -6%; animation: floaty 6s ease-in-out infinite; }
.float-card.fc-2 { bottom: 10%; right: -8%; animation: floaty 7s ease-in-out infinite 0.8s; }
.float-card.fc-1 .fc-icon { background: var(--honey-soft); color: var(--honey-deep); }
.float-card.fc-2 .fc-icon { background: var(--grape-soft); color: var(--grape); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none !important; } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-inline: auto; order: -1; }
  .float-card.fc-1 { left: 0; }
  .float-card.fc-2 { right: 0; }
}

/* ---------- Impact stats ---------- */
.impact { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 1.8rem + 3.4vw, 4.4rem); line-height: 1; color: oklch(0.97 0.02 78); letter-spacing: -0.02em; }
.stat .num .suffix { color: var(--honey); }
.stat .label { margin-top: 0.7rem; font-size: 0.95rem; color: oklch(0.84 0.02 78); }
.impact .stat + .stat { position: relative; }
@media (max-width: 760px) { .impact { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 60ch; }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head p { margin-top: 1rem; color: var(--ink-soft); font-size: var(--step-1); line-height: 1.5; }

/* ---------- Feature / teaser split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.split.reverse > .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-2); aspect-ratio: 5/4; object-fit: cover; }
.split-media .tag {
  position: absolute; bottom: -18px; left: 24px;
  background: var(--card); border-radius: var(--radius-pill); padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow-2); font-weight: 700; color: var(--plum-deep); display: flex; align-items: center; gap: 0.5rem;
}
.split-media .tag svg { width: 1.2rem; height: 1.2rem; color: var(--grape); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse > .split-media { order: 0; }
}

/* ---------- Process steps (home adoption flow) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step-card { position: relative; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-1); }
.step-card .step-num {
  counter-increment: step; font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--grape-soft); color: var(--grape); margin-bottom: 1rem;
}
.step-card .step-num::before { content: "0" counter(step); }
.step-card h4 { margin-bottom: 0.45rem; }
.step-card p { font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Generic 3-up grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2rem); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Info card with icon ---------- */
.info-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 1.5vw, 2.2rem); box-shadow: var(--shadow-1); transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.info-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--grape-soft); color: var(--grape); margin-bottom: 1.2rem; }
.info-icon svg { width: 1.6rem; height: 1.6rem; }
.info-icon.honey { background: var(--honey-soft); color: var(--honey-deep); }
.info-card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.info-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Checklist (rules / "bilmeniz gerekenler") ---------- */
.checklist { display: grid; gap: 1.1rem; }
.checklist li { display: flex; gap: 0.9rem; align-items: flex-start; }
.checklist .mark { flex: none; width: 1.7rem; height: 1.7rem; border-radius: 50%; display: grid; place-items: center; background: var(--grape-soft); color: var(--grape); margin-top: 0.15rem; }
.checklist .mark svg { width: 1rem; height: 1rem; }
.checklist p { color: var(--ink); }
.checklist p b { color: var(--plum-deep); }

/* ---------- Numbered questions ---------- */
.qlist { counter-reset: q; display: grid; gap: 1rem; }
.qlist li { counter-increment: q; display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); }
.qlist li:last-child { border-bottom: none; padding-bottom: 0; }
.qlist li::before {
  content: counter(q); flex: none; font-family: var(--font-display); font-weight: 600;
  width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--plum); color: var(--honey); font-size: 0.95rem;
}

/* ---------- Do / Don't ---------- */
.dosdonts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.dd-col { border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); }
.dd-col h3 { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 1.3rem; }
.dd-col h3 .dd-ico { width: 2.1rem; height: 2.1rem; border-radius: 50%; display: grid; place-items: center; flex: none; }
.dd-col h3 .dd-ico svg { width: 1.1rem; height: 1.1rem; }
.dd-do { background: oklch(0.96 0.04 150); border: 1px solid oklch(0.86 0.06 150); }
.dd-do h3 { color: oklch(0.40 0.10 150); }
.dd-do .dd-ico { background: oklch(0.88 0.09 150); color: oklch(0.42 0.12 150); }
.dd-dont { background: oklch(0.96 0.035 28); border: 1px solid oklch(0.88 0.05 28); }
.dd-dont h3 { color: oklch(0.48 0.13 28); }
.dd-dont .dd-ico { background: oklch(0.90 0.07 28); color: oklch(0.52 0.15 28); }
.dd-col ul { display: grid; gap: 0.85rem; }
.dd-col li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ink); }
.dd-col li svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: 0.28rem; }
.dd-do li svg { color: oklch(0.52 0.12 150); }
.dd-dont li svg { color: oklch(0.58 0.15 28); }
@media (max-width: 700px) { .dosdonts { grid-template-columns: 1fr; } }

/* ---------- Adoption journey timeline ---------- */
.journey { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 2rem); }
.journey::before {
  content: ""; position: absolute; top: 28px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--grape-soft) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.jstep { position: relative; z-index: 1; text-align: center; }
.jstep .dot {
  width: 58px; height: 58px; margin: 0 auto 1.3rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--card); box-shadow: var(--shadow-1); border: 2px solid var(--grape-soft); color: var(--grape);
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
}
.jstep .when { font-weight: 800; color: var(--grape); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.jstep h4 { margin: 0.5rem 0 0.7rem; font-size: var(--step-1); }
.jstep ul { display: grid; gap: 0.55rem; text-align: left; }
.jstep li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.jstep li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--honey-deep); margin-top: 0.6rem; }
@media (max-width: 820px) {
  .journey { grid-template-columns: 1fr; gap: 0; }
  .journey::before { top: 0; bottom: 0; left: 28px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--grape-soft) 0 10px, transparent 10px 20px); }
  .jstep { display: grid; grid-template-columns: 58px 1fr; gap: 1.2rem; text-align: left; padding-bottom: 2.2rem; }
  .jstep .dot { margin: 0; }
  .jstep ul { grid-column: 2; }
  .jstep .when, .jstep h4 { grid-column: 2; }
}

/* ---------- Care columns (günlük yaşam) ---------- */
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.care-col { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 1.5vw, 2rem); box-shadow: var(--shadow-1); }
.care-col .info-icon { margin-bottom: 1rem; }
.care-col p { color: var(--ink-soft); font-size: 0.96rem; }
.care-col p + p { margin-top: 0.9rem; }
.care-col strong { color: var(--plum-deep); font-weight: 700; }
@media (max-width: 860px) { .care-grid { grid-template-columns: 1fr; } }

/* ---------- Support areas (kurumsal) ---------- */
.support-list { display: grid; gap: 1rem; }
.support-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 1rem + 1.2vw, 1.9rem); box-shadow: var(--shadow-1);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s ease;
}
.support-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--grape-soft); }
.support-item .s-icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: var(--grape-soft); color: var(--grape); }
.support-item .s-icon svg { width: 1.7rem; height: 1.7rem; }
.support-item:nth-child(even) .s-icon { background: var(--honey-soft); color: var(--honey-deep); }
.support-item h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.support-item p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Why-us list (kurumsal) ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.2rem; }
.why-grid li { display: flex; gap: 0.85rem; align-items: flex-start; }
.why-grid .why-mark { flex: none; width: 1.9rem; height: 1.9rem; border-radius: 50%; display: grid; place-items: center; background: oklch(0.99 0.01 80 / 0.1); color: var(--honey); }
.why-grid .why-mark svg { width: 1rem; height: 1rem; }
.why-grid p { color: oklch(0.88 0.02 78); }
.why-grid p b { color: oklch(0.98 0.02 78); display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.2rem; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.2rem, 1.5rem + 4vw, 4rem); background: var(--plum); color: oklch(0.94 0.02 78); }
.cta-band.honey { background: linear-gradient(120deg, var(--honey-deep), var(--honey)); color: var(--plum-deep); }
.cta-band.honey h2, .cta-band.honey p { color: var(--plum-deep); }
.cta-band h2 { color: oklch(0.97 0.02 78); }
.cta-band p { color: oklch(0.86 0.02 78); margin-top: 0.9rem; max-width: 52ch; }
.cta-band .cta-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-inner { position: relative; z-index: 1; max-width: 60ch; }

/* ---------- Closing reflection card ---------- */
.reflect { position: relative; overflow: hidden; }
.reflect .reflect-quote { font-family: var(--font-display); font-style: italic; font-size: var(--step-2); line-height: 1.3; color: oklch(0.97 0.02 78); }
.reflect p { margin-top: 1.2rem; }

/* ---------- Mission columns (hakkımızda) ---------- */
.mission-cols { columns: 2; column-gap: clamp(2rem, 4vw, 3.5rem); }
.mission-cols p { break-inside: avoid; margin-bottom: 1.1rem; color: var(--ink-soft); font-size: var(--step-0); }
.mission-cols p:first-child::first-letter {
  font-family: var(--font-display); font-weight: 600; float: left; font-size: 3.6em; line-height: 0.78;
  padding: 0.06em 0.12em 0 0; color: var(--grape);
}
@media (max-width: 720px) { .mission-cols { columns: 1; } }

/* ---------- Value chips (hakkımızda) ---------- */
.values { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.value-chip { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.7rem 1.2rem; border-radius: var(--radius-pill); background: var(--card); border: 1px solid var(--line); font-weight: 600; color: var(--plum); box-shadow: var(--shadow-1); }
.value-chip svg { width: 1.15rem; height: 1.15rem; color: var(--grape); }

/* ---------- Contact rows ---------- */
.contact-rows { display: grid; gap: 0.5rem; }
.contact-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 0; }
.contact-row svg { width: 1.2rem; height: 1.2rem; color: var(--honey); flex: none; }

/* ---------- Belge (certificate) page ---------- */
.belge-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.belge-figure { position: sticky; top: 110px; margin: 0; }
.belge-figure a { display: block; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--line); background: oklch(0.99 0.005 80); transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); }
.belge-figure a:hover { transform: translateY(-4px); box-shadow: var(--shadow-2), var(--shadow-grape); }
.belge-figure img { width: 100%; display: block; }
.belge-figure figcaption { margin-top: 0.9rem; font-size: 0.85rem; color: var(--mist); display: inline-flex; align-items: center; gap: 0.45rem; }
.belge-figure figcaption svg { width: 1rem; height: 1rem; color: var(--grape); }

.spec-list { margin: 1.6rem 0 0; border-top: 1px solid var(--line); }
.spec-row { display: flex; justify-content: space-between; gap: 1.2rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); }
.spec-row dt { color: var(--ink-soft); font-size: 0.95rem; }
.spec-row dd { font-weight: 700; color: var(--plum-deep); text-align: right; }

.verify-note { display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem; padding: 1.3rem 1.5rem; border-radius: var(--radius); background: var(--grape-tint); border: 1px solid var(--grape-soft); }
.verify-note .vn-icon { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 12px; display: grid; place-items: center; background: var(--card); color: var(--grape); box-shadow: var(--shadow-1); }
.verify-note .vn-icon svg { width: 1.4rem; height: 1.4rem; }
.verify-note h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grape); margin-bottom: 0.3rem; }
.verify-note p { font-size: 0.92rem; color: var(--ink-soft); }
.verify-note code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.82rem; color: var(--plum-deep); word-break: break-all; }

@media (max-width: 820px) {
  .belge-layout { grid-template-columns: 1fr; }
  .belge-figure { position: static; max-width: 460px; }
}

/* Utility */
.mt-s { margin-top: 1.2rem; }
.mt-m { margin-top: 2rem; }
.mt-l { margin-top: 3rem; }
.tac { text-align: center; }
.hidden { display: none; }

