/* ============ Tokens ============ */
:root {
  --navy-950: #0b0b26;
  --navy-900: #12123a;
  --navy-800: #1b1b4d;
  --navy-700: #26265f;
  --teal-500: #22c3b6;
  --teal-300: #8fe9de;
  --ink-100: #f4f5fb;
  --ink-300: #b9bad8;
  --ink-400: #8e8fb8;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink-100);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--teal-300);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* subtle film-grain texture over the dark background */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 38, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-right: auto;
}
.nav__logo-j { color: var(--ink-100); }
.nav__logo-v { color: var(--teal-500); }
.nav__logo-b { color: var(--ink-100); }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--ink-300);
}
.nav__links a:hover { color: var(--ink-100); }

.nav__cta {
  border: 1px solid var(--teal-500);
  color: var(--teal-300);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover { background: var(--teal-500); color: var(--navy-950); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  width: 100%;
  height: 2px;
  background: var(--ink-100);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 120px;
  overflow: hidden;
}

.hero__circuit {
  position: absolute;
  right: -120px;
  top: -40px;
  width: 640px;
  max-width: 70vw;
  height: auto;
  z-index: 0;
  color: var(--teal-500);
}
.circuit-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.35;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 2.6s ease-out forwards;
}
.circuit-line--delay1 { animation-delay: 0.25s; }
.circuit-line--delay2 { animation-delay: 0.5s; }
.circuit-node {
  fill: var(--teal-300);
  opacity: 0;
  animation: nodeIn 0.6s ease-out forwards;
  animation-delay: 2.4s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes nodeIn { to { opacity: 0.7; } }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__kicker {
  color: var(--teal-300);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
}

.hero__sub {
  margin-top: 22px;
  color: var(--ink-300);
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background: var(--teal-500);
  color: var(--navy-950);
}
.btn--primary:hover { transform: translateY(-1px); background: var(--teal-300); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink-100);
}
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-300); }

/* ============ Services ============ */
.services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.services__intro {
  max-width: 46ch;
  margin-bottom: 56px;
}
.services__intro h2 { font-size: 2rem; margin-bottom: 14px; }
.services__intro p { color: var(--ink-300); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px;
}

.services__divider {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}

.services__col h3 {
  font-size: 1.3rem;
  margin-bottom: 22px;
  color: var(--teal-300);
}

.services__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--ink-300);
}
.services__list li:last-child { margin-bottom: 0; }
.services__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--teal-500);
}

/* ============ Values ============ */
.values {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.values__item {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 22px;
}

.values__icon {
  width: 30px;
  height: 30px;
  color: var(--teal-500);
  margin-bottom: 18px;
}

.values__item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.values__item p {
  color: var(--ink-300);
  font-size: 0.95rem;
}

/* ============ Contact ============ */
.contact {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 120px;
}

.contact__panel {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}

.contact__panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto 16px;
}

.contact__panel p {
  color: var(--ink-300);
  max-width: 42ch;
  margin: 0 auto;
}

.contact__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.contact__card:hover {
  border-color: var(--teal-500);
  transform: translateY(-2px);
}
.contact__label {
  font-size: 0.82rem;
  color: var(--ink-400);
}
.contact__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-100);
}

/* ============ Footer ============ */
.footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--ink-400);
  font-size: 0.88rem;
}
.footer__logo { font-family: var(--font-display); font-weight: 700; }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .services__grid {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 0;
  }
  .services__divider { display: none; }
  .services__col + .services__col {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .values { grid-template-columns: 1fr; gap: 30px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__panel { padding: 44px 26px; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav.nav--open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-900);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.nav--open .nav__cta {
    display: inline-flex;
    margin: 0 24px 20px;
  }

  .hero { padding: 64px 20px 80px; }
  .hero__circuit { opacity: 0.5; right: -180px; }
}

/* ============ Nav active state ============ */
.nav__links a.is-active {
  color: var(--ink-100);
  position: relative;
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--teal-500);
}

/* ============ Home: process strip ============ */
.strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.strip__item {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 18px;
}
.strip__num {
  display: block;
  font-family: var(--font-display);
  color: var(--teal-500);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.strip__item p { color: var(--ink-300); }

/* ============ Home: products preview ============ */
.preview {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 100px;
}
.preview__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.preview__head h2 { font-size: 1.8rem; }
.preview__link {
  color: var(--teal-300);
  font-size: 0.92rem;
  white-space: nowrap;
}
.preview__link:hover { color: var(--teal-500); }

.preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pcard {
  display: block;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.pcard:hover { border-color: var(--teal-500); transform: translateY(-3px); }

.pcard__art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--teal-500);
  margin-bottom: 20px;
}
.pcard__art svg { width: 28px; height: 28px; }

.pcard h3 { font-size: 1.05rem; margin-bottom: 8px; }
.pcard p { color: var(--ink-300); font-size: 0.92rem; }

