@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}

:root {
  --bg: #10100f;
  --surface: #191918;
  --surface-alt: #141413;
  --text: #ece7dd;
  --muted: #b0aaa0;
  --border: #34322c;
  --accent: #c6a664;
  --accent-dark: #a8894a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html[data-theme='light'] {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --surface-alt: #ece7dc;
  --text: #1b1915;
  --muted: #6b6355;
  --border: #ddd5c6;
  --accent: #806330;
  --accent-dark: #6f5726;
  --shadow: 0 24px 60px rgba(27, 25, 21, 0.08);
  --shadow-hover: 0 30px 70px rgba(27, 25, 21, 0.14);
}

* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
html[data-theme='dark'] { color-scheme: dark; }
html[data-theme='light'] { color-scheme: light; }
::selection { background: var(--accent); color: var(--bg); }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--accent);
  color: #14120e;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 16px; }

/* Focus visible (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 96px, var(--max)); margin-inline: auto; }
.narrow { max-width: 820px; }
.reading-progress { position: fixed; inset: 0 0 auto; height: 2px; background: var(--accent); z-index: 60; transform: scaleX(0); transform-origin: left; pointer-events: none; }
.icon { display: inline-block; width: 20px; height: 20px; flex: 0 0 20px; background: currentColor; mask: var(--icon) center / contain no-repeat; }
.icon-arrow-up { --icon: url('/assets/icons/arrow-up-right.svg'); }
.icon-arrow-down { --icon: url('/assets/icons/arrow-down.svg'); }
.icon-menu { --icon: url('/assets/icons/menu.svg'); }
.icon-theme { --icon: url('/assets/icons/sun.svg'); }
[data-theme='light'] .icon-theme { --icon: url('/assets/icons/moon.svg'); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 32px #00000018; }
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--accent) 65%, transparent));
}
html[data-theme='light'] .brand .brand-logo { filter: brightness(0) opacity(0.8); }
.error-nav { display: flex; gap: 20px; color: var(--muted); font-size: 0.85rem; }
.error-nav a { min-height: 44px; display: inline-flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a,
.theme-toggle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { transform: scaleX(1); }
.nav-links a[aria-current] { color: var(--accent); }
.nav-links .nav-contact { color: var(--accent); gap: 6px; margin-left: 10px; }
.nav-contact .icon { width: 16px; height: 16px; flex-basis: 16px; }
.theme-toggle { width: 44px; flex: 0 0 44px; }
.theme-toggle { font-size: 1rem; color: var(--muted); }
.theme-toggle:hover { color: var(--accent); }
.lang-switch {
  border-left: 1px solid var(--border) !important;
}
.lang-switch:hover { border-color: var(--accent); }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0;
}
.studio-hero { padding: 0; overflow: clip; border-bottom: 1px solid var(--border); isolation: isolate; }
.flow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.hero-inner { position: relative; min-height: min(760px, calc(100svh - 230px)); display: grid; grid-template-columns: 1.5fr 1fr; align-content: space-between; padding-top: 58px; }
.hero-copy { padding-bottom: 50px; }
.hero-wordmark { font-size: 8rem; line-height: 0.95; margin: 0 0 20px -4px; font-weight: 500; }
.hero-wordmark span, .footer-brand span { color: var(--accent); }
.hero-statement { font-family: var(--serif); font-size: 3.4rem; line-height: 1.07; margin: 0 0 22px; }
em { font-weight: inherit; color: var(--accent); }
.hero-copy .lead { max-width: 490px; font-size: 0.96rem; }
.hero-copy .hero-actions { margin-top: 28px; }
.hero-signature { align-self: end; justify-self: end; margin-bottom: 60px; display: grid; font-size: 0.76rem; color: var(--muted); max-width: 290px; padding: 18px 0 0 20px; border-left: 1px solid var(--accent); }
.hero-signature strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--text); }
.signature-line { width: 48px; height: 1px; background: var(--accent); margin-bottom: 14px; transition: width 0.3s ease; }
.hero-signature:hover .signature-line { width: 96px; }
.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  text-wrap: balance;
}
h1 {
  font-size: 4.8rem;
  line-height: 1.04;
  margin-bottom: 28px;
}
h2 {
  font-size: 3.25rem;
  line-height: 1.08;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}
.lead {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 24px;
  gap: 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  --mx: 0px;
  --my: 0px;
  transform: translate(var(--mx), var(--my));
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.button:hover { transform: translate(var(--mx), calc(var(--my) - 2px)); }
.button.primary {
  background: var(--accent);
  color: #14120e;
  box-shadow: 0 8px 28px #00000012;
}
html[data-theme='light'] .button.primary { color: #ffffff; }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.button.secondary:hover { border-color: var(--accent); color: var(--accent); }
.button .icon { transition: transform 0.3s var(--ease); }
.button:hover .icon-arrow-up { transform: translate(2px, -2px); }
.text-button { color: var(--text); padding-inline: 10px; font-weight: 500; }
.text-button:hover { color: var(--accent); }

/* ---------- Hero values ---------- */
.hero-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  grid-column: 1 / -1;
  margin-top: 0;
  border-top: 1px solid var(--border);
}
.hero-values > a { display: flex; align-items: center; gap: 18px; padding: 28px 24px; transition: background 0.25s ease; min-width: 0; }
.hero-values > a:first-child { padding-left: 0; }
.hero-values > a + a { border-left: 1px solid var(--border); }
.hero-values > a:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.hero-values .value-number { color: var(--accent); font-size: 0.7rem; align-self: flex-start; padding-top: 5px; }
.hero-values .icon { margin-left: auto; color: var(--accent); }
.hero-values strong,
.hero-values span { display: block; }
.hero-values strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-values div > span { color: var(--muted); font-size: 0.76rem; }

