/* ============================================================
   Europe Ready — Content Hub Design System
   Matches Europe Ready Flight & Priority landing pages.
   ============================================================ */

:root {
  --navy: #05182e;
  --navy-2: #082644;
  --navy-3: #0c335d;
  --gold: #cba64b;
  --gold-2: #e2c479;
  --white: #fff;
  --off: #f8fafc;
  --soft: #eef3f8;
  --line: #dfe7f0;
  --text: #111f34;
  --muted: #5c6878;
  --muted-2: #8492a4;
  --shadow: 0 24px 70px rgba(8, 24, 46, 0.13);
  --shadow-soft: 0 18px 45px rgba(8, 24, 46, 0.08);
  --container: 1160px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
strong, b { font-weight: 900; }

h1, h2, h3, h4, p { margin: 0; }
h1 {
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: #fff;
  font-weight: 950;
  max-width: 850px;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: var(--navy);
  font-weight: 950;
}
h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 900;
}
h4 {
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--navy);
  font-weight: 900;
}

.lead { font-size: clamp(18px, 1.9vw, 23px); line-height: 1.55; color: rgba(255,255,255,.78); max-width: 720px; }
.section-lead { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 790px; margin-top: 20px; }
.small { font-size: 13px; color: var(--muted-2); line-height: 1.55; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--tight { padding: 76px 0; }
.section--soft { background: linear-gradient(180deg, #fff, var(--off)); }
.section--dark { background: linear-gradient(145deg, var(--navy), #03101f); color: #fff; position: relative; overflow: hidden; }
.section--dark:before { content: ""; position: absolute; right: -160px; top: -160px; width: 420px; height: 420px; border-radius: 50%; background: rgba(203,166,75,.14); }
.section--dark h2 { color: #fff; position: relative; }
.section--dark .section-lead { color: rgba(255,255,255,.74); position: relative; }

.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 12px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; color: rgba(255,255,255,.8);
  font-size: 12px; font-weight: 950; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 28px;
  background: rgba(255,255,255,.055);
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(203,166,75,.14); }
.eyebrow--dark {
  border-color: var(--line); color: var(--muted);
  background: #fff;
}
.eyebrow--dark span { background: var(--gold); box-shadow: 0 0 0 5px rgba(203,166,75,.14); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14px; font-weight: 950; letter-spacing: .02em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 2px; }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 18px 34px rgba(203,166,75,.28); }
.btn--gold:hover { background: var(--gold-2); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--dark { background: var(--navy); color: #fff; box-shadow: 0 18px 34px rgba(5,24,46,.16); }
.btn--dark:hover { background: var(--navy-3); }
.btn--light { background: #fff; color: var(--navy); border-color: rgba(5,24,46,.12); }
.btn--light:hover { background: var(--soft); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 12px; }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }

/* ---------- Nav (fixed glass pill) ---------- */
.site-nav {
  position: fixed; z-index: 60; top: 18px; left: 0; right: 0;
  pointer-events: none;
}
.nav-inner {
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 0 20px 0 18px; border: 1px solid rgba(255,255,255,.13);
  background: rgba(5,24,46,.76); box-shadow: 0 18px 52px rgba(0,0,0,.18);
  backdrop-filter: blur(18px); border-radius: 999px; pointer-events: auto;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 850; }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 1.2rem;
}
.nav-mobile {
  display: none; position: absolute; top: 88px; left: 12px; right: 12px; z-index: 59;
  padding: 14px; border-radius: 24px; border: 1px solid rgba(255,255,255,.13);
  background: rgba(5,24,46,.96); backdrop-filter: blur(18px); box-shadow: 0 24px 60px rgba(0,0,0,.3);
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 14px 16px; border-radius: 14px; color: rgba(255,255,255,.8); font-size: 15px; font-weight: 800; }
.nav-mobile a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 840px; padding: 190px 0 96px; overflow: hidden;
  background: radial-gradient(circle at 78% 18%, rgba(203,166,75,.23), transparent 29%),
    linear-gradient(140deg, var(--navy-2), #03101f 74%);
  isolation: isolate;
}
.hero:before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 78% 18%, black 0 32%, transparent 58%);
  z-index: -2;
}
.hero:after { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; left: -235px; bottom: -180px; background: rgba(255,255,255,.045); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 58px; align-items: center; }
.hero .accent { color: var(--gold-2); }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 34px; }
.hero-credit { margin-top: 22px; color: rgba(255,255,255,.5); font-size: 12.5px; font-weight: 600; }

.hero-visual { position: relative; min-height: 520px; }
.photo-card {
  position: absolute; overflow: hidden; border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card picture { display: block; width: 100%; height: 100%; }
.photo-card.main { right: 0; top: 0; width: 78%; height: 440px; }
.photo-card.side { left: 0; bottom: 0; width: 56%; height: 250px; }

/* page hero (interior pages) */
.page-hero {
  position: relative; padding: 170px 0 84px; overflow: hidden;
  background: radial-gradient(circle at 82% 10%, rgba(203,166,75,.2), transparent 30%),
    linear-gradient(140deg, var(--navy-2), #03101f 74%);
}
.page-hero:before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 82% 10%, black 0 32%, transparent 58%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(34px, 4.4vw, 62px); letter-spacing: -0.055em; max-width: 900px; }
.page-hero .lead { margin-top: 20px; }

.breadcrumbs { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 24px; }
.breadcrumbs a { color: rgba(255,255,255,.55); transition: color .15s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin: 0 8px; color: var(--gold); }

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

.card {
  padding: 28px; border-radius: 28px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-badge {
  width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center;
  background: #f5efdd; color: var(--navy); border: 1px solid #e8dcc0; margin-bottom: 22px;
}
.icon-badge svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; }
.card p { font-size: 15.5px; line-height: 1.58; color: var(--muted); margin-top: 11px; }

/* problem list */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px;
  border-radius: 18px; background: #fff; border: 1px solid var(--line);
  color: var(--muted); font-size: 16px; line-height: 1.5;
}
.check-list .mark { color: var(--gold); font-weight: 900; flex: 0 0 auto; }

/* ---------- Program cards ---------- */
.program-card {
  position: relative; border-radius: 34px; padding: 40px; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.program-card--gold { border-color: rgba(203,166,75,.5); background: linear-gradient(180deg, #fff, #fbf7ed); }
.program-tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 950;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px;
  background: var(--soft); color: var(--navy);
}
.program-card--gold .program-tag { background: rgba(203,166,75,.18); color: #7a6118; }
.program-card h3 { font-size: 30px; letter-spacing: -0.03em; }
.program-card .sub { color: var(--muted); font-size: 16px; margin-top: 12px; }
.program-card ul { list-style: none; margin: 24px 0 32px; padding: 0; display: grid; gap: 12px; flex: 1; }
.program-card ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.program-card ul li::before { content: "•"; color: var(--gold); font-weight: 900; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
table.compare th, table.compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
table.compare thead th { background: var(--navy); color: #fff; font-weight: 950; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:hover { background: var(--off); }
table.compare td:first-child { font-weight: 900; color: var(--navy); }
table.compare .yes { color: #1c7d43; font-weight: 900; }
table.compare .no { color: var(--muted-2); }
table.compare .partial { color: #7a6118; font-weight: 800; }

/* ---------- Article cards (with image) ---------- */
.article-card {
  display: flex; flex-direction: column; border-radius: 28px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft); }
.article-thumb picture { display: block; width: 100%; height: 100%; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-thumb .cat {
  position: absolute; left: 14px; top: 14px; padding: 6px 12px; border-radius: 999px;
  background: rgba(5,24,46,.82); color: var(--gold-2); font-size: 10.5px; font-weight: 950;
  letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px);
}
.article-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.article-card-body h3 { font-size: 20px; line-height: 1.2; margin-bottom: 12px; }
.article-card-body p { color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.read-more { margin-top: 16px; font-size: 12px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.article-card:hover .read-more { color: var(--gold); }

/* ---------- Tag pills ---------- */
.tag-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  padding: 10px 18px; border-radius: 999px; font-size: 12px; font-weight: 850; letter-spacing: .03em;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  transition: all .15s ease;
}
.tag-pill:hover { border-color: var(--gold); color: var(--navy); }
.tag-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Disclaimer ---------- */
.disclaimer {
  padding: 28px; border-radius: 26px; background: #fbf7ed;
  border: 1px solid #eadfbf; color: #574c32; font-size: 15.5px; line-height: 1.65;
}
.disclaimer strong { color: #3f371a; }
.disclaimer ul { margin: 12px 0 0; padding-left: 20px; display: grid; gap: 6px; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative; overflow: hidden; border-radius: 34px;
  padding: 72px 48px; text-align: center; color: #fff;
  background: radial-gradient(circle at 80% 15%, rgba(203,166,75,.22), transparent 40%),
    linear-gradient(145deg, var(--navy-2), #03101f);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.65; max-width: 680px; margin: 18px auto 0; }
.final-cta .btn-group { justify-content: center; }

/* ---------- Article layout ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: var(--muted-2); font-size: 13px; font-weight: 600; margin: 22px 0 8px; }
.article-meta .cat {
  padding: 6px 13px; border-radius: 999px; background: rgba(203,166,75,.16);
  color: #7a6118; font-size: 11px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase;
}

.prose { max-width: 720px; }
.prose > p { font-size: 17.5px; line-height: 1.78; color: #33415c; margin: 0 0 1.4em; }
.prose h2 { margin: 2em 0 0.6em; font-size: clamp(26px, 3vw, 36px); }
.prose h3 { margin: 1.6em 0 0.5em; }
.prose ul, .prose ol { color: #33415c; padding-left: 22px; margin: 0 0 1.4em; }
.prose li { font-size: 17px; line-height: 1.7; margin-bottom: 0.6em; }
.prose a { color: var(--navy-3); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(13,55,99,.3); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose blockquote {
  margin: 1.8em 0; padding: 22px 26px; border-radius: 22px; border-left: 4px solid var(--gold);
  background: var(--off); color: var(--muted); font-style: italic; font-size: 17px; line-height: 1.7;
}
.prose img { border-radius: 22px; margin: 1.6em 0; box-shadow: var(--shadow-soft); }
.prose picture { display: block; }

/* TOC */
.toc {
  padding: 26px 28px; border-radius: 24px; background: var(--off);
  border: 1px solid var(--line); margin: 26px 0 36px;
}
.toc h2 { text-transform: uppercase; letter-spacing: .12em; color: var(--navy); font-size: 13px; font-weight: 900; line-height: 1.2; margin: 0 0 14px; }
.toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.toc a { color: var(--muted); font-size: 15px; font-weight: 600; }
.toc a:hover { color: var(--navy); }

/* FAQ */
.faq-item { border: 1px solid var(--line); border-radius: 20px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 900; font-size: 17px; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--gold); font-weight: 900; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* CTA box in article */
.cta-box {
  margin: 40px 0; padding: 36px; border-radius: 30px; color: #fff;
  background: radial-gradient(circle at 85% 10%, rgba(203,166,75,.2), transparent 45%),
    linear-gradient(145deg, var(--navy), #03101f);
}
.cta-box h3 { color: #fff; font-size: 26px; letter-spacing: -0.02em; }
.cta-box p { color: rgba(255,255,255,.74); font-size: 16.5px; line-height: 1.65; margin-top: 12px; }
.cta-box .btn-group { margin-top: 24px; }

/* Sidebar */
.sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.side-widget { padding: 26px; border-radius: 26px; background: var(--off); border: 1px solid var(--line); }
.side-widget h4 { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 16px; }
.side-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.side-widget ul a { color: var(--muted); font-size: 14.5px; font-weight: 700; line-height: 1.4; display: block; }
.side-widget ul a:hover { color: var(--navy); }
.side-widget p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }

/* Country flag chip */
.flag-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 26px 0 8px; }
.flag-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 850; color: var(--navy);
}
.flag-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: #020b16; color: rgba(255,255,255,.62); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.site-footer .brand img { height: 34px; width: auto; opacity: .95; margin-bottom: 18px; }
.site-footer .brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.5); max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.62); font-size: 14.5px; font-weight: 600; transition: color .15s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.42); line-height: 1.6;
}

/* ---------- About / Contact ---------- */
.founder-photo {
  width: 96px; height: 96px; border-radius: 28px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy)); color: var(--gold);
  display: grid; place-items: center; font-size: 2rem; font-weight: 950;
  box-shadow: var(--shadow-soft);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.contact-card { padding: 34px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.contact-card--gold { border-color: rgba(203,166,75,.5); background: linear-gradient(180deg, #fff, #fbf7ed); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 480px; order: -1; }
  .photo-card.main { height: 380px; }
  .photo-card.side { height: 230px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -0.055em; }
  h2 { font-size: clamp(30px, 9vw, 42px); }
  .section-lead { font-size: 16px; }
  .site-nav { top: 10px; }
  .nav-inner { height: 62px; padding: 0 12px; gap: 8px; }
  .nav-logo img { height: 27px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn--sm { display: none; }
  .hero { padding-top: 118px; padding-bottom: 64px; }
  .hero-visual { min-height: 400px; }
  .photo-card.main { height: 290px; border-radius: 26px; }
  .photo-card.side { height: 180px; border-radius: 24px; }
  .hero-actions .btn { width: 100%; }
  .page-hero { padding: 130px 0 64px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 52px 26px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .program-card { padding: 30px; }
  .card { padding: 24px; }
}
