
:root {
  --primary: #1b3a4b;
  --secondary: #c96a3c;
  --ink: #21262b;
  --paper: #f8f5f0;

  --primary-dark: color-mix(in oklch, var(--primary), black 20%);
  --primary-darker: color-mix(in oklch, var(--primary), black 35%);
  --primary-light: color-mix(in oklch, var(--primary), white 82%);
  --primary-lighter: color-mix(in oklch, var(--primary), white 93%);
  --primary-mid: color-mix(in oklch, var(--primary), white 55%);

  --secondary-dark: color-mix(in oklch, var(--secondary), black 15%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 85%);
  --secondary-lighter: color-mix(in oklch, var(--secondary), white 94%);

  --text-body: color-mix(in oklch, var(--ink), white 6%);
  --text-muted: color-mix(in oklch, var(--ink), white 42%);
  --text-inverse: color-mix(in oklch, var(--paper), white 4%);

  --bg-page: var(--paper);
  --bg-alt: color-mix(in oklch, var(--primary), white 95%);
  --border-soft: color-mix(in oklch, var(--primary), white 80%);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(23,32,41,.07), 0 1px 1px rgba(23,32,41,.05);
  --shadow-md: 0 6px 14px rgba(23,32,41,.09), 0 2px 5px rgba(23,32,41,.06);
  --shadow-lg: 0 18px 36px rgba(23,32,41,.14), 0 6px 14px rgba(23,32,41,.08);
  --shadow-xl: 0 34px 64px rgba(23,32,41,.18), 0 12px 24px rgba(23,32,41,.10);

  --font-body: 'Inter', 'Geist', system-ui, sans-serif;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--primary-darker);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1vw + 1rem, 1.35rem); }
p { margin: 0 0 var(--space-4); color: var(--text-body); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 6px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-3);
}
.eyebrow--dark { color: var(--secondary-dark); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 44px;
}
.btn--primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--secondary-dark); }
.btn--secondary {
  background: var(--paper);
  color: var(--primary-darker);
  box-shadow: var(--shadow-md);
}
.btn--secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline {
  background: transparent;
  border-color: color-mix(in oklch, var(--primary), white 55%);
  color: var(--primary-darker);
}
.btn--outline:hover { background: var(--primary-lighter); border-color: var(--primary-mid); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn--full { width: 100%; }


.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--paper), transparent 8%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: transform 0.4s ease;
}
.site-header.nav--hidden { transform: translateY(-100%); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
}
.logo { display: flex; align-items: center; gap: var(--space-2); }
.logo__text { font-weight: 800; font-size: 1.2rem; color: var(--primary-darker); letter-spacing: -0.02em; }
.nav-desktop ul { display: flex; align-items: center; gap: var(--space-6); }
.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-body);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition);
}
.nav-desktop a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}
.nav-desktop a:hover { color: var(--secondary-dark); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop .nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--primary-dark); color: #fff; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--primary-lighter);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 210;
  transition: background var(--transition);
}
.hamburger span {
  width: 20px; height: 2px;
  background: var(--primary-darker);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger:hover { background: var(--primary-light); }


.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(150deg, var(--primary-darker), var(--primary));
  clip-path: circle(0% at 92% 6%);
  transition: clip-path 0.65s cubic-bezier(.65,0,.35,1);
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav.is-open { visibility: visible; clip-path: circle(150% at 92% 6%); }
.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  text-align: center;
}
.mobile-nav nav a {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-nav.links-visible nav a { opacity: 1; transform: translateY(0); }
.mobile-nav.links-visible nav a:nth-child(1) { transition-delay: .05s; }
.mobile-nav.links-visible nav a:nth-child(2) { transition-delay: .12s; }
.mobile-nav.links-visible nav a:nth-child(3) { transition-delay: .19s; }
.mobile-nav.links-visible nav a:nth-child(4) { transition-delay: .26s; }
.mobile-nav.links-visible nav a:nth-child(5) { transition-delay: .33s; }
.mobile-nav__close {
  position: absolute;
  top: var(--space-5); right: var(--space-5);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}
.mobile-nav__close:hover { background: rgba(255,255,255,.22); }
body.no-scroll { overflow: hidden; }


.hero {
  padding: calc(var(--space-10) + 3rem) 0 var(--space-7);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-lighter), var(--paper) 70%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero__lead { font-size: 1.1rem; color: var(--text-muted); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
.hero__visual {
  position: relative;
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero__image {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative; z-index: 2;
}
.hero__shape { position: absolute; border-radius: 50%; z-index: 1; }
.hero__shape--circle {
  width: 130px; height: 130px;
  background: var(--secondary);
  top: -30px; right: -30px;
  opacity: 0.9;
}
.hero__shape--ring {
  width: 200px; height: 200px;
  border: 3px solid var(--primary-mid);
  bottom: -50px; left: -40px;
}
.hero__shape--line {
  width: 2px; height: 120px;
  background: var(--primary-mid);
  bottom: 30px; right: 40px;
  border-radius: 0;
}

.mini-cards {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  padding: var(--space-2) var(--space-1) var(--space-4);
  scroll-snap-type: x mandatory;
}
.mini-cards::-webkit-scrollbar { height: 6px; }
.mini-cards::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: var(--radius-full); }
.mini-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  font-weight: 600;
  color: var(--primary-darker);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-soft);
}
.mini-card i { font-size: 1.3rem; color: var(--secondary); }
.mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }


.section { padding: var(--space-9) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(140deg, var(--primary-darker), var(--primary));
  color: var(--text-inverse);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: color-mix(in oklch, var(--paper), transparent 12%); }

.section__head { max-width: 760px; margin: 0 auto var(--space-8); text-align: center; }
.section__head-text { color: var(--text-muted); font-size: 1.05rem; }

