:root {
  --navy: #0b1f6b;
  --blue: #1d4ed8;
  --sky: #3b82f6;
  --ink: #101828;
  --mute: #475467;
  --line: #d7e0f3;
  --paper: #f4f7ff;
  --white: #ffffff;
  --gold: #c9a227;
  --shadow: 0 24px 60px rgba(11, 31, 107, .14);
  --sans: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --serif: Fraunces, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}
body.menu-lock { overflow: hidden; }
a, button { -webkit-tap-highlight-color: rgba(11, 31, 107, .12); touch-action: manipulation; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 50;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
}
.skip:focus { top: 12px; }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), #7dd3fc);
  transition: width .08s linear;
}
.spot {
  position: fixed;
  width: 420px;
  height: 420px;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(59, 130, 246, .16), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .35s ease;
}
body.is-pointer .spot { opacity: 1; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(244, 247, 255, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.is-on {
  background: rgba(255, 255, 255, .9);
  border-bottom-color: var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(160deg, #3b82f6, #0b1f6b);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, .45);
  animation: pulse 2.8s ease-in-out infinite;
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand small {
  color: var(--mute);
  font-size: .75rem;
}
.menu { display: flex; align-items: center; gap: 26px; }
.menu a {
  color: var(--mute);
  font-size: .95rem;
  font-weight: 600;
  position: relative;
}
.menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .28s ease;
}
.menu a:hover,
.menu a.is-on { color: var(--navy); }
.menu a.is-on::after,
.menu a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff !important;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11, 31, 107, .22); }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 72px;
}
.hero-glow {
  position: absolute;
  inset: -10% 0 auto;
  height: 70%;
  background:
    radial-gradient(circle at 18% 20%, rgba(59, 130, 246, .22), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(11, 31, 107, .18), transparent 32%);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7eeff;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.05em;
}
.hero h1 .clip {
  display: block;
  overflow: hidden;
}
.hero h1 .clip em {
  display: block;
  font-style: normal;
  animation: clipup 1s cubic-bezier(.16, 1, .3, 1) both;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero h1 .accent em { animation-delay: .16s; }
.lead {
  margin: 0 0 28px;
  max-width: 32rem;
  color: var(--mute);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-fill {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 31, 107, .24);
}
.btn-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.28), transparent 75%);
  transform: translateX(-130%);
}
.btn-fill:hover::after { animation: shine .7s ease; }
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stats li {
  padding-top: 12px;
  border-top: 2px solid #c9d6f6;
}
.stats b { display: block; font-size: .95rem; }
.stats span { color: var(--mute); font-size: .82rem; }

.hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 900px;
}
.hero-photo {
  margin: 0 0 0 auto;
  width: 86%;
  overflow: hidden;
  border-radius: 32px;
  background: #0b1f6b;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 50% 12%;
  animation: ken 18s ease-out forwards;
}
.hero-chip {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: 44%;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #0b1f6b;
}
.hero-chip img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: 50% 78%;
}
.hero-chip figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(7, 16, 48, .82));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}
.hero-city {
  position: absolute;
  top: 18px;
  left: 0;
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(11, 31, 107, .12);
}

.strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}
.strip-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.strip-in {
  display: flex;
  gap: 40px;
  padding: 18px 40px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
}
.strip-in span::after {
  content: "·";
  margin-left: 40px;
  color: var(--blue);
}

