/* Ipanaqué Espinoza — identidad desde logo.png */

:root {
  --navy: #1B3A7A;
  --navy-deep: #142D5E;
  --blue: #2B6CB8;
  --blue-mid: #3B82C4;
  --teal: #2EC4B6;
  --teal-light: #5DD9CF;

  --paper: #F7F6F3;
  --paper-warm: #EFEDE8;
  --white: #FFFFFF;
  --ink: #1A2332;
  --ink-muted: #5C6678;
  --ink-faint: #8B95A5;
  --line: #DDE1E8;

  --error: #DC3545;
  --error-bg: #FFF5F5;
  --whatsapp: #25D366;

  --font: 'DM Sans', system-ui, sans-serif;
  --font-script: 'Pacifico', cursive;

  --text-display: clamp(2rem, 4.2vw, 2.75rem);
  --text-h2: clamp(1.625rem, 3vw, 2rem);
  --text-h3: 1.125rem;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 88px;
  --space-section-mobile: 64px;

  --text-script: clamp(1.5rem, 3vw, 2rem);
  --text-script-sm: 1.375rem;
  --text-lead: 1.0625rem;

  --nav-h: 76px;
  --ease: 0.22s ease;
  --max: 1140px;
  --radius-sm: 8px;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(27, 58, 122, 0.07);
  --shadow-hover: 0 10px 28px rgba(27, 58, 122, 0.11);
  --shadow-btn: 0 4px 14px rgba(27, 58, 122, 0.25);
  --shadow-nav: 0 1px 3px rgba(27, 58, 122, 0.04);
  --shadow-nav-scrolled: 0 4px 16px rgba(27, 58, 122, 0.08);
  --shadow-photo: 0 16px 40px rgba(27, 58, 122, 0.14);
  --shadow-whatsapp: 0 4px 20px rgba(37, 211, 102, 0.45);
  --shadow-whatsapp-hover: 0 6px 28px rgba(37, 211, 102, 0.55);

  --focus-ring: 0 0 0 3px rgba(43, 108, 184, 0.12);
  --border-hover: rgba(46, 196, 182, 0.35);
  --teal-soft: rgba(46, 196, 182, 0.12);

  --success: #065F46;
  --success-bg: #D1FAE5;
  --whatsapp-dark: #1fb855;
  --whatsapp-text: #1A9E4B;
  --whatsapp-text-hover: #168A40;
  --whatsapp-border: #B8E6C8;
  --whatsapp-border-hover: #8FD4A8;
  --whatsapp-bg-hover: #F4FBF6;
  --map-bg: #ECEEF2;

  --on-dark-muted: rgba(255, 255, 255, 0.72);
  --footer-text: rgba(255, 255, 255, 0.75);
  --footer-text-muted: rgba(255, 255, 255, 0.4);
  --footer-border: rgba(255, 255, 255, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, ol { list-style: none; }

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

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 11px 22px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-deep);
  box-shadow: var(--shadow-btn);
}

.btn--outline {
  background: transparent;
  color: var(--ink-muted);
  border: 1.5px solid var(--line);
  font-size: var(--text-sm);
  font-weight: 500;
}

.btn--outline:hover {
  border-color: var(--ink-faint);
  background: var(--paper);
  color: var(--ink);
}

.btn--whatsapp-outline {
  background: var(--white);
  color: var(--whatsapp-text);
  border: 1.5px solid var(--whatsapp-border);
  font-size: var(--text-sm);
  font-weight: 500;
}

.btn--whatsapp-outline:hover {
  background: var(--whatsapp-bg-hover);
  border-color: var(--whatsapp-border-hover);
  color: var(--whatsapp-text-hover);
}

.btn--sm {
  padding: 10px 18px;
  font-size: var(--text-sm);
}

.btn--lg { padding: 14px 28px; font-size: var(--text-body); }
.btn--block { width: 100%; }

/* ---- Navbar ---- */

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-nav);
  transition: box-shadow var(--ease);
}

.navbar--scrolled {
  box-shadow: var(--shadow-nav-scrolled);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 44px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: var(--radius-sm);
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar__brand-line--sub {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--blue-mid);
  letter-spacing: 0.01em;
}

.navbar__brand-line--main {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.navbar__nav {
  display: flex;
  gap: var(--space-lg);
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-muted);
  transition: color var(--ease);
}

.navbar__link:hover,
.navbar__link--active { color: var(--navy); }

.navbar__cta { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-xs);
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

.navbar__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle--open span:nth-child(2) { opacity: 0; }
.navbar__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */

.hero {
  padding: calc(var(--nav-h) + var(--space-2xl) + var(--space-xs)) 0 calc(var(--space-2xl) + var(--space-xl));
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__title {
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-xs);
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: var(--text-script);
  color: var(--teal);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.hero__subtitle {
  font-size: var(--text-lead);
  color: var(--ink-muted);
  max-width: 460px;
  margin-bottom: var(--space-lg);
}

.hero__photo {
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

@media (hover: hover) {
  .hero__photo:hover {
    box-shadow: var(--shadow-photo);
  }

  .hero__photo:hover .hero__image {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo,
  .hero__image {
    transition: none;
  }

  .hero__photo:hover .hero__image {
    transform: none;
  }
}

/* ---- Sections ---- */

.section {
  padding: var(--space-3xl) 0;
}

.section--white {
  background: var(--white);
}

.section--muted {
  background: var(--paper-warm);
}

.section__header {
  margin: 0 auto var(--space-2xl);
  max-width: 620px;
  text-align: center;
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
}

.section__eyebrow--light { color: var(--teal-light); }

.section__title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.section__desc {
  font-size: var(--text-body);
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 auto;
}

/* ---- Services grid ---- */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  flex: 1 1 220px;
  max-width: 252px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-sm);
  background: var(--teal-soft);
  border-radius: var(--radius-sm);
  color: var(--teal);
  font-size: 1.125rem;
}

.service-card__title {
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 160px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 1 1 100%;
    max-width: 320px;
  }
}