/* ============ CTA band ============ */
.cta-band {
  max-width: var(--max-w);
  margin: 0 auto 100px;
  padding: 0 24px;
}
.cta-band__inner {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band__inner h2 {
  font-size: 1.5rem;
  max-width: 28ch;
}

/* ============ Interior page header ============ */
.page-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 76px 24px 48px;
  max-width: 720px;
}
.page-header--tight { padding-bottom: 24px; }
.page-header__kicker {
  color: var(--teal-300);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
}
.page-header__sub {
  margin-top: 18px;
  color: var(--ink-300);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ============ Servicios (interior) ============ */
.services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 100px;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px;
}
.services__divider {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}
.services__col h3 {
  font-size: 1.3rem;
  margin-bottom: 22px;
  color: var(--teal-300);
}
.services__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--ink-300);
}
.services__list li:last-child { margin-bottom: 0; }
.services__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--teal-500);
}

/* ============ Catálogo de productos ============ */
.catalog {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  scroll-margin-top: 100px;
}

.product__art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--teal-500);
  margin-bottom: 22px;
}
.product__art svg { width: 46%; height: 46%; }

.product__body { flex: 1; margin-bottom: 22px; }
.product__body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.product__body p { color: var(--ink-300); font-size: 0.94rem; }
.product__note {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--ink-400);
}

.btn--wa {
  justify-content: center;
  gap: 9px;
  background: var(--teal-500);
  color: var(--navy-950);
  width: 100%;
  padding: 12px 20px;
}
.btn--wa:hover { background: var(--teal-300); }
.btn__wa-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ Proceso (Nosotros) ============ */
.process {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 100px;
}
.process h2 { font-size: 1.8rem; margin-bottom: 40px; }
.process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
}
.process__list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.process__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--teal-500);
  color: var(--teal-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.process__list h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process__list p { color: var(--ink-300); font-size: 0.95rem; }

/* ============ Contacto (interior) ============ */
.contact {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 110px;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 24px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.contact__card:hover { border-color: var(--teal-500); transform: translateY(-2px); }
.contact__label { font-size: 0.82rem; color: var(--ink-400); }
.contact__value { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-100); }

/* ============ Legal ============ */
.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 110px;
  color: var(--ink-300);
}
.legal h2 {
  color: var(--ink-100);
  font-size: 1.2rem;
  margin: 34px 0 12px;
}
.legal h2:first-of-type { margin-top: 26px; }
.legal p { margin-bottom: 4px; }
.legal em { color: var(--ink-400); font-style: normal; font-size: 0.92rem; }

/* ============ Footer (multi-página) ============ */
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--ink-400);
  font-size: 0.88rem;
}
.footer__logo { font-family: var(--font-display); font-weight: 700; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-right: auto;
}
.footer__links a:hover { color: var(--ink-100); }
.footer__inner p { width: 100%; }
@media (min-width: 720px) {
  .footer__inner p { width: auto; }
}

/* ============ Asistente flotante ============ */
.assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}

.assistant__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--teal-500);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(34, 195, 182, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.assistant__toggle:hover { transform: scale(1.05); background: var(--teal-300); }
.assistant__toggle svg { width: 24px; height: 24px; }
.assistant__icon-close { display: none; }
.assistant__toggle[aria-expanded="true"] .assistant__icon-chat { display: none; }
.assistant__toggle[aria-expanded="true"] .assistant__icon-close { display: block; }

.assistant__panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(340px, calc(100vw - 44px));
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  overflow: hidden;
  flex-direction: column;
  transform-origin: bottom right;
}
.assistant__panel[hidden] {
  display: none;
}
.assistant__panel:not([hidden]) {
  display: flex;
  animation: panelIn 0.18s ease-out;
}
@keyframes panelIn {
  from { opacity: 0; transform: scale(0.94) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.assistant__header {
  padding: 14px 12px 14px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.assistant__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink-300);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.assistant__close:hover { background: rgba(255,255,255,0.08); color: var(--ink-100); }

.assistant__messages {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
}
.assistant__msg {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 13px;
  border-radius: 12px;
  max-width: 88%;
}
.assistant__msg--bot {
  background: var(--navy-800);
  color: var(--ink-200, var(--ink-100));
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.assistant__msg--user {
  background: var(--teal-500);
  color: var(--navy-950);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.assistant__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
}
.assistant__chips button {
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--ink-300);
  font-size: 0.8rem;
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.assistant__chips button:hover {
  border-color: var(--teal-500);
  color: var(--teal-300);
}

.assistant__form {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.assistant__form input {
  flex: 1;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--ink-100);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.assistant__form input:focus { outline: none; border-color: var(--teal-500); }
.assistant__form button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--teal-500);
  color: var(--navy-950);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.assistant__wa-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--teal-300);
  font-size: 0.85rem;
  text-decoration: underline;
}

/* ============ Responsive additions ============ */
@media (max-width: 860px) {
  .preview__grid { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: 1fr 1fr; }
  .strip { grid-template-columns: 1fr; gap: 22px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .catalog { grid-template-columns: 1fr; }
  .assistant { right: 16px; bottom: 16px; }
  .assistant__panel { bottom: 66px; }
}

/* ============ Ubicación / mapa ============ */
.location {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 110px;
}
.location__panel {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 320px;
}
.location__info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.location__info h2 { font-size: 1.5rem; }
.location__info p { color: var(--ink-300); max-width: 32ch; }
.location__info .btn { align-self: flex-start; }
.location__map { min-height: 280px; }
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

@media (max-width: 780px) {
  .location__panel { grid-template-columns: 1fr; }
  .location__info { padding: 34px 26px; }
}