:root {
  --paper: #f5f9fc;
  --paper-2: #e8f4fa;
  --ink: #071e2f;
  --ink-2: #4a6270;
  --line: #c9e0ee;
  --white: #ffffff;
  --blue: #0480d0;
  --blue-deep: #0367a8;
  --blue-navy: #031c33;
  --lime: #8ec63f;
  --lime-2: #6fa01f;
  --wa: #128c4a;
  --wa-2: #0e7a3f;
  --escobar: #0480d0;
  --raza: #8ec63f;
  --centro: #0367a8;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(3, 28, 51, .17);
  --shadow-soft: 0 14px 38px rgba(3, 28, 51, .09);
  --radius: 28px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(980px 420px at 108% -10%, rgba(4, 128, 208, .18), transparent 54%),
    radial-gradient(720px 340px at -10% 6%, rgba(142, 198, 63, .16), transparent 50%),
    var(--paper);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 16px; top: -40px; z-index: 80;
  padding: 8px 12px; background: var(--ink); color: #fff; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.announce {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: var(--blue-navy); color: #dceaf4;
  font-size: 13px; font-weight: 700;
}
.announce p { margin: 0; }
.announce-short { display: none; }
.announce p > a { color: #fff; text-decoration: none; margin-left: 12px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.25); }
.announce p > a:hover { color: var(--lime); }
.live-dot {
  display: inline-block; width: 7px; height: 7px; margin-right: 7px;
  border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 5px rgba(142,198,63,.13);
}
.announce .social { gap: 6px; }
.announce .social a {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: #fff;
}
.announce .social span,
.site-footer .social span,
.topbar .social span {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

.topbar-end { display: flex; align-items: center; gap: 8px; margin-left: 0; }
.cta-narrow { display: none; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px;
  min-height: 82px;
  padding: 8px clamp(18px, 5vw, 72px);
  background: rgba(244, 248, 251, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(140%);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.scrolled .topbar {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(3, 28, 51, .06);
}
.brand { margin-right: auto; text-decoration: none; }
.brand img {
  width: auto; height: 72px;
  object-fit: contain; object-position: left center;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  filter: drop-shadow(0 8px 16px rgba(3, 28, 51, .13));
}
.menu-toggle {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 16px; height: 1.5px; margin: 0 auto; background: var(--ink); position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a, .submenu-toggle {
  padding: 8px 11px; border: 0; border-radius: 8px;
  background: none; color: var(--ink-2); text-decoration: none;
  font-size: 13.5px; font-weight: 700; cursor: pointer;
}
.site-nav a:hover, .submenu-toggle:hover, .site-nav a[aria-current="page"] {
  color: var(--blue); background: #fff;
}
.has-sub { position: relative; }
.submenu {
  display: none; position: absolute; top: 100%; right: 0; min-width: 200px;
  padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu, .has-sub.open .submenu { display: grid; }

.social { display: flex; align-items: center; gap: 8px; }
.social a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: #fff; color: var(--blue); text-decoration: none;
  box-shadow: 0 0 0 1px var(--line);
}
.social a:hover { background: var(--blue); color: #fff; }
.social svg { width: 18px; height: 18px; }
.site-footer .social { margin-top: 14px; }
.site-footer .social a { background: rgba(255,255,255,.08); color: #fff; box-shadow: none; }
.site-footer .social a:hover { background: var(--lime); color: var(--blue-navy); }

.book, .wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  padding: 11px 18px; border-radius: 999px; border: 0;
  color: #fff; text-decoration: none;
  font-weight: 800; font-size: 14px; letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.book { background: linear-gradient(135deg, #0795e7, var(--blue-deep)); box-shadow: 0 12px 28px rgba(4, 128, 208, .35); }
.book:hover { background: linear-gradient(135deg, var(--blue), #025589); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(4,128,208,.4); }
.book-lg, .wa-lg { padding: 15px 22px; font-size: 15px; }
.wa { background: var(--wa); box-shadow: 0 8px 18px rgba(18, 140, 74, .28); }
.wa:hover { background: var(--wa-2); transform: translateY(-1px); }
.wa svg { width: 19px; height: 19px; flex: 0 0 auto; }
.wa-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.wa-ghost:hover { background: var(--white); color: var(--ink); }
.wa-sm { padding: 8px 12px; font-size: 12px; box-shadow: none; }

.wrap { padding: 0 clamp(18px, 5vw, 72px); }
.kicker {
  margin: 0 0 10px; color: var(--blue);
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.brand-line {
  margin: 0 0 14px; color: var(--lime-2);
  font-family: var(--serif); font-style: italic; font-optical-sizing: auto;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 18px;
  font-family: var(--serif); font-weight: 700; font-optical-sizing: auto;
  font-size: clamp(2.7rem, 6.2vw, 5.4rem);
  line-height: .92; letter-spacing: -.045em;
}
h1 em { font-style: italic; font-weight: 500; color: var(--lime-2); }
.lede { max-width: 38rem; margin: 0 0 28px; color: var(--ink-2); font-size: 1.08rem; font-weight: 500; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px; background: var(--white); color: var(--ink);
  border: 1px solid var(--line); text-decoration: none; font-size: 13px; font-weight: 700;
}
.pill:hover { border-color: var(--blue); color: var(--blue-deep); }
.pill i { width: 8px; height: 8px; border-radius: 50%; }
.pill.escobar i { background: var(--escobar); }
.pill.raza i { background: var(--raza); }
.pill.centro i { background: var(--centro); }

.hero {
  position: relative;
  min-height: min(84vh, 800px);
  display: grid;
  align-items: end;
  padding: 48px clamp(18px, 5vw, 72px) 40px;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0;
  border-radius: 0 0 54px 54px;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% center;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 28, 51, .9) 0%, rgba(3, 28, 51, .64) 43%, rgba(3, 28, 51, .12) 78%),
    linear-gradient(180deg, rgba(3, 28, 51, .08), rgba(3, 28, 51, .62));
}
.hero-copy { position: relative; z-index: 1; max-width: 800px; padding-bottom: 10px; min-width: 0; }
.hero-copy .lede { overflow-wrap: anywhere; }
.hero .kicker { color: #9ed4f3; }
.hero .brand-line { color: var(--lime); }
.hero h1 { max-width: 12ch; color: #fff; text-wrap: balance; }
.hero .lede { color: #d7e8f3; }
.hero-kicker { display: flex; align-items: center; gap: 10px; }
.hero-kicker span { display: block; width: 34px; height: 1px; background: var(--lime); }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 17px 0 0;
  color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700;
}
.hero-proof span { color: var(--lime); margin-right: -10px; }
.hero .wa-glass {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.34);
  box-shadow: none; backdrop-filter: blur(12px);
}
.hero .wa-glass:hover { background: #fff; color: var(--blue-navy); }
.hero .note-float {
  position: absolute; right: clamp(18px, 5vw, 72px); bottom: 36px; z-index: 2;
  max-width: 270px; padding: 17px 48px 17px 19px; background: rgba(255,255,255,.94); color: var(--ink);
  border-radius: 20px; font-size: 13px; text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(16px);
}
.hero .note-float b {
  display: block; font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--blue);
}
.hero .note-float span {
  display: block; margin-bottom: 3px; color: var(--lime-2);
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.hero .note-float i {
  position: absolute; right: 16px; top: 50%; translate: 0 -50%;
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff; font-style: normal;
}

.stage {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: end;
  padding: 40px clamp(18px, 5vw, 72px) 20px;
}
.stage-visual {
  position: relative; min-height: 560px; overflow: hidden;
  border-radius: 36px 8px 36px 8px;
  background: linear-gradient(160deg, #0480d0, #031c33);
  box-shadow: 0 28px 60px rgba(3, 28, 51, .28);
}
.stage-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.stage-visual .logo-plate {
  position: absolute; top: 18px; right: 18px; z-index: 1;
  width: 132px; height: auto; inset: auto 18px auto auto;
  background: #fff; border-radius: 22px; padding: 10px;
  box-shadow: 0 16px 32px rgba(3, 28, 51, .28);
}
.note {
  position: absolute; left: 20px; bottom: 20px; z-index: 1;
  max-width: 240px; padding: 16px 18px; background: #fff;
  border-radius: 16px; font-size: 13.5px;
  box-shadow: 0 12px 30px rgba(4, 48, 86, .18);
  border-left: 5px solid var(--lime);
}
.note b { display: block; font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--blue); }

.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: -28px clamp(18px, 5vw, 72px) 0; border: 1px solid var(--line); border-radius: 22px;
  background: var(--white);
  position: relative; z-index: 3;
  box-shadow: var(--shadow-soft);
}
.metrics div { padding: 26px 28px; border-right: 1px solid var(--line); }
.metrics div:last-child { border-right: 0; }
.metrics strong {
  display: block; font-family: var(--serif); font-optical-sizing: auto;
  font-size: 2.3rem; font-weight: 700; color: var(--blue); letter-spacing: -.04em;
}
.metrics strong::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 5px;
  border-radius: 50%; background: var(--lime); vertical-align: top;
}
.metrics span { color: var(--ink-2); font-size: 13px; font-weight: 600; }

.steps-band { padding-top: 72px; padding-bottom: 24px; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 28px 0 0; padding: 0; list-style: none;
}
.steps li {
  position: relative; overflow: hidden;
  padding: 30px; background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.steps li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.steps b {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px;
  border-radius: 50%; background: #eff9e2; color: var(--lime-2);
  font-family: var(--sans); font-size: .76rem; font-weight: 800;
}
.steps h3 { margin: 0 0 8px; font-size: 1.15rem; }
.steps p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

.block { padding: 96px clamp(18px, 5vw, 72px); }
.block h2 {
  margin: 0 0 12px; font-family: var(--serif); font-weight: 700; font-optical-sizing: auto;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); letter-spacing: -.04em; line-height: 1;
}
.intro { max-width: 42rem; color: var(--ink-2); margin-bottom: 36px; }

.lookbook {
  display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 14px;
  margin-top: 8px;
}
.lookbook figure {
  margin: 0; position: relative; overflow: hidden; border-radius: 24px;
  min-height: 280px; background: #031c33;
}
.lookbook figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3,28,51,.42));
  pointer-events: none;
}
.lookbook img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.lookbook figcaption {
  position: absolute; left: 16px; bottom: 16px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--ink);
  z-index: 1; font-size: 12px; font-weight: 800; letter-spacing: .04em;
}
.lookbook figure:first-child { min-height: 420px; }
.lookbook figure:first-child img { min-height: 420px; }

.video-showcase {
  background:
    radial-gradient(circle at 100% 0, rgba(142, 198, 63, .13), transparent 34%),
    linear-gradient(180deg, rgba(232, 244, 250, .76), rgba(245, 249, 252, .35));
  border-top: 1px solid rgba(201, 224, 238, .8);
  border-bottom: 1px solid rgba(201, 224, 238, .8);
}
.video-feature {
  margin-top: 8px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--blue-navy);
  border-radius: 18px;
}
.video-frame--wide { aspect-ratio: 16 / 9; }
.video-frame--short { aspect-ratio: 9 / 16; }
.video-frame--square { aspect-ratio: 9 / 16; }
.video-frame video,
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame video { object-fit: contain; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 18px;
}
.video-card {
  min-width: 0;
  padding: 10px 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(3, 28, 51, .06);
}
.video-card h3 {
  margin: 16px 8px 0;
  font-size: 1rem;
  line-height: 1.35;
}
.video-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.branch-card {
  display: grid; gap: 6px; padding: 0 0 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.branch-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.branch-card .branch-visual {
  height: 118px;
  background:
    linear-gradient(135deg, rgba(4, 128, 208, .92), rgba(3, 28, 51, .88)),
    radial-gradient(circle at 80% 20%, rgba(142, 198, 63, .45), transparent 42%);
}
.branch-card.raza .branch-visual {
  background:
    linear-gradient(135deg, rgba(111, 160, 31, .9), rgba(3, 28, 51, .86)),
    radial-gradient(circle at 80% 20%, rgba(4, 128, 208, .4), transparent 42%);
}
.branch-card.centro .branch-visual {
  background:
    linear-gradient(135deg, rgba(3, 103, 168, .94), rgba(3, 28, 51, .9)),
    radial-gradient(circle at 80% 20%, rgba(142, 198, 63, .35), transparent 42%);
}
.branch-main { text-decoration: none; display: grid; gap: 6px; padding: 0 22px; margin-top: -28px; }
.branch-card .tag {
  display: inline-flex; width: max-content;
  padding: 6px 10px; border-radius: 999px;
  background: #fff; box-shadow: 0 8px 18px rgba(3, 28, 51, .12);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.branch-card.escobar .tag { color: var(--blue); }
.branch-card.raza .tag { color: var(--lime-2); }
.branch-card.centro .tag { color: var(--blue-deep); }
.branch-card h3 { margin: 10px 0 6px; font-size: 1.12rem; line-height: 1.25; }
.branch-card p { margin: 0; color: var(--ink-2); font-size: 14px; }
.branch-card .addr {
  color: inherit; text-decoration: none;
  background: linear-gradient(transparent 70%, rgba(142, 198, 63, .35) 0);
}
.branch-card .addr:hover { color: var(--blue-deep); }
.branch-contacts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 14px; padding: 0 22px;
}
.branch-card .phone { font-weight: 800; color: var(--blue-deep); text-decoration: none; }
.branch-card .phone:hover { color: var(--wa); }

.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.care {
  position: relative; min-height: 150px; padding: 25px; background: var(--white); border: 1px solid var(--line);
  border-radius: 21px; text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.care:hover { border-color: var(--lime); background: #fbfff4; transform: translateY(-3px); }
.care::after {
  content: "↗"; position: absolute; right: 18px; top: 16px;
  color: var(--blue); font-size: 18px; opacity: .65;
}
.care h3 { margin: 0 0 6px; font-size: 1.02rem; }
.care p { margin: 0; color: var(--ink-2); font-size: 13.5px; }

.checkup {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
}
.checkup ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.checkup li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4fbff;
  border: 1px solid var(--line);
  font-weight: 700;
}
.checkup-side {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, var(--blue-navy), var(--blue-deep));
  color: #d7e8f3;
}
.checkup-side h3 { color: #fff; font-family: var(--serif); font-size: 2rem; margin: 0 0 10px; }
.checkup-side p { color: #c5def0; }

.zones { display: flex; flex-wrap: wrap; gap: 8px; }
.zone {
  padding: 8px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--ink-2);
}

.hook {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--blue-navy), var(--blue-deep) 55%, #0480d0);
  color: #e8eef6; border-radius: 28px;
}
.hook h2 { color: #fff; }
.hook p { color: #c5def0; }
.hook .wa { justify-self: start; }

.social-band { padding-top: 24px; }
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.social-card {
  display: grid; gap: 4px; padding: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}
.social-card svg { width: 28px; height: 28px; color: var(--blue); margin-bottom: 8px; }
.social-card span { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.social-card b { font-size: 1.05rem; }
.social-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.social-card.ig svg { color: #c13584; }
.social-card.tt svg { color: #111; }
.social-card.x svg { color: #111; }
.social-card.yt svg { color: #ff0033; }
.social-card.wa { background: var(--wa); color: #fff; border-color: transparent; }
.social-card.wa span, .social-card.wa b { color: #fff; }

.hours {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px;
}
.hours div { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.hours dt { color: var(--ink-2); font-size: 12px; font-weight: 700; }
.hours dd { margin: 4px 0 0; font-weight: 800; }

.desk {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start;
  padding: 80px clamp(18px, 5vw, 72px);
  background: linear-gradient(160deg, var(--blue-navy), #052a48);
  color: #d7e2ee;
}
.desk h2 { color: #fff; }
.desk p { color: #a9b8c8; }
.desk a.tel {
  color: var(--lime); font-family: var(--serif); font-optical-sizing: auto;
  font-size: clamp(1.8rem, 3vw, 2.8rem); text-decoration: none; font-weight: 700;
}
form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 28px; background: var(--white); color: var(--ink); border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,.16);
}
label { display: grid; gap: 6px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
input, select {
  width: 100%; min-height: 48px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 12px; background: #f4fbff;
  font-size: 16px;
}
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(4,128,208,.1); outline: 0; }
form .wa, form .book, .hint { grid-column: 1 / -1; }
.hint { margin: 0; text-align: center; color: var(--ink-2); font-size: 12px; text-transform: none; letter-spacing: 0; font-weight: 500; }

.faq { display: grid; gap: 8px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 2px 18px; }
.faq summary { cursor: pointer; font-weight: 750; padding: 14px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--ink-2); padding-bottom: 14px; }

.page-intro { padding: 56px clamp(18px, 5vw, 72px) 12px; }
.crumbs { display: flex; gap: 8px; margin: 0 0 16px; color: var(--ink-2); font-size: 13px; font-weight: 700; }
.crumbs a { color: var(--blue); text-decoration: none; }
.page-intro h1 { max-width: 16ch; font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.prose { max-width: 42rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose h2 { margin: 32px 0 10px; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: start; }
.side {
  position: sticky; top: 110px; padding: 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
}
.side h2 { font-size: 1.4rem; }
.side .addr { color: var(--blue); font-weight: 800; text-decoration: none; }
.map { width: 100%; height: 280px; border: 0; border-radius: 16px; }
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.team article { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.team span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.site-footer {
  padding: 48px clamp(18px, 5vw, 72px) 24px;
  background: var(--blue-navy); color: #c5d0da;
}
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 24px; }
.site-footer h2 { color: #fff; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer .addr { color: var(--lime); font-weight: 700; }
.site-footer p, .site-footer li { margin: 0 0 8px; font-size: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer img {
  width: 168px; height: auto; object-fit: contain; object-position: left;
  background: transparent; border-radius: 50%; padding: 0; margin-bottom: 12px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.2));
}
.site-footer .slogan {
  color: var(--lime); font-family: var(--serif); font-style: italic; font-size: 1.12rem;
}
.legal {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px;
}

.dock {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 16px; background: var(--wa); color: #fff;
  border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 800;
  box-shadow: 0 14px 32px rgba(18, 140, 74, .38);
}
.dock svg { width: 20px; height: 20px; }
.dock b {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--wa);
}

.error { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.hero-copy > * {
  animation: hero-in .7s both cubic-bezier(.2,.7,.2,1);
}
.hero-copy > :nth-child(2) { animation-delay: .06s; }
.hero-copy > :nth-child(3) { animation-delay: .12s; }
.hero-copy > :nth-child(4) { animation-delay: .18s; }
.hero-copy > :nth-child(5) { animation-delay: .24s; }
.hero-copy > :nth-child(n+6) { animation-delay: .3s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .social-cards, .lookbook { grid-template-columns: 1fr 1fr; }
  .topbar .social { display: none; }
  .hero .note-float { display: none; }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px; flex: 0 0 44px;
  }
  .announce {
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
  }
  .site-nav {
    display: none !important; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    max-height: calc(100dvh - 120px); overflow: auto;
    padding: 12px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(3, 28, 51, .12);
  }
  body.nav-open .site-nav { display: flex !important; }
  .site-nav a, .submenu-toggle {
    min-height: 48px; display: flex; align-items: center;
    font-size: 16px; padding: 12px 10px;
  }
  .submenu { position: static; display: grid; border: 0; padding: 0 0 0 10px; background: none; box-shadow: none; }
  .stage, .hook, .desk, .split, .foot-grid, .branch-grid, .steps, .checkup { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .care-grid, .hours, .team { grid-template-columns: 1fr 1fr; }
  .stage-visual { min-height: 380px; }
  .hero {
    min-height: auto;
    padding: 28px 18px 32px;
    align-items: end;
  }
  .hero-media { border-radius: 0 0 28px 28px; }
  .hero-media img { object-position: 78% 22%; }
  .hero .lede { max-width: 100%; }
  .hero h1 { max-width: 12ch; }
  .side { position: static; }
  .topbar {
    min-height: 68px;
    padding: 6px 12px;
    gap: 8px;
  }
  .brand { min-width: 0; max-width: calc(100% - 120px); }
  .topbar-end { margin-left: auto; }
  .cta-wide { display: none; }
  .cta-narrow { display: inline; }
  .topbar .header-cta {
    display: inline-flex;
    padding: 0 12px;
    height: 44px;
    min-height: 44px;
    font-size: 13px;
  }
  .brand img { height: 50px; border-radius: 50%; padding: 0; }
  .lookbook figure:first-child, .lookbook figure:first-child img { min-height: 240px; }
  .actions { width: 100%; }
  .page-intro .actions .book,
  .page-intro .actions .wa,
  .book, .wa { min-height: 48px; }
  .hero .book-lg, .hero .wa-lg,
  .page-intro .book, .page-intro .wa { width: 100%; }
  .metrics {
    margin: -18px 14px 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .metrics div { padding: 16px 10px; }
  .metrics strong { font-size: 1.7rem; }
  .block { padding: 56px 18px; }
  .page-intro { padding: 32px 18px 8px; }
  .desk { padding: 48px 18px; }
  .hook, .checkup { padding: 24px; border-radius: 22px; }
  .map { height: 220px; }
}

@media (max-width: 620px) {
  .care-grid, .hours, .team, form, .social-cards, .lookbook, .video-grid { grid-template-columns: 1fr; }
  .announce-full, .announce .social { display: none; }
  .announce-short { display: block; }
  .announce { justify-content: center; font-size: 13px; }
  h1 { font-size: 2.15rem; line-height: .98; }
  .hero { padding-bottom: 36px; }
  .hero .brand-line { font-size: 1.15rem; }
  .hero .lede, .page-intro .lede { font-size: 1rem; margin-bottom: 20px; overflow-wrap: anywhere; }
  .pills { margin-top: 16px; }
  .pill { background: rgba(255,255,255,.94); }
  .metrics span { font-size: 11px; line-height: 1.25; display: block; }
  .dock {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    padding: 8px 10px 8px 14px;
  }
  .dock span { display: inline; }
  .site-footer { padding: 36px 18px calc(28px + env(safe-area-inset-bottom, 0px)); }
  .foot-grid { gap: 28px; }
  .legal { padding-bottom: 56px; }
  .branch-contacts { padding: 0 16px; }
  .branch-main { padding: 0 16px; }
  .page-intro h1 { max-width: 14ch; font-size: 2.15rem; }
  .wrap { padding-left: 14px; padding-right: 14px; }
  .video-feature { padding: 6px; border-radius: 20px; }
  .video-frame { border-radius: 14px; }
  .video-card { padding: 7px 7px 16px; }
  .video-cta .wa { width: 100%; }
  form { padding: 18px; }
  .desk a.tel { font-size: 2rem; word-break: break-word; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.95rem; }
  .brand img { height: 50px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (min-width: 981px) {
  .menu-toggle { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .book, .wa, .branch-card, .care, .steps li, .social-card { transition: none; }
  .reveal, .reveal.in-view, .hero-copy > * { opacity: 1; transform: none; transition: none; animation: none; }
}
