/* ==========================================================================
   NARM Türkiye — narmturkey.com
   Design system v2: warm, organic, editorial. Pine green + clay + sand + gold.
   Type: Fraunces (display serif) + Inter (body sans)
   ========================================================================== */

:root {
  /* Palette */
  --ink: #21302a;
  --pine: #2e4f43;
  --pine-deep: #223c33;
  --sage: #7fa08d;
  --sage-soft: #dbe6de;
  --clay: #c05f36;
  --clay-soft: #f3e0d5;
  --gold: #d9a441;
  --gold-soft: #f2e3c4;
  --sand: #f7f2ea;
  --cream: #fdfbf7;
  --white: #ffffff;
  --line: rgba(33, 48, 42, 0.12);
  --line-soft: rgba(33, 48, 42, 0.07);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1.0625rem;
  --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  --text-2xl: clamp(1.9rem, 1.5rem + 2vw, 2.8rem);
  --text-hero: clamp(2.5rem, 1.6rem + 4.2vw, 4.6rem);

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(33, 48, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(33, 48, 42, 0.1);
  --shadow-lg: 0 24px 70px rgba(33, 48, 42, 0.16);

  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { padding-left: 1.2rem; }

::selection { background: var(--gold); color: var(--ink); }

/* Anchored targets (#basics, #uygulayici…) must not hide under the sticky header */
[id] { scroll-margin-top: 90px; }

/* Film-grain texture over everything — the difference between "flat" and "warm" */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); font-weight: 520; }
h4 { font-size: var(--text-lg); font-weight: 600; line-height: 1.35; }

.lead {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: rgba(33, 48, 42, 0.76);
  max-width: 62ch;
}
p { max-width: 68ch; }
em.accent { font-style: italic; color: var(--clay); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  opacity: 0.7;
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before,
.section-head.centered .eyebrow::after {
  content: "";
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  opacity: 0.55;
}
.section-head.centered .lead { margin-inline: auto; }
.section-head h2 { margin-bottom: 1rem; }

.bg-sand { background: var(--sand); }
.bg-pine { background: var(--pine-deep); color: var(--sand); }
.bg-pine h2, .bg-pine h3 { color: var(--cream); }
.bg-pine .lead { color: rgba(247, 242, 234, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn:hover::before { left: 120%; }
.btn svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--pine); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--pine-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-clay { background: var(--clay); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-clay:hover { background: #a94f2a; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--pine); background: rgba(46, 79, 67, 0.05); transform: translateY(-2px); }
.bg-pine .btn-ghost, .program-spotlight .btn-ghost { border-color: rgba(247, 242, 234, 0.35); color: var(--sand); }
.bg-pine .btn-ghost:hover, .program-spotlight .btn-ghost:hover { border-color: var(--sand); background: rgba(247, 242, 234, 0.08); }
.btn-sm { padding: 0.6rem 1.25rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease;
}
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--pine) 0%, var(--sage) 35%, var(--gold) 70%, var(--clay) 100%);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand .mark { width: 36px; height: 36px; transition: transform 0.4s ease; }
.brand:hover .mark { transform: rotate(-6deg) scale(1.05); }
.brand em { font-style: italic; font-weight: 420; color: var(--clay); }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(33, 48, 42, 0.72);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--clay);
  transition: right 0.25s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-switch {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.lang-switch:hover { border-color: var(--clay); color: var(--clay); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s 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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(217, 164, 65, 0.16), transparent 60%),
    radial-gradient(900px 600px at -12% 110%, rgba(127, 160, 141, 0.18), transparent 55%),
    var(--cream);
  overflow: hidden;
}
/* big dashed orbit behind the hero art */
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1.5px dashed rgba(192, 95, 54, 0.22);
  animation: spinSlow 120s linear infinite;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin: 0 0 1.4rem; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero .lead { margin-bottom: 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--text-sm);
  color: rgba(33, 48, 42, 0.6);
}
.hero-note + .hero-note { margin-top: 0.55rem; }
.hero-note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--sage); }
.hero-note a { color: var(--clay); font-weight: 600; border-bottom: 1px solid rgba(192, 95, 54, 0.3); transition: border-color 0.2s ease; }
.hero-note a:hover { border-color: var(--clay); }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; overflow: visible; }