/* ---------- Sections ---------- */
.section { padding: 112px 0; position: relative; }
.section > h2, .section > .container > h2 { max-width: 840px; }
.section-label { display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.section > .lead { max-width: 750px; font-size: 1rem; }
.section.alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- Methodology ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  counter-reset: step;
}
.method-grid article {
  position: relative;
  padding: 32px 26px 0 0;
  background: transparent;
  border-top: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.21, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.method-grid article::before {
  content: '→';
  position: absolute;
  top: -16px;
  right: 28px;
  width: 18px;
  background: var(--surface-alt);
  text-align: center;
  color: var(--accent);
  opacity: 0.5;
  font-size: 1rem;
  pointer-events: none;
}
.method-grid article:hover {
  border-color: var(--accent);
}
.method-number {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  transition: color 0.35s ease;
}
.method-grid article:hover .method-number { color: var(--accent); }
.method-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--accent); }
.method-grid p { color: var(--muted); margin-bottom: 0; }
.method-claim {
  margin: 48px 0 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

/* ---------- Services ---------- */
.services-list {
  display: grid;
  margin-top: 48px;
  counter-reset: services;
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: center;
  padding: 38px 0;
  margin: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}
.service-row::before { counter-increment: services; content: counter(services, decimal-leading-zero); font-family: var(--serif); font-size: 1.6rem; color: var(--accent); align-self: start; }
.service-row:hover {
  border-color: var(--accent);
}
.service-row:hover .service-tag {
  color: var(--text);
}
.service-row h3 { font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.service-claim {
  color: var(--accent) !important;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-row p { color: var(--muted); margin-bottom: 0; max-width: 640px; font-size: 0.92rem; }
.service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  padding: 8px 0;
  text-align: right;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Services enter in cascade: each row starts 90ms after the previous one
   while its row is ~20% inside the viewport. */
.services-list.reveal-group .service-row:nth-child(1) { transition-delay: 0s; }
.services-list.reveal-group .service-row:nth-child(2) { transition-delay: 0.09s; }
.services-list.reveal-group .service-row:nth-child(3) { transition-delay: 0.18s; }
.services-list.reveal-group .service-row:nth-child(4) { transition-delay: 0.27s; }
.services-list.reveal-group .service-row:nth-child(5) { transition-delay: 0.36s; }
.services-list.reveal-group .service-row:nth-child(6) { transition-delay: 0.45s; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
  align-items: start;
}
.about-photo {
  margin: 0;
  position: sticky;
  top: 130px;
  max-width: 420px;
  justify-self: start;
  align-self: start;
  display: inline-block;
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: none;
  border: 1px solid var(--border);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.about-photo:hover img {
  border-color: var(--accent);
}
.about-photo figcaption { padding: 26px 0 0 22px; border-left: 1px solid var(--accent); margin-top: 24px; }
.about-photo figcaption strong { display: block; font: 500 2rem/1.12 var(--serif); }
.about-photo figcaption span { display: block; margin-top: 16px; color: var(--muted); font-size: 0.72rem; }
.about-role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-copy p { color: var(--muted); font-size: 0.94rem; }
.about-copy p strong { color: var(--text); font-weight: 500; }
.about-copy .section-label { color: var(--accent); }
.about-facts {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--border);
}
.about-facts div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.about-facts strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--accent);
}
.about-facts span { color: var(--text); }

/* ---------- Credential strip ---------- */
.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.credential-strip li {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--border));
  padding: 7px 12px;
  border-radius: 4px;
}

