/*
Theme Name: Nur-Nation School
Theme URI: https://example.com
Author: Nur-Nation Educational Future
Author URI: https://example.com
Description: Полноценная кастомная тема WordPress для сайта частной школы Nur-Nation Educational Future в Алматы. Адаптирована под оригинальный дизайн HTML, с правильной структурой, поддержкой меню, готовностью к установке на хостинг ps.kz (Plesk). Включает все секции лендинга: Hero, Programs, Campus, Admissions и др.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nur-nation-school
*/
:root {
  --ink: #0E1B2C;
  --ink-soft: #243549;
  --paper: #F2EBDD;
  --paper-deep: #E8DFCC;
  --paper-warm: #EDE3CD;
  --gold: #B68A35;
  --gold-deep: #8E6B22;
  --line: rgba(14, 27, 44, 0.16);
  --line-soft: rgba(14, 27, 44, 0.08);
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== Type ===== */
.serif { font-family: var(--display); font-weight: 400; letter-spacing: -0.005em; }
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before, .eyebrow.center::after {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.center { gap: 14px; }
.eyebrow.center::after { display: inline-block; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; margin: 0; line-height: 1.04; letter-spacing: -0.012em; }
h2 { font-size: clamp(36px, 4.6vw, 64px); }
h3 { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.15; }
p { margin: 0 0 1em; }

/* ===== Container ===== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 36px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 26px;
  font-family: var(--body);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn .arrow { display: inline-block; transition: transform 220ms ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.on-dark { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.5); }
.btn.on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.on-dark.solid { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn.on-dark.solid:hover { background: var(--paper); border-color: var(--paper); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.link-arrow .arrow { transition: transform 220ms ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 36px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 280ms ease, padding 240ms ease, color 240ms ease,
              border-color 240ms ease, box-shadow 280ms ease;
  border-bottom: 1px solid transparent;
  color: var(--paper);
}
.site-header.scrolled {
  background: rgba(242, 235, 221, 0.96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: var(--ink);
  padding: 14px 36px;
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(14, 27, 44, 0.06);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 22px; font-weight: 500;
  letter-spacing: 0.02em; line-height: 1;
}
.brand-name {
  font-family: var(--display); font-size: 19px; font-weight: 500;
  letter-spacing: 0.04em; line-height: 1.05;
}
.brand-name small {
  display: block; font-family: var(--body); font-size: 9.5px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em;
  margin-top: 4px; opacity: 0.7;
}

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left; transition: transform 240ms ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex; align-items: center; gap: 18px;
}
.header-cta .pill {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 220ms ease, color 220ms ease;
}
.header-cta .pill:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.header-cta .lang {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; opacity: 0.75;
}
.menu-toggle { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .pill { display: none; }
  .menu-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: transparent; border: 0; padding: 8px; cursor: pointer; color: inherit;
  }
  .menu-toggle span { width: 22px; height: 1px; background: currentColor; display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 120px 0 70px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,27,44,0.55) 0%, rgba(14,27,44,0.20) 35%, rgba(14,27,44,0.78) 100%),
    url("https://images.unsplash.com/photo-1606117331085-5760e3b58520?auto=format&fit=crop&w=2400&q=80") center/cover no-repeat;
  z-index: -2;
  transform: scale(1.04);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(0,0,0,0.35) 0%, transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 50px;
  align-items: end;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--paper);
  display: inline-flex; align-items: center; gap: 14px;
  opacity: 0.92;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(50px, 7vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 22px 0 28px;
  max-width: 14ch;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub {
  font-size: 18px; font-weight: 300;
  max-width: 56ch; line-height: 1.55;
  opacity: 0.92;
}
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  position: absolute; left: 36px; bottom: 38px;
  display: flex; align-items: center; gap: 22px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.78;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-scroll {
  position: absolute; right: 36px; bottom: 38px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0.7;
}
.hero-scroll i {
  width: 1px; height: 56px; background: currentColor; display: block;
  position: relative; overflow: hidden;
}
.hero-scroll i::after {
  content: ""; position: absolute; left: 0; right: 0; top: -56px; height: 30px;
  background: var(--gold);
  animation: trickle 2.4s ease-in-out infinite;
}
@keyframes trickle {
  0% { transform: translateY(0); }
  60% { transform: translateY(85px); }
  100% { transform: translateY(85px); }
}
@media (max-width: 720px) {
  .hero-meta, .hero-scroll { display: none; }
}

/* ===== Marquee ribbon ===== */
.ribbon {
  background: var(--ink); color: var(--paper);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.ribbon-track {
  display: flex; gap: 70px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--display); font-size: 22px; font-weight: 400;
  letter-spacing: 0.01em;
}
.ribbon-track span { display: inline-flex; align-items: center; gap: 70px; }
.ribbon-track span::after {
  content: "✦"; color: var(--gold); font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section frames ===== */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head { margin-bottom: 70px; max-width: 880px; }
.section-head h2 { margin-top: 18px; }
.section-head p { font-size: 18px; line-height: 1.6; max-width: 60ch; margin-top: 28px; opacity: 0.82; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ===== Intro / Welcome ===== */
.intro {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 110px;
  align-items: start;
}
@media (max-width: 980px) { .intro { grid-template-columns: 1fr; gap: 50px; } }
.intro .lead {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
}
.intro .lead em { font-style: italic; color: var(--gold-deep); }
.intro .body { font-size: 16px; line-height: 1.75; opacity: 0.85; }
.intro .body p + p { margin-top: 1em; }
.intro .signature { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
.intro .signature .who { font-size: 12px; line-height: 1.4; }
.intro .signature .who strong { display: block; font-family: var(--display); font-size: 18px; font-weight: 500; }
.intro .signature .who span { text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px; opacity: 0.7; }
.intro .signature .glyph {
  font-family: var(--display); font-style: italic; font-size: 32px; color: var(--gold-deep);
  border-right: 1px solid var(--line); padding-right: 16px;
}

.intro-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep) url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}
.intro-figure::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(242, 235, 221, 0.55);
  pointer-events: none;
}
.intro-figure-cap {
  position: absolute; left: -30px; bottom: 40px;
  background: var(--paper); padding: 22px 26px;
  max-width: 280px;
  font-family: var(--display); font-size: 20px; font-weight: 400;
  line-height: 1.3; letter-spacing: -0.005em;
  box-shadow: 0 30px 60px rgba(14, 27, 44, 0.18);
}
.intro-figure-cap small {
  display: block; font-family: var(--body); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold-deep);
  margin-top: 12px;
}

/* ===== Pillars ===== */
.pillars-section { background: var(--paper-warm); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pillar {
  padding: 44px 28px 44px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.pillar:last-child { border-right: 0; }
.pillar:nth-child(n+2) { padding-left: 28px; }
.pillar .num {
  font-family: var(--display); font-style: italic;
  font-size: 30px; font-weight: 400; color: var(--gold-deep);
  margin-bottom: 18px;
}
.pillar h3 { font-size: 26px; margin-bottom: 16px; }
.pillar p { font-size: 14.5px; line-height: 1.65; opacity: 0.82; }
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 36px 24px; border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-child(n+2) { padding-left: 24px; }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; padding-left: 0; }
}

/* ===== Programs ===== */
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 980px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .programs-grid { grid-template-columns: 1fr; } }