/* Living illustration: sun breathes, stem draws itself, leaves unfold, seeds drift */
.hero-art .sun-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: breathe 7s ease-in-out infinite;
}
.hero-art .stem {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw 2s cubic-bezier(0.6, 0, 0.3, 1) forwards 0.3s;
}
.hero-art .stem.s2 { animation-delay: 1.9s; animation-duration: 0.8s; }
.hero-art .leaf { opacity: 0; animation: unfold 0.9s ease-out forwards; }
.hero-art .leaf.l1 { animation-delay: 1s; }
.hero-art .leaf.l2 { animation-delay: 1.35s; }
.hero-art .leaf.l3 { animation-delay: 1.7s; }
.hero-art .bud { opacity: 0; animation: unfold 0.8s ease-out forwards 2.5s; }
.hero-art .drift {
  transform-box: fill-box;
  animation: drift 6s ease-in-out infinite alternate;
}
.hero-art .drift.d2 { animation-duration: 8s; animation-delay: 0.8s; }
.hero-art .drift.d3 { animation-duration: 7s; animation-delay: 1.6s; }
.hero-art .drift.d4 { animation-duration: 9s; animation-delay: 0.4s; }

@keyframes breathe { 50% { transform: scale(1.06); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes unfold { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes drift { to { transform: translateY(-12px); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(900px 420px at 92% -20%, rgba(217, 164, 65, 0.14), transparent 60%),
    radial-gradient(700px 500px at -10% 120%, rgba(127, 160, 141, 0.15), transparent 55%),
    var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1.5px dashed rgba(192, 95, 54, 0.25);
  animation: spinSlow 120s linear infinite;
  pointer-events: none;
}
.page-hero::after {
  pointer-events: none;
  content: "";
  position: absolute;
  right: clamp(30px, 8vw, 110px);
  top: 48px;
  width: clamp(64px, 9vw, 110px);
  height: clamp(64px, 9vw, 110px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ecc76e, var(--gold));
  box-shadow: 0 24px 70px rgba(217, 164, 65, 0.45);
  animation: breathe 7s ease-in-out infinite;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: italic; color: var(--clay); }

/* ---------- Theme ribbon (marquee) ---------- */
.ribbon {
  overflow: hidden;
  background: var(--pine-deep);
  color: var(--sand);
  padding: 0.85rem 0;
}
.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbon 40s linear infinite;
}
.ribbon-track span {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: rgba(247, 242, 234, 0.9);
}
.ribbon-track i { font-style: normal; color: var(--gold); font-size: 0.85rem; }
@keyframes ribbon { to { transform: translateX(-50%); } }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.stat {
  position: relative;
  background: var(--cream);
  padding: 2.2rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.stat::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--clay));
  transition: width 0.45s ease;
}
.stat:hover::after { width: 55%; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2rem + 2vw, 3.4rem);
  font-weight: 480;
  color: var(--pine);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.stat b sup { font-size: 0.45em; color: var(--clay); }
.stat span { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.62); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* gradient ring that fades in on hover */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--clay) 45%, var(--sage));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card:hover::after { opacity: 1; }
.card h3, .card h4 { margin-bottom: 0.7rem; }
.card p { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.72); line-height: 1.65; }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  background: var(--sage-soft);
  color: var(--pine);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, border-radius 0.35s ease;
}
.card:hover .icon { background: var(--pine); color: var(--gold); transform: rotate(-5deg); border-radius: 50%; }
.card .icon svg { width: 26px; height: 26px; }
.card.tinted { background: var(--sand); }