.section { padding: 96px 0; }
.section-tint { background: #eaf0ff; }
.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.head { max-width: 38rem; margin-bottom: 36px; }
.head p:last-child,
.about-copy > p,
.contact p { color: var(--mute); }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.checks { margin: 22px 0 0; padding: 0; list-style: none; }
.checks li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: transform .25s ease, color .25s ease;
}
.checks li:hover { transform: translateX(8px); color: var(--navy); }
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}
.about-media { position: relative; min-height: 520px; }
.about-main {
  width: 82%;
  height: 520px;
  margin-left: auto;
  object-fit: cover;
  object-position: 50% 70%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 1s ease;
}
.about-media:hover .about-main { transform: scale(1.03); }
.about-side {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 46%;
  height: 230px;
  object-fit: cover;
  object-position: 50% 10%;
  border: 6px solid var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #0b1f6b;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 31, 107, .22);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.16), transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}
.tile:hover::after { animation: shine .8s ease; }
.tile-lg { grid-column: span 2; min-height: 430px; }
.tile-wide { grid-column: span 2; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  transition: transform .7s ease;
}
.tile:hover img { transform: scale(1.07); }
.tile span {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 18px;
  background: linear-gradient(transparent, rgba(8, 18, 52, .88));
  font-weight: 700;
  transform: translateY(8px);
  transition: transform .35s ease;
}
.tile:hover span { transform: none; }

.quote {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: #fff;
}
.quote-bg {
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(180deg, rgba(11, 31, 107, .92), rgba(29, 78, 216, .86)),
    url("../assets/accion-reunion.png") center / cover;
  animation: ken 22s ease-out infinite alternate;
}
.quote-in { position: relative; z-index: 1; max-width: 46rem; }
.quote .kicker { color: #bfdbfe; }
.quote p {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  line-height: 1.3;
}
.quote cite {
  color: #dbe7ff;
  font-style: normal;
  font-size: .9rem;
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 28px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 31, 107, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 50px rgba(11, 31, 107, .16);
}
.card-hot {
  background: var(--navy);
  color: #fff;
}
.card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #e7eeff;
  color: var(--navy);
  font-weight: 800;
}
.card-hot span { background: #1d4ed8; color: #fff; }
.card p:nth-of-type(1) {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.card-hot p:nth-of-type(1) { color: #93c5fd; }
.card h3 { margin: 0 0 10px; font-size: 1.5rem; }
.card p:last-child { margin: 0; color: var(--mute); }
.card-hot p:last-child { color: #dbe7ff; }

.line {
  margin: 0;
  padding: 0;
  list-style: none;
}
.line li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0 22px 28px;
  border-left: 2px solid #c9d6f6;
  position: relative;
}
.line li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px #eaf0ff;
  transform: scale(0);
}
.line li.in::before { animation: popdot .4s ease forwards; }
.line li:hover { transform: translateX(6px); transition: transform .25s ease; }
.line b { color: var(--navy); }
.line h3, .line p { margin: 0; }
.line p { margin-top: 6px; color: var(--mute); }

.contact {
  background:
    linear-gradient(180deg, rgba(244, 247, 255, .92), rgba(244, 247, 255, .96)),
    url("../assets/accion-atencion.png") center 70% / cover;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.form:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(11, 31, 107, .18);
}
.form label { display: grid; gap: 6px; font-weight: 700; font-size: .9rem; }
.form label small {
  font-weight: 500;
  color: var(--mute);
}
.phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faff;
  overflow: hidden;
}
.phone:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, .12);
}
.phone-cc {
  display: grid;
  place-items: center;
  min-width: 62px;
  padding: 0 10px;
  background: #e7eeff;
  color: var(--navy);
  font-weight: 800;
}
.phone input {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faff;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, .12);
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.btn[disabled] { opacity: .65; cursor: wait; }
.form.is-bad [required]:invalid { border-color: #ef4444; }
.form.is-bad .phone:has(:invalid) { border-color: #ef4444; }
.hint, .note { margin: 0; color: var(--mute); font-size: .86rem; font-weight: 500; }
.note[data-ok] { color: #157347; }
.note[data-err] { color: #b42318; }
.mail {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid rgba(29, 78, 216, .3);
}

.foot {
  padding: 40px 0 28px;
  background: #07143f;
  color: rgba(255, 255, 255, .62);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 28px;
}
.foot strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.15rem;
}
.foot nav { display: grid; gap: 8px; }
.foot nav a:hover { color: #fff; }
.foot .mail { color: #93c5fd; }

.dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(7, 20, 63, .94);
  box-shadow: var(--shadow);
}
.dock a {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
}
.dock-main {
  border-radius: 12px;
  background: #3b82f6;
}

.totop {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 24;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.totop.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.pop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 20, 63, .94);
  animation: fade .28s ease;
}
.pop[hidden] { display: none; }
.pop img {
  max-height: 76vh;
  border-radius: 16px;
  animation: popin .35s cubic-bezier(.16, 1, .3, 1);
}
.pop p { color: #fff; font-weight: 700; }
.pop-x {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: up .85s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-play-state: paused;
}
.reveal.in { animation-play-state: running; }
.mosaic .reveal:nth-child(2) { animation-delay: .08s; }
.mosaic .reveal:nth-child(3) { animation-delay: .16s; }
.mosaic .reveal:nth-child(4) { animation-delay: .08s; }
.mosaic .reveal:nth-child(5) { animation-delay: .16s; }
.mosaic .reveal:nth-child(6) { animation-delay: .24s; }
.cards .reveal:nth-child(2) { animation-delay: .1s; }
.cards .reveal:nth-child(3) { animation-delay: .2s; }
.line .reveal:nth-child(2) { animation-delay: .08s; }
.line .reveal:nth-child(3) { animation-delay: .16s; }
.line .reveal:nth-child(4) { animation-delay: .24s; }

.enter {
  opacity: 0;
  transform: translateY(18px);
  animation: up .8s cubic-bezier(.16, 1, .3, 1) both;
}
.d1 { animation-delay: .1s; }
.d3 { animation-delay: .22s; }
.d4 { animation-delay: .38s; }
.d5 { animation-delay: .5s; }
.d6 { animation-delay: .62s; }
.d7 { animation-delay: .7s; }
.d8 { animation-delay: .78s; }
.hero-chip.enter {
  animation: up .8s cubic-bezier(.16, 1, .3, 1) .62s both, float 4.8s ease-in-out 1.5s infinite;
}
.hero-city.enter {
  animation: up .8s cubic-bezier(.16, 1, .3, 1) .5s both, float 5.4s ease-in-out 1.4s infinite reverse;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@keyframes up { to { opacity: 1; transform: none; } }
@keyframes clipup { from { transform: translateY(110%); } to { transform: none; } }
@keyframes ken { to { transform: scale(1.08); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes drift { to { transform: translate(5%, 8%) scale(1.08); } }
@keyframes shine { to { transform: translateX(130%); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, .4); }
  50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}
@keyframes popdot { to { transform: scale(1); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes popin {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
  .tile-lg, .tile-wide { grid-column: span 2; min-height: 320px; }
}

@media (max-width: 900px) {
  .wrap { width: min(1180px, calc(100% - 28px)); }
  .hero-grid,
  .about,
  .cards,
  .contact-grid,
  .foot-grid,
  .line li { grid-template-columns: 1fr; }
  .nav { padding-top: env(safe-area-inset-top); }
  .nav-in { min-height: 64px; }
  .brand strong { font-size: .92rem; }
  .burger { display: grid; place-items: center; }
  .menu {
    display: none;
    position: absolute;
    top: calc(64px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    padding: 8px 20px calc(20px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 64px);
    overflow: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(11, 31, 107, .12);
  }
  .menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 2px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .menu a::after { display: none; }
  .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }
  .menu.is-open { display: flex; }
  .hero {
    padding: calc(92px + env(safe-area-inset-top)) 0 36px;
  }
  .hero-grid { gap: 24px; }
  .hero-visual {
    order: -1;
    min-height: 0;
    perspective: none;
  }
  .hero-photo { width: 100%; border-radius: 24px; }
  .hero-photo img { height: min(58vw, 340px); }
  .hero-chip {
    width: 42%;
    left: 10px;
    bottom: 12px;
    border-width: 3px;
    border-radius: 16px;
  }
  .hero-chip img { height: 86px; }
  .hero-city {
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: .7rem;
  }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .lead { font-size: 1.02rem; margin-bottom: 20px; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }
  .btn { width: 100%; min-height: 50px; }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .stats b { font-size: .78rem; }
  .stats span { font-size: .68rem; line-height: 1.3; }
  .hero-chip.enter,
  .hero-city.enter,
  .about-side { animation: up .7s ease both; }
  .about { gap: 28px; }
  .about-media { min-height: 0; }
  .about-main { width: 100%; height: 280px; border-radius: 20px; }
  .about-side { width: 38%; height: 118px; bottom: 10px; border-width: 4px; }
  .tile { min-height: 190px; border-radius: 18px; }
  .tile-lg { min-height: 230px; }
  .tile-wide { min-height: 190px; }
  .tile span {
    padding: 12px;
    font-size: .86rem;
    transform: none;
  }
  .tile:hover,
  .card:hover,
  .btn:hover { transform: none; }
  .section, .quote { padding: 48px 0; }
  .head { margin-bottom: 24px; }
  .line li {
    gap: 6px;
    padding: 18px 0 18px 22px;
  }
  .form {
    padding: 20px;
    border-radius: 20px;
  }
  .form:focus-within { transform: none; }
  .form input,
  .form select,
  .form textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .foot {
    padding: 32px 0 calc(20px + env(safe-area-inset-bottom));
  }
  .foot nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .foot .mail { overflow-wrap: anywhere; }
  .dock {
    display: grid;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 6px;
  }
  .dock a.is-on { color: #93c5fd; }
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .totop {
    right: 12px;
    bottom: calc(90px + env(safe-area-inset-bottom));
  }
  .pop { padding: 16px 12px; align-content: center; }
  .pop img { width: 100%; max-height: 68vh; object-fit: contain; }
  .pop-x {
    top: calc(8px + env(safe-area-inset-top));
    width: 44px;
    height: 44px;
  }
  .spot { display: none; }
}

@media (max-width: 420px) {
  .hero-chip { display: none; }
  .badge { font-size: .7rem; }
  .stats { gap: 8px; }
  .mosaic { gap: 8px; }
  .tile { min-height: 164px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .enter, .hero h1 .clip em, .hero-glow, .hero-photo img, .hero-chip,
  .hero-city, .about-side, .quote-bg, .strip-track, .mark, .tile img, .btn, .card, .spot {
    animation: none !important;
    transition: none !important;
  }
  .reveal, .enter, .hero h1 .clip em { opacity: 1; transform: none; }
  .spot { display: none; }
}