.program {
  position: relative;
  background: var(--paper-warm);
  display: flex; flex-direction: column;
  min-height: 540px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 360ms ease;
}
.program-img {
  position: relative; aspect-ratio: 4 / 3.2; overflow: hidden;
  background: var(--ink);
}
.program-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.program:hover .program-img img { transform: scale(1.06); }
.program-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,27,44,0.4) 100%);
}
.program-tag {
  position: absolute; top: 22px; left: 22px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em;
  background: var(--paper); color: var(--ink);
  padding: 8px 14px;
  z-index: 2;
}
.program-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.program-meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6; margin-bottom: 14px; }
.program h3 { font-size: 32px; margin-bottom: 14px; }
.program p { font-size: 14px; opacity: 0.78; line-height: 1.6; flex: 1; }
.program-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.program-foot .arrow { color: var(--gold-deep); font-size: 16px; transition: transform 240ms ease; }
.program:hover .program-foot .arrow { transform: translateX(6px); }

/* ===== Editorial split (Almaty) ===== */
.almaty {
  background: var(--ink); color: var(--paper);
  padding: 0;
}
.almaty-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  min-height: 720px;
}
@media (max-width: 980px) { .almaty-grid { grid-template-columns: 1fr; } }
.almaty-img {
  background: url("https://images.unsplash.com/photo-1599661046289-e31897846e41?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  position: relative; min-height: 480px;
}
.almaty-img::after {
  content: ""; position: absolute; inset: 30px;
  border: 1px solid rgba(242, 235, 221, 0.18);
}
.almaty-text {
  padding: 110px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 980px) { .almaty-text { padding: 80px 36px; } }
.almaty-text .eyebrow { color: var(--gold); }
.almaty-text .eyebrow::before { background: var(--gold); }
.almaty-text h2 { font-weight: 300; margin: 22px 0 28px; }
.almaty-text h2 em { color: var(--gold); font-style: italic; }
.almaty-text p { font-size: 17px; line-height: 1.7; opacity: 0.85; max-width: 50ch; }
.almaty-text .btn-row { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.almaty-stats {
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.almaty-stat .num {
  font-family: var(--display); font-size: 48px; font-weight: 300; color: var(--gold);
  line-height: 1; letter-spacing: -0.01em;
}
.almaty-stat .lbl {
  margin-top: 10px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7;
}

/* ===== Numbers strip ===== */
.numbers {
  background: var(--paper-deep);
  padding: 80px 0;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) { .numbers-grid { grid-template-columns: 1fr 1fr; } }
.number {
  padding: 16px 28px;
  border-right: 1px solid var(--line);
}
.number:last-child { border-right: 0; }
.number .n {
  font-family: var(--display); font-size: clamp(48px, 5vw, 76px);
  font-weight: 300; line-height: 1; letter-spacing: -0.02em;
}
.number .n sup { font-size: 0.4em; vertical-align: super; color: var(--gold-deep); margin-left: 4px; }
.number .l {
  margin-top: 14px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.74;
  max-width: 22ch; line-height: 1.5;
}

/* ===== Life / Stories ===== */
.life-section { background: var(--paper-warm); }
.life-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 22px;
}
.life-tile {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
}
.life-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.life-tile:hover img { transform: scale(1.05); }
.life-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,27,44,0.78) 100%);
}
.life-tile .cap {
  position: absolute; left: 26px; right: 26px; bottom: 26px;
  z-index: 2;
}
.life-tile .cap small {
  display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 10px; color: var(--gold);
}
.life-tile .cap h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 26px; line-height: 1.2; letter-spacing: -0.005em;
}
.life-tile.tall { grid-row: span 2; }
.life-tile.quote {
  background: var(--paper); color: var(--ink);
  padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between;
}
.life-tile.quote::after { display: none; }
.life-tile.quote .q-mark {
  font-family: var(--display); font-style: italic; font-size: 70px; color: var(--gold);
  line-height: 0.7;
}
.life-tile.quote blockquote {
  font-family: var(--display); font-size: 22px; line-height: 1.35; margin: 14px 0;
  font-weight: 400; letter-spacing: -0.005em;
}
.life-tile.quote cite {
  font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.7; display: block;
}
@media (max-width: 980px) {
  .life-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .life-tile.tall { grid-row: auto; }
}
@media (max-width: 600px) {
  .life-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 280px); }
}