/* ---------- Survival styles ---------- */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.style-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.1rem 1.4rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.style-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.style-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}
.style-card:nth-child(1)::before { background: linear-gradient(90deg, var(--sage), var(--pine)); }
.style-card:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), var(--sage)); }
.style-card:nth-child(3)::before { background: linear-gradient(90deg, var(--clay), var(--gold)); }
.style-card:nth-child(4)::before { background: linear-gradient(90deg, var(--pine), var(--clay)); }
.style-card:nth-child(5)::before { background: linear-gradient(90deg, #a4506e, var(--clay)); }
/* oversized ghost numeral */
.style-card .num {
  position: absolute;
  top: 0.4rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.2rem;
  font-weight: 420;
  line-height: 1;
  color: var(--clay);
  opacity: 0.12;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.style-card:hover .num { opacity: 0.22; transform: translateY(-3px); }
.style-card h3 { font-size: 1.25rem; margin-bottom: 0.15rem; position: relative; }
.style-card .sub {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(33, 48, 42, 0.45);
  display: block;
  margin-bottom: 0.8rem;
}
.style-card p { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.72); line-height: 1.6; }

/* ---------- Principles / feature list ---------- */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2.5rem; }
.principle {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.3s ease;
}
.principle:hover { padding-left: 0.5rem; }
.principle .p-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
  flex-shrink: 0;
}
.principle h4 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.principle p { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.7); }
.bg-pine .principle { border-color: rgba(247, 242, 234, 0.14); }
.bg-pine .principle h4 { color: var(--cream); }
.bg-pine .principle p { color: rgba(247, 242, 234, 0.7); }

/* ---------- Quote band ---------- */
.quote-band {
  position: relative;
  text-align: center;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(800px 400px at 50% 130%, rgba(217, 164, 65, 0.14), transparent 60%),
    var(--pine-deep);
  color: var(--sand);
  overflow: hidden;
}
.quote-band .sun-motif {
  position: absolute;
  top: -110px;
  left: 50%;
  width: 380px;
  opacity: 0.16;
  transform: translateX(-50%);
  animation: quoteSpin 90s linear infinite;
}
.quote-band .sun-motif circle:nth-child(2) { stroke-dasharray: 3 14; }
.quote-band .sun-motif circle:nth-child(3) { stroke-dasharray: 2 18; }
@keyframes quoteSpin { to { transform: translateX(-50%) rotate(360deg); } }
.quote-band blockquote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: var(--text-xl);
  line-height: 1.45;
  max-width: 25ch;
  margin: 0 auto 1.6rem;
  color: var(--cream);
}
.quote-band cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.6);
}

/* ---------- Training path ---------- */
.path { display: grid; gap: 1.4rem; }
.path-step {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.8rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.path-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--clay));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.path-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.path-step:hover::before { opacity: 1; }
.path-step .step-no {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(192, 95, 54, 0.5);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 460;
  color: var(--clay);
  transition: transform 0.5s ease, background 0.3s ease;
}
.path-step:hover .step-no { transform: rotate(20deg); background: var(--clay-soft); }
.path-step h3 { margin-bottom: 0.4rem; font-size: 1.35rem; }
.path-step .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--pine);
}
.tag.clay { background: var(--clay-soft); color: var(--clay); }
.path-step p { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.72); }

/* ---------- Modules ---------- */
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.module {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.module:nth-child(2) { border-left-color: var(--gold); }
.module:nth-child(3) { border-left-color: var(--clay); }
.module:nth-child(4) { border-left-color: var(--pine); }
.module .m-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 0.5rem;
}
.module h4 { margin-bottom: 0.8rem; }
.module ul { list-style: none; padding: 0; display: grid; gap: 0.45rem; }
.module li {
  font-size: var(--text-sm);
  color: rgba(33, 48, 42, 0.75);
  padding-left: 1.3rem;
  position: relative;
}
.module li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Founder / book ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.portrait-frame {
  position: relative;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg); /* arch */
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage-soft), var(--clay-soft));
  aspect-ratio: 4 / 4.8;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(192, 95, 54, 0.3);
  border-radius: inherit;
  pointer-events: none;
}
.portrait-frame svg { width: 68%; height: auto; opacity: 0.9; }
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.founder-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.6rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: rgba(33, 48, 42, 0.85);
  line-height: 1.5;
}

.book-cover {
  position: relative;
  width: min(300px, 70%);
  margin-inline: auto;
  aspect-ratio: 2 / 3;
  border-radius: 6px 14px 14px 6px;
  background: linear-gradient(155deg, var(--pine) 0%, var(--pine-deep) 70%);
  color: var(--sand);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2.5deg);
  transition: transform 0.35s ease;
}
/* spine + page edges */
.book-cover::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(247, 242, 234, 0.25);
}
.book-cover::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 5px;
  bottom: 5px;
  width: 6px;
  border-radius: 0 3px 3px 0;
  background: repeating-linear-gradient(180deg, #efe7d8 0 2px, #ddd2bd 2px 4px);
}
.book-cover:hover { transform: rotate(0deg) scale(1.03); }
.book-cover .bc-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--cream);
}
.book-cover .bc-sun { width: 54px; opacity: 0.85; }
.book-cover .bc-author { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247, 242, 234, 0.75); }