/* ---------- How I can help (cards) ---------- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
/* Gold line-icon badge used across cards */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.21, 1), background 0.4s ease, box-shadow 0.4s ease;
}
.card-icon svg { width: 24px; height: 24px; }
.help-card {
  position: relative;
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.21, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
/* Accent bar that sweeps in from the top on hover */
.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.help-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: var(--shadow-hover);
}
.help-card:hover::before { transform: scaleX(1); }
.help-card:hover .card-icon {
  transform: translateY(-4px);
}
.help-card h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; }
.help-card p { color: var(--muted); flex: 1; font-size: 0.9rem; }
.card-link {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link::after { content: '→'; transition: transform 0.25s ease; }
.card-link:hover::after { transform: translateX(4px); }

/* ---------- Training ---------- */
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.training-card {
  padding: 42px 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.21, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.training-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
}
.training-card:hover .card-icon {
  transform: translateY(-4px);
}
.training-card h3 { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: 16px; }
.training-card p { color: var(--muted); font-size: 0.94rem; }
.training-card:first-child { border-top: 2px solid var(--accent); }
.training-card:last-child { border-top: 2px solid #96ada5; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.25s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] p { animation: answer-enter 0.35s var(--ease); }
@keyframes answer-enter { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-list summary:hover { color: var(--accent); }
.faq-list details p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 720px;
}

/* ---------- Contact ---------- */
.contact-section { max-width: var(--max); text-align: center; padding-block: 128px; }
.contact-section .section-label { justify-content: center; }
.contact-section h2 { margin: 0 auto 28px; font-size: 4rem; max-width: 940px; }
.contact-section .lead { margin-inline: auto; max-width: 620px; }
.contact-section .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--surface-alt);
}
.footer-top { display: flex; align-items: center; gap: 48px; padding-bottom: 48px; }
.footer-brand { font: 500 4.5rem/1 var(--serif); }
.footer-top p { color: var(--muted); margin: 0; font-size: 0.85rem; }
.back-top { margin-left: auto; display: grid; place-items: center; border: 1px solid var(--border); width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; transition: color 0.2s ease, border-color 0.2s ease; }
.back-top:hover { color: var(--accent); border-color: var(--accent); }
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-content p { margin: 0; }
.footer-content a:hover { color: var(--accent); }

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.motion-ready .reveal.visible { opacity: 1; transform: none; }
.motion-ready .studio-hero + .section > .section-label { opacity: 1; transform: none; }
.motion-ready .hero-copy .reveal { animation: hero-enter 0.95s var(--ease) both; }
.motion-ready .hero-copy .delay-1 { animation-delay: 100ms; }
.motion-ready .hero-copy .delay-2 { animation-delay: 220ms; }
.motion-ready .help-card.visible:hover { transform: translateY(-4px); }
@keyframes hero-enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .button { transform: none !important; }
  html { scroll-behavior: auto !important; }
}
@media (max-width: 1080px) {
  .container { width: calc(100% - 64px); }
  .nav { min-height: 76px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 20px 32px 28px; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); max-height: calc(100dvh - 76px); overflow-y: auto; grid-template-columns: 1fr 1fr; gap: 8px; }
  .nav-links.open { display: grid; }
  .nav-links a { justify-content: flex-start; font-size: 0.95rem; min-height: 48px; }
  .nav-links .nav-contact { margin-left: 0; }
  .nav-links .lang-switch { border: 0 !important; }
  html:not(.navigation-ready) .nav-toggle { display: none; }
  html:not(.navigation-ready) .nav { flex-wrap: wrap; }
  html:not(.navigation-ready) .nav-links { position: static; display: flex; flex-wrap: wrap; width: 100%; padding: 0 0 20px; box-shadow: none; }
  .hero-inner { min-height: auto; padding-top: 52px; grid-template-columns: 1.8fr 1fr; }
  .hero-wordmark { font-size: 7rem; }
  .hero-statement { font-size: 2.9rem; }
  .hero-signature { margin-bottom: 48px; max-width: 210px; }
  .hero-values > a { padding: 24px 14px; gap: 12px; }
  .hero-values .icon { display: none; }
  .hero-values strong { font-size: 1.15rem; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 20px; }
  .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .training-card { padding: 32px 26px; }
  .about-grid { gap: 48px; }
  .service-row { grid-template-columns: 36px minmax(0, 1fr) 140px; gap: 20px; }
}
@media (min-width: 1081px) and (max-height: 800px) {
  .hero-inner { padding-top: 30px; min-height: 0; }
  .hero-wordmark { font-size: 6.2rem; margin-bottom: 12px; }
  .hero-statement { font-size: 2.6rem; }
  .hero-copy { padding-bottom: 30px; }
  .hero-values > a { padding-block: 22px; }
}
@media (min-width: 721px) and (max-width: 1080px) and (max-height: 850px) {
  .hero-inner { padding-top: 30px; }
  .hero-wordmark { font-size: 6rem; margin-bottom: 14px; }
  .hero-statement { font-size: 2.5rem; }
  .hero-copy { padding-bottom: 30px; }
}
@media (max-width: 720px) {
  .container { width: calc(100% - 40px); }
  .nav-links { padding-inline: 20px; }
  .brand { font-size: 1.8rem; }
  .brand-logo { width: 32px; height: 32px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 28px; }
  .hero-copy { padding-bottom: 24px; }
  .hero-wordmark { font-size: 6rem; margin-left: -2px; }
  .hero-statement { font-size: 2.6rem; margin-bottom: 18px; }
  .hero-copy .lead { font-size: 0.9rem; max-width: 370px; }
  .hero-copy .eyebrow { font-size: 0.68rem; margin-bottom: 16px; }
  .hero-copy .hero-actions { gap: 8px; margin-top: 24px; }
  .hero-actions .button { min-height: 48px; padding: 12px 18px; gap: 12px; font-size: 0.76rem; }
  .hero-actions .text-button { padding-inline: 0; }
  .hero-signature { display: none; }
  .hero-values { grid-template-columns: 1fr; }
  .hero-values > a, .hero-values > a:first-child { padding: 14px 0; gap: 20px; }
  .hero-values > a + a { border-left: 0; border-top: 1px solid var(--border); }
  .hero-values strong { font-size: 1.2rem; margin-bottom: 0; }
  .hero-values div > span { font-size: 0.72rem; }
  .hero-values .icon { display: block; }
  .flow-canvas { opacity: 0.28; }
  .hero:not(.studio-hero) { padding: 64px 0; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
  .section { padding: 76px 0; }
  .studio-hero + .section { padding-top: 28px; }
  .section > .lead { font-size: 0.92rem; }
  .section-label { font-size: 0.7rem; }
  .help-grid { gap: 12px; margin-top: 32px; }
  .help-card { padding: 26px; }
  .help-card .card-icon { margin-bottom: 12px; }
  .service-row { grid-template-columns: 28px minmax(0, 1fr); gap: 14px; padding: 28px 0; }
  .service-row::before { font-size: 1.15rem; }
  .service-row h3 { font-size: 1.65rem; }
  .service-row p { font-size: 0.88rem; }
  .service-tag { grid-column: 2; text-align: left; font-size: 0.67rem; padding: 0; }
  .services-list { margin-top: 32px; }
  .training-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .training-card { padding: 28px 24px; }
  .training-card h3 { font-size: 1.8rem; }
  .method-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .method-grid article { padding: 26px 0 0; }
  .method-grid p { font-size: 0.85rem; }
  .method-number { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { position: relative; top: auto; max-width: 380px; justify-self: center; width: 100%; }
  .about-photo figcaption strong { font-size: 1.7rem; }
  .about-facts div { grid-template-columns: 1fr; gap: 4px; }
  .help-grid { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 1.25rem; }
  .faq-list details p { font-size: 0.9rem; }
  .contact-section h2 { font-size: 2.65rem; }
  .contact-section .hero-actions .button { font-size: 0.8rem; padding: 16px 20px; }
  .footer-top { gap: 24px; flex-wrap: wrap; padding-bottom: 30px; }
  .footer-brand { font-size: 3.5rem; }
  .footer-top p { order: 3; width: 100%; }
  .footer-content { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  .hero-inner { padding-top: 20px; }
  .hero-wordmark { font-size: 4.8rem; margin-bottom: 12px; }
  .hero-statement { font-size: 2.1rem; margin-bottom: 12px; }
  .hero-copy { padding-bottom: 24px; }
  .hero-copy .lead { font-size: 0.85rem; }
  .hero-copy .hero-actions { margin-top: 16px; }
  .hero-copy .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-values > a, .hero-values > a:first-child { padding-block: 12px; }
  .hero-values strong { font-size: 1.1rem; }
  .hero-values div > span { display: none; }
  .method-grid { grid-template-columns: 1fr; }
  .contact-section h2 { font-size: 2.3rem; }
}