/* ---- Sedes ---- */

.sedes-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 320px);
  gap: var(--space-xl);
  align-items: start;
}

.sedes-locations {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sedes-contact {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-lg));
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hover);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.sedes-contact__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: var(--space-xs);
}

.sedes-contact__title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.sedes-contact__note {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: var(--space-lg);
}

.sedes-contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--ink);
}

.sedes-contact__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.sedes-contact__icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--teal);
  flex-shrink: 0;
}

.sedes-contact__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.sedes-contact__list a {
  color: var(--ink);
  transition: color var(--ease);
}

.sedes-contact__list a:hover { color: var(--blue); }

.sedes-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sede-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.sede-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.sede-card__map {
  position: relative;
  height: clamp(220px, 28vw, 260px);
  background: var(--map-bg);
  overflow: hidden;
}

.sede-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sede-card__body {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sede-card__number {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.sede-card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.sede-card__title::before {
  content: 'Sede ';
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sede-card__address {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.sede-card__actions {
  margin-top: auto;
}

/* ---- Staff ---- */

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}

.staff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}

.staff-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.staff-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-warm);
}

.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.staff-card__body {
  padding: var(--space-lg);
}

.staff-card__name {
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}

.staff-card__specialty {
  font-family: var(--font-script);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.3;
}

/* ---- Booking ---- */

.section--booking {
  background: var(--navy);
  padding: var(--space-3xl) 0;
}

.booking {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.booking__title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.booking__tagline {
  font-family: var(--font-script);
  font-size: var(--text-script-sm);
  color: var(--teal-light);
  margin-bottom: var(--space-md);
}

.booking__desc {
  font-size: var(--text-body);
  color: var(--on-dark-muted);
  max-width: 380px;
  line-height: 1.7;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-hover);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  appearance: none;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
  background: var(--white);
}

.form-input--error {
  border-color: var(--error);
  background: var(--error-bg);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C6678' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-error {
  display: block;
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: 4px;
  min-height: 1.1em;
}

.form-success {
  margin-top: 14px;
  padding: var(--space-sm) 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--success);
  background: var(--success-bg);
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-group--check {
  margin-bottom: var(--space-md);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check__input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-check__input--error {
  outline: 2px solid var(--error);
  outline-offset: 2px;
}

.form-check__label {
  font-size: var(--text-xs);
  line-height: 1.55;
  color: var(--ink-muted);
}

.form-check__label a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-check__label a:hover {
  color: var(--blue);
}

/* ---- Footer ---- */

.footer {
  background: var(--navy-deep);
  color: var(--footer-text);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__logo {
  width: 100px;
  border-radius: var(--radius-sm);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--footer-border);
  border-radius: 50%;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.footer__social-link--whatsapp:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
}

.footer__privacy {
  width: 100%;
  max-width: 480px;
  scroll-margin-top: calc(var(--nav-h) + var(--space-md));
}

.footer__privacy-summary {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}

.footer__privacy-summary::-webkit-details-marker {
  display: none;
}

.footer__privacy-summary::after {
  content: ' ↓';
  font-size: 0.65rem;
  opacity: 0.7;
}

.footer__privacy[open] .footer__privacy-summary::after {
  content: ' ↑';
}

.footer__privacy-summary:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__privacy-body {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--footer-border);
  font-size: var(--text-xs);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.footer__privacy-body a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__privacy-body a:hover {
  color: #fff;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--footer-text-muted);
  margin-top: 4px;
}

.footer__credit {
  font-size: var(--text-xs);
  color: var(--footer-text-muted);
}

.footer__credit a {
  color: var(--footer-text);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--ease);
}

.footer__credit a:hover {
  color: var(--teal);
}

/* ---- WhatsApp flotante ---- */

.whatsapp-float {
  position: fixed;
  right: var(--space-lg);
  bottom: var(--space-lg);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.75rem;
  color: #fff;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: var(--shadow-whatsapp);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
  box-shadow: var(--shadow-whatsapp-hover);
  color: #fff;
}

@media (max-width: 520px) {
  .whatsapp-float {
    right: var(--space-md);
    bottom: var(--space-md);
    width: 52px;
    height: 52px;
    font-size: 1.625rem;
  }
}

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__photo { max-width: 480px; margin: 0 auto; order: -1; }
  .hero__content { text-align: center; }
  .hero__subtitle { max-width: none; margin-left: auto; margin-right: auto; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .booking { grid-template-columns: 1fr; gap: var(--space-xl); }
  .booking__intro { text-align: center; }
  .booking__desc { max-width: none; margin: 0 auto; }
  .sedes-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .sedes-contact { position: static; box-shadow: var(--shadow); }
}

@media (min-width: 961px) {
  .sedes-layout {
    min-height: calc(260px * 2 + var(--space-lg) + 200px);
  }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }

  .hero {
    padding-top: calc(var(--nav-h) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: var(--space-xs) 0;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .navbar__nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__link {
    display: block;
    padding: 14px var(--space-lg);
    text-align: center;
  }

  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .section { padding: var(--space-section-mobile) 0; }
  .section--booking { padding: var(--space-section-mobile) 0; }

  .booking-form { padding: var(--space-lg); }
}

@media (max-width: 520px) {
  .staff-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero__content .btn { width: 100%; }
}