/* ---------- Program spotlight (premium dark panel) ---------- */
.program-spotlight {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 92% -25%, rgba(217, 164, 65, 0.22), transparent 60%),
    radial-gradient(520px 420px at -12% 120%, rgba(127, 160, 141, 0.16), transparent 60%),
    linear-gradient(140deg, var(--pine) 0%, var(--pine-deep) 85%);
  color: var(--sand);
  padding: clamp(2.5rem, 5.5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.program-spotlight::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1.5px dashed rgba(217, 164, 65, 0.3);
  animation: spinSlow 100s linear infinite;
  pointer-events: none;
}
.program-spotlight > * { position: relative; z-index: 1; }
.program-spotlight .eyebrow { color: var(--gold); }
.program-spotlight .eyebrow::before { background: var(--gold); }
.program-spotlight h2 { color: var(--cream); margin-bottom: 1rem; }
.program-spotlight h2 em { font-style: italic; color: var(--gold); }
.program-spotlight .lead { color: rgba(247, 242, 234, 0.75); font-size: var(--text-base); }

.spotlight-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.7rem 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 242, 234, 0.22);
  background: rgba(247, 242, 234, 0.07);
  color: rgba(247, 242, 234, 0.92);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.chip:hover { border-color: rgba(217, 164, 65, 0.6); background: rgba(247, 242, 234, 0.1); }
.chip svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.spotlight-price {
  display: flex;
  align-items: baseline;
  column-gap: 1.1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 242, 234, 0.14);
}
.spotlight-price .price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.9rem);
  font-weight: 480;
  color: var(--cream);
  line-height: 1;
}
.spotlight-price .price small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(247, 242, 234, 0.6);
}
.spotlight-price .price-note { font-size: var(--text-xs); font-weight: 600; color: var(--gold); }
.spotlight-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Vertical timeline with gold dots */
.timeline { position: relative; display: grid; gap: 0.9rem; align-content: center; }
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.9), rgba(217, 164, 65, 0.12));
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.85rem 1.2rem 0.85rem 0.25rem;
  border-radius: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.timeline-item:hover { background: rgba(247, 242, 234, 0.06); transform: translateX(4px); }
.timeline-item .t-dot {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pine-deep);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.timeline-item b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 460;
  font-size: 1.12rem;
  color: var(--cream);
  line-height: 1.25;
}
.timeline-item span {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
  margin-top: 0.15rem;
}

/* ---------- Pricing cards (premium) ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 900px; margin-inline: auto; }
.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.3rem;
  border: 1px solid var(--line-soft);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card .p-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.price-card .p-amount {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 0.6rem;
}
.price-card .p-amount small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(33, 48, 42, 0.5);
}
.price-features { list-style: none; padding: 0; margin-top: 1.4rem; display: grid; gap: 0.6rem; font-size: var(--text-sm); }
.price-features li { padding-left: 1.5rem; position: relative; color: rgba(33, 48, 42, 0.72); }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price-card.featured {
  background:
    radial-gradient(400px 240px at 90% -20%, rgba(217, 164, 65, 0.25), transparent 60%),
    linear-gradient(140deg, var(--pine) 0%, var(--pine-deep) 90%);
  border: none;
  color: var(--sand);
}
.price-card.featured .p-label { color: var(--gold); }
.price-card.featured .p-amount { color: var(--cream); }
.price-card.featured .p-amount small { color: rgba(247, 242, 234, 0.6); }
.price-card.featured .price-features li { color: rgba(247, 242, 234, 0.8); }
.price-badge {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  background: var(--gold);
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Partner band (Istanbul Healing Academy) ---------- */
.partner-band {
  position: relative;
  text-align: center;
  background:
    radial-gradient(600px 260px at 50% -60%, rgba(217, 164, 65, 0.18), transparent 70%),
    var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.2rem) clamp(1.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.partner-band::before,
.partner-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(127, 160, 141, 0.35);
  pointer-events: none;
}
.partner-band::before { width: 220px; height: 220px; left: -90px; bottom: -90px; }
.partner-band::after { width: 160px; height: 160px; right: -60px; top: -60px; border-color: rgba(217, 164, 65, 0.4); }
.partner-logo {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pine-deep);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
}
.partner-band .eyebrow { justify-content: center; }
.partner-band .eyebrow::before { display: none; }
.partner-band h2 { margin-bottom: 1rem; }
.partner-band h2 em { font-style: italic; color: var(--clay); }
.partner-band p { margin-inline: auto; max-width: 58ch; color: rgba(33, 48, 42, 0.72); font-size: var(--text-base); }
.partner-band .btn { margin-top: 1.7rem; }