.section__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
.section__intro-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.section__intro-text p { color: var(--text-muted); }


.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--secondary-lighter);
  color: var(--secondary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-4);
}
.card--flat { box-shadow: var(--shadow-sm); }
.card--flat:hover { box-shadow: var(--shadow-md); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.services-grid--four { grid-template-columns: 1fr; }

.two-col { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }


.timeline {
  position: relative;
  padding-left: var(--space-6);
  border-left: 2px solid var(--primary-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}
.timeline__item { position: relative; padding-left: var(--space-5); }
.timeline__marker {
  position: absolute;
  left: calc(-1 * var(--space-6) - 20px);
  top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.timeline__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}
.timeline__content {
  background: #fff;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; }


.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.card--contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card--contact .card__icon { margin: 0 auto var(--space-4); }
.card--static { cursor: default; }
.card--static:hover { transform: none; box-shadow: var(--shadow-md); }


.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
.preview-grid__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.preview-grid__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.preview-list { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-5) 0; }
.preview-list li { display: flex; align-items: center; gap: var(--space-3); }
.preview-list i { color: var(--secondary); width: 20px; }


.cta-band {
  background: var(--primary-darker);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  top: -160px; right: -100px;
}
.cta-band__inner { text-align: center; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto var(--space-5); }


.site-footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,.85);
  padding: var(--space-9) 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 2px, transparent 2px),
    radial-gradient(circle at 32% 70%, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 2px, transparent 2px),
    radial-gradient(circle at 60% 30%, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 2px, transparent 2px),
    radial-gradient(circle at 85% 65%, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 2px, transparent 2px);
  background-size: 220px 220px;
  pointer-events: none;
}
.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-8);
}
.footer__brand p { color: rgba(255,255,255,.65); margin-top: var(--space-3); }
.logo--footer .logo__text { color: #fff; }
.footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: var(--space-4); }
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: flex-start; gap: var(--space-2); color: rgba(255,255,255,.7); }
.footer__contact i { color: var(--secondary); margin-top: 4px; }
.footer__bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: var(--space-5) 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}


.page-hero {
  padding: calc(var(--space-10) + 2rem) 0 var(--space-8);
  background: linear-gradient(180deg, var(--primary-lighter), var(--paper));
  text-align: center;
}
.page-hero__lead { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; }
.page-hero--legal { text-align: left; }
.page-hero--legal .container { max-width: 820px; }


.exercises-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.card--exercise { position: relative; }
.card__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-light);
  display: block;
  margin-bottom: var(--space-2);
}


.faq-list { display: flex; flex-direction: column; gap: var(--space-4); max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-darker);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--secondary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: var(--space-3); color: var(--text-muted); }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
.contact-layout__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.form-row { margin-bottom: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.form-row label { font-weight: 600; font-size: 0.9rem; color: var(--primary-darker); }
.form-row input, .form-row textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-alt);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 4px var(--secondary-lighter); }
.form-row--split { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.form-row--checkbox { flex-direction: row; align-items: flex-start; gap: var(--space-3); }
.form-row--checkbox input { width: 20px; height: 20px; min-height: unset; margin-top: 3px; }
.form-row--checkbox label { font-weight: 400; color: var(--text-muted); }

.contact-layout__side { display: flex; flex-direction: column; gap: var(--space-5); }
.card--info img { border-radius: var(--radius-md); }
.schedule-list { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-4) 0; }
.schedule-list li { display: flex; justify-content: space-between; padding-bottom: var(--space-2); border-bottom: 1px dashed var(--border-soft); font-size: 0.92rem; }
.schedule-note { color: var(--text-muted); font-size: 0.88rem; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }


.legal-content { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-7); }
.legal-item h2 { margin-bottom: var(--space-3); }
.legal-item p { color: var(--text-muted); }
.cookie-table { width: 100%; border-collapse: collapse; margin-top: var(--space-4); font-size: 0.92rem; }
.cookie-table th, .cookie-table td { padding: var(--space-3); border: 1px solid var(--border-soft); text-align: left; }
.cookie-table th { background: var(--bg-alt); color: var(--primary-darker); }


.thanks-section { padding: calc(var(--space-10) + 3rem) 0 var(--space-9); }
.thanks-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
}
.thanks-icon { font-size: 4rem; color: var(--secondary); margin-bottom: var(--space-5); }


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.cookie-modal.is-visible { display: flex; }
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,26,32,.6);
  backdrop-filter: blur(3px);
}
.cookie-modal__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: var(--space-7);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__box h2 { margin-bottom: var(--space-3); }
.cookie-modal__categories { display: flex; flex-direction: column; gap: var(--space-4); margin: var(--space-5) 0; }
.cookie-cat {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid var(--border-soft);
}
.cookie-cat__head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: var(--space-2); }
.cookie-cat__head input { width: 44px; height: 24px; accent-color: var(--secondary); cursor: pointer; }
.cookie-cat p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.cookie-modal__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.cookie-modal__actions .btn { flex: 1 1 auto; }


@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .exercises-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row--split { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-desktop { display: block; }
}

@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 0.85fr 1.15fr; }
  .section__intro { grid-template-columns: 1fr 1fr; }
  .section__intro--reverse { grid-template-columns: 1fr 1fr; }
  .section__intro--reverse .section__intro-media { order: -1; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid--four { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .exercises-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1.4fr 1fr; }
  .timeline { padding-left: var(--space-8); }
}

@media (max-width: 599px) {
  .container { padding: 0 var(--space-4); }
  .hero { padding-top: calc(var(--space-9) + 2rem); }
  .cookie-modal__actions { flex-direction: column; }
}