/* ===== Faculty / Approach ===== */
.approach {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center;
}
@media (max-width: 980px) { .approach { grid-template-columns: 1fr; gap: 50px; } }
.approach-img {
  aspect-ratio: 5/6;
  background: var(--paper-deep) url("https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  position: relative;
}
.approach-img::after {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,0.5);
}
.approach-img .badge {
  position: absolute; top: 30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-style: italic; font-size: 16px;
  line-height: 1.2;
  box-shadow: 0 30px 60px rgba(14, 27, 44, 0.2);
}
.approach-list { list-style: none; padding: 0; margin: 36px 0 0; }
.approach-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.approach-list li:last-child { border-bottom: 1px solid var(--line); }
.approach-list .num {
  font-family: var(--display); font-style: italic; font-size: 26px;
  color: var(--gold-deep); width: 40px;
}
.approach-list h4 { font-family: var(--display); font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.approach-list p { font-size: 14.5px; line-height: 1.6; opacity: 0.78; margin: 0; }

/* ===== Admissions journey ===== */
.journey-section { background: var(--ink); color: var(--paper); }
.journey-section .eyebrow { color: var(--gold); }
.journey-section .eyebrow::before { background: var(--gold); }
.journey-section h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.journey {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.journey-step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  position: relative;
}
.journey-step:nth-child(n+2) { padding-left: 28px; }
.journey-step:last-child { border-right: 0; }
.journey-step .step-num {
  font-family: var(--display); font-size: 14px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 26px;
}
.journey-step .step-num::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); vertical-align: middle; margin-right: 14px;
}
.journey-step h4 { font-family: var(--display); font-size: 26px; font-weight: 400; margin-bottom: 14px; }
.journey-step p { font-size: 14px; line-height: 1.65; opacity: 0.78; }
.journey-step .when { margin-top: 18px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 980px) {
  .journey { grid-template-columns: 1fr 1fr; }
  .journey-step { border-bottom: 1px solid rgba(255,255,255,0.18); padding: 30px 22px; }
  .journey-step:nth-child(2n) { border-right: 0; }
  .journey-step:nth-child(n+2) { padding-left: 22px; }
}
@media (max-width: 600px) { .journey { grid-template-columns: 1fr; }
  .journey-step { border-right: 0; padding-left: 0; padding-right: 0; }
}