/* ---------- Resource cards ---------- */
.resource-card { display: flex; flex-direction: column; gap: 0; }
.resource-card .r-kind {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.7rem;
}
.resource-card .r-link {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.resource-card .r-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.resource-card:hover .r-link svg { transform: translateX(3px); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.7rem;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--clay); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-item summary .chev svg { width: 13px; height: 13px; }
.faq-item[open] summary .chev {
  transform: rotate(45deg);
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}
.faq-item .faq-body { padding: 0 1.7rem 1.5rem; }
.faq-item .faq-body p { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.75); }
.faq-item .faq-body p + p { margin-top: 0.7rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.6rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; }
.contact-line .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--pine);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-line .icon svg { width: 20px; height: 20px; }
.contact-line b { display: block; font-size: var(--text-sm); }
.contact-line span, .contact-line a { font-size: var(--text-sm); color: rgba(33, 48, 42, 0.65); }
.contact-line a:hover { color: var(--clay); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(33, 48, 42, 0.6); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: var(--text-sm);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(127, 160, 141, 0.15);
}
.form-note { font-size: var(--text-xs); color: rgba(33, 48, 42, 0.5); margin-top: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 85% -30%, rgba(217, 164, 65, 0.25), transparent 60%),
    linear-gradient(140deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--sand);
  padding: clamp(2.8rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px dashed rgba(217, 164, 65, 0.35);
  animation: spinSlow 100s linear infinite;
}
.cta-band h2 { color: var(--cream); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(247, 242, 234, 0.75); font-size: var(--text-sm); }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: flex-end; position: relative; z-index: 1; }

.newsletter-form { display: flex; gap: 0.7rem; margin-top: 1.4rem; max-width: 460px; position: relative; z-index: 1; }
.newsletter-form input {
  flex: 1;
  font: inherit;
  font-size: var(--text-sm);
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(247, 242, 234, 0.3);
  background: rgba(247, 242, 234, 0.08);
  color: var(--cream);
}
.newsletter-form input::placeholder { color: rgba(247, 242, 234, 0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* Success pill shown after a newsletter signup */
.news-success {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: rgba(217, 164, 65, 0.14);
  color: var(--cream);
  font-weight: 600;
  font-size: var(--text-sm);
}
.news-success svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-deep);
  color: rgba(247, 242, 234, 0.75);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 242, 234, 0.12);
}
.site-footer .brand { color: var(--cream); margin-bottom: 1rem; }
.site-footer .brand em { color: var(--gold); }
.footer-about { max-width: 36ch; line-height: 1.65; }
.footer-about a { color: var(--gold); border-bottom: 1px solid rgba(217, 164, 65, 0.35); transition: border-color 0.2s ease; }
.footer-about a:hover { border-color: var(--gold); }
.site-footer h5 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.5);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: var(--text-xs);
  color: rgba(247, 242, 234, 0.45);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; filter: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .hero-art .stem { stroke-dashoffset: 0; }
  .hero-art .leaf, .hero-art .bud { opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    padding: 0.6rem var(--gutter) 1.2rem;
    transform: translateY(-115%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 0.75rem 0; width: 100%; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }

  .hero::after { display: none; }
  .page-hero::after { top: auto; bottom: 26px; opacity: 0.75; }
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin-inline: auto; order: -1; }
  .grid-3, .grid-2, .modules, .principles { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .path-step { grid-template-columns: 1fr; gap: 1rem; padding: 1.7rem 1.5rem; }
  .path-step .step-no { width: 58px; height: 58px; font-size: 1.3rem; }
  .path-step .btn { justify-self: start; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 380px; margin-inline: auto; }
  .program-spotlight { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .styles-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