/* ===== Voices / Testimonials ===== */
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 980px) { .voices-grid { grid-template-columns: 1fr; } }
.voice {
  background: var(--paper-warm);
  padding: 40px 36px 36px;
  border-top: 2px solid var(--gold);
  display: flex; flex-direction: column;
}
.voice .q-mark {
  font-family: var(--display); font-style: italic; font-size: 60px;
  color: var(--gold); line-height: 0.6; margin-bottom: 6px;
}
.voice blockquote {
  font-family: var(--display); font-size: 22px; line-height: 1.35; font-weight: 400;
  margin: 12px 0 30px; letter-spacing: -0.005em; flex: 1;
}
.voice .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.voice .author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  font-family: var(--display); font-size: 20px; font-weight: 500;
  display: grid; place-items: center;
}
.voice .author .who { line-height: 1.3; }
.voice .author .who strong { font-family: var(--display); font-size: 16px; font-weight: 500; display: block; }
.voice .author .who span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; }

/* ===== News / Editorial ===== */
.news-section { background: var(--paper-warm); }
.news-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 64px; }
@media (max-width: 980px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .news-grid { grid-template-columns: 1fr; } }
.article { display: flex; flex-direction: column; cursor: pointer; }
.article-img { aspect-ratio: 4/3; background: var(--ink); overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.article:hover .article-img img { transform: scale(1.05); }
.article-meta {
  margin-top: 20px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.65;
  display: flex; gap: 14px; align-items: center;
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.article h3 {
  margin-top: 12px; font-family: var(--display); font-size: 26px; font-weight: 400;
  line-height: 1.2; letter-spacing: -0.005em;
}
.article p { margin-top: 12px; font-size: 14px; opacity: 0.78; line-height: 1.6; }

/* ===== CTA ===== */
.cta-final {
  position: relative; padding: 160px 0;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(14,27,44,0.6) 0%, rgba(14,27,44,0.78) 100%),
    url("https://images.unsplash.com/photo-1523580494863-6f3031224c94?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}
.cta-final h2 { font-weight: 300; font-size: clamp(40px, 5vw, 78px); margin: 22px 0 26px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-final h2 em { color: var(--gold); font-style: italic; }
.cta-final p { font-size: 18px; max-width: 56ch; margin: 0 auto; opacity: 0.9; }
.cta-final .btn-row { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .brand-name { font-size: 24px; }
.foot-brand p { margin-top: 24px; font-size: 14px; line-height: 1.7; opacity: 0.7; max-width: 38ch; }
.foot-col h5 {
  font-family: var(--body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold);
  margin: 0 0 22px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 14px; opacity: 0.82; transition: opacity 200ms ease, color 200ms ease; }
.foot-col a:hover { opacity: 1; color: var(--gold); }
.foot-col p { font-size: 14px; line-height: 1.7; opacity: 0.8; margin: 0 0 8px; }
.foot-bot {
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6;
}
.foot-bot .legal { display: flex; gap: 22px; }

/* ===== Reveal animation ===== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--paper); color: var(--ink);
  padding: 90px 36px 36px;
  display: none; flex-direction: column; gap: 4px;
  transform: translateY(-100%); transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.mobile-menu.open { display: flex; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display); font-size: 36px; font-weight: 400;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .close {
  position: absolute; top: 22px; right: 22px;
  background: transparent; border: 1px solid var(--ink); border-radius: 50%;
  width: 40px; height: 40px; cursor: pointer; font-size: 18px;
}

