@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/Inter-300-400-500-600-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/Oswald-400-500-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/BebasNeue-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Allura";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Allura-400-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: oklch(0.975 0.014 84);
  --paper-deep: oklch(0.94 0.026 82);
  --ink: oklch(0.18 0.004 84);
  --ink-deep: oklch(0.13 0.012 180);
  --ink-panel: oklch(0.21 0.018 185);
  --ink-soft: oklch(0.34 0.006 84);
  --muted: oklch(0.49 0.006 84);
  --teal: oklch(0.64 0.085 192);
  --teal-deep: oklch(0.53 0.073 192);
  --teal-soft: oklch(0.83 0.055 190);
  --gold: oklch(0.88 0.04 82);
  --coral: oklch(0.59 0.115 41);
  --line: oklch(0.9 0.005 250);
  --line-dark: oklch(0.82 0.018 185 / 0.24);
  --white-soft: oklch(0.995 0.003 84);
  --whatsapp: oklch(0.73 0.18 150);
  --shadow: 0 24px 70px color-mix(in oklch, var(--ink-deep), transparent 84%);
  --content: min(1200px, calc(100vw - 48px));
  --radius: 8px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--teal), var(--white-soft) 22%);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white-soft);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  z-index: 20;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  background: color-mix(in oklch, var(--ink-deep), transparent 6%);
  backdrop-filter: blur(14px);
}

.nav-row {
  width: var(--content);
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: none;
}

.brand-meta {
  line-height: 1.15;
  white-space: nowrap;
}

.brand-meta .name {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-meta .sub {
  margin-top: 3px;
  color: var(--teal-soft);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: color-mix(in oklch, var(--white-soft), transparent 28%);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu a[aria-current="page"] {
  color: var(--teal-soft);
}

.cta-nav {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in oklch, var(--teal), transparent 46%);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: color-mix(in oklch, var(--teal-deep), transparent 62%);
  color: var(--white-soft);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.cta-nav:hover,
.cta-nav:focus-visible {
  border-color: color-mix(in oklch, var(--teal), var(--white-soft) 10%);
  background: color-mix(in oklch, var(--teal-deep), transparent 46%);
  color: var(--white-soft);
}

.cta-nav:active {
  transform: translateY(1px) scale(0.99);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  border-color: color-mix(in oklch, var(--teal), var(--white-soft) 10%);
  background: var(--teal);
  color: var(--ink-deep);
  box-shadow: 0 18px 42px color-mix(in oklch, var(--teal), transparent 76%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: color-mix(in oklch, var(--teal), var(--gold) 18%);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white-soft);
}

.button-outline {
  border-color: color-mix(in oklch, currentColor, transparent 48%);
  color: inherit;
  background: color-mix(in oklch, currentColor, transparent 94%);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: color-mix(in oklch, currentColor, transparent 20%);
  background: color-mix(in oklch, currentColor, transparent 88%);
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: min(760px, 82vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, oklch(0.54 0.056 192 / 0.26), transparent 30%),
    linear-gradient(112deg, oklch(0.12 0.012 178) 0%, oklch(0.15 0.012 178) 48%, oklch(0.2 0.02 182) 100%);
  color: var(--white-soft);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(0deg, oklch(1 0 0 / 0.1) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 18% 82%, oklch(0.88 0.04 82 / 0.22), transparent 28%);
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.64fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) 0 clamp(34px, 5vw, 58px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.cta-band h2 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero .lead {
  max-width: 650px;
  margin: clamp(20px, 3vw, 32px) 0 0;
  color: color-mix(in oklch, var(--white-soft), transparent 13%);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  text-wrap: pretty;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 100%;
  gap: 1px;
  margin-top: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.hero-fact {
  min-height: 104px;
  padding: 16px 18px;
  background: color-mix(in oklch, var(--ink-deep), transparent 8%);
}

.fact-label {
  display: block;
  color: color-mix(in oklch, var(--teal), var(--white-soft) 20%);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-value {
  display: block;
  margin-top: 6px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  margin: 0;
  min-width: 0;
  width: min(100%, 420px);
  justify-self: end;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--white-soft), transparent 94%);
  box-shadow: 0 30px 90px oklch(0 0 0 / 0.3);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  content: "";
  border: 1px solid color-mix(in oklch, var(--ink-deep), transparent 72%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(1.04);
}

.hero-visual figcaption {
  margin: 0;
  padding: 18px 20px 20px;
  color: color-mix(in oklch, var(--white-soft), transparent 20%);
  font-size: 0.9rem;
  line-height: 1.55;
  background: color-mix(in oklch, var(--ink-deep), transparent 10%);
}

.page-section {
  padding: clamp(58px, 9vw, 112px) 0;
}

.arrival-strip {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-deep);
  color: var(--white-soft);
}

.arrival-inner {
  width: min(1440px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr) auto;
  align-items: stretch;
}

.arrival-intro,
.arrival-list article,
.arrival-map {
  min-height: 140px;
  padding: clamp(18px, 2.4vw, 30px);
}

.arrival-intro {
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line-dark);
}

.arrival-intro span,
.arrival-list span {
  color: color-mix(in oklch, var(--teal), var(--white-soft) 18%);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.arrival-intro strong {
  margin-top: 6px;
  color: color-mix(in oklch, var(--teal), var(--white-soft) 28%);
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.arrival-intro p,
.arrival-list p {
  margin: 8px 0 0;
  color: color-mix(in oklch, var(--white-soft), transparent 32%);
  font-size: 0.92rem;
  line-height: 1.5;
}

.arrival-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.arrival-list article {
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line-dark);
}

.arrival-list strong {
  display: block;
  margin-top: 12px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.arrival-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white-soft);
  font-family: "Oswald", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
  white-space: nowrap;
}

.arrival-map:hover,
.arrival-map:focus-visible {
  background: var(--teal);
  color: var(--ink-deep);
}

.section-inner {
  width: var(--content);
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--ink);
  text-wrap: balance;
}

.section-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  text-wrap: pretty;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.expect-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.expect-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.quiet-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--white-soft), var(--paper) 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.panel-body {
  padding: clamp(22px, 4vw, 34px);
}

.panel-body h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.96;
}

.panel-body p {
  margin: 0;
  color: var(--ink-soft);
}

.schedule-band {
  background:
    radial-gradient(circle at 82% 12%, oklch(0.56 0.075 192 / 0.2), transparent 28%),
    var(--ink-deep);
  color: var(--white-soft);
}

.schedule-band .section-title,
.schedule-band .section-lead {
  color: inherit;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.schedule-item {
  min-height: 190px;
  padding: clamp(22px, 4vw, 34px);
  background: color-mix(in oklch, var(--ink-panel), transparent 6%);
}

.schedule-item h3 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.schedule-item p {
  margin: 0;
  color: color-mix(in oklch, var(--white-soft), transparent 18%);
}

.map-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-dark);
  background: color-mix(in oklch, var(--white-soft), transparent 96%);
}

.map-row p {
  margin: 0;
  max-width: 680px;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.ministry-link {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: color-mix(in oklch, var(--white-soft), var(--paper) 25%);
  text-decoration: none;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.ministry-link:hover,
.ministry-link:focus-visible {
  background: color-mix(in oklch, var(--teal), var(--white-soft) 80%);
  transform: translateY(-2px);
}

.ministry-link strong {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 1.9rem;
  line-height: 0.96;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.ministry-link span {
  color: var(--ink-soft);
}

.casas-section {
  background: var(--paper-deep);
}

.casas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.casas-art {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
  font-size: 1.1rem;
}

details p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.plan-section {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--ink-deep), var(--teal-deep) 12%), var(--ink-deep));
  color: var(--white-soft);
}

.plan-section .section-title,
.plan-section .section-lead {
  color: inherit;
}

.visit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 800;
  color: color-mix(in oklch, var(--white-soft), transparent 14%);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--ink-deep), var(--white-soft) 6%);
  color: var(--white-soft);
  padding: 13px 14px;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: color-mix(in oklch, var(--teal), var(--white-soft) 24%);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--teal), transparent 82%);
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in oklch, var(--white-soft), transparent 46%);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: color-mix(in oklch, var(--white-soft), transparent 28%);
  font-size: 0.92rem;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-band {
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--paper-deep), var(--teal) 8%), var(--paper-deep));
  color: var(--ink);
  padding: clamp(46px, 7vw, 78px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band-inner {
  width: var(--content);
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
}

.site-footer {
  background: var(--paper);
  color: var(--ink);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: var(--content);
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-mark {
  width: auto;
  height: 64px;
  margin-bottom: 14px;
}

.footer-brand .quote {
  color: var(--teal-deep);
  font-family: "Allura", cursive;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h5 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--teal-deep);
}

.footer-bottom {
  width: var(--content);
  max-width: calc(100vw - 48px);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 10px 28px color-mix(in oklch, var(--ink-deep), transparent 72%);
  text-decoration: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.wa-fab:hover,
.wa-fab:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 14px 34px color-mix(in oklch, var(--whatsapp), transparent 64%);
}

.wa-fab:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--white-soft);
}

@media (max-width: 900px) {
  [id] {
    scroll-margin-top: 96px;
  }

  .menu {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 82% 8%, oklch(0.52 0.065 192 / 0.18), transparent 36%),
      linear-gradient(180deg, var(--ink-deep) 0%, color-mix(in oklch, var(--ink-deep), var(--ink-panel) 34%) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .arrival-inner {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr;
  }

  .arrival-intro,
  .arrival-list article,
  .arrival-map {
    min-height: auto;
    padding: 20px 0;
  }

  .arrival-intro,
  .arrival-list article {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .arrival-list {
    grid-template-columns: 1fr;
  }

  .arrival-map {
    justify-content: space-between;
  }

  .hero-facts,
  .schedule-grid,
  .intro-grid,
  .casas-layout,
  .cta-band-inner,
  .map-row {
    grid-template-columns: 1fr;
  }

  .map-row .button {
    justify-self: start;
  }

  .visit-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --content: min(1200px, calc(100vw - 36px));
  }

  .nav-row,
  .hero-inner,
  .section-inner,
  .cta-band-inner,
  .footer-inner,
  .footer-bottom {
    max-width: calc(100vw - 36px);
  }

  .nav-row {
    gap: 10px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-meta .name {
    font-size: 12px;
    letter-spacing: 0.11em;
  }

  .brand-meta .sub {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .cta-nav {
    width: 88px;
    min-width: 88px;
    border-radius: var(--radius);
    justify-content: center;
    padding: 0;
    font-size: 0;
    letter-spacing: 0;
  }

  .cta-nav::before {
    display: block;
    content: "Planear";
    color: var(--white-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .hero-inner {
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 2.85rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    text-wrap: balance;
  }

  .hero .lead {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .button {
    min-height: 54px;
    justify-content: space-between;
    padding-inline: 18px;
  }

  .hero-actions .button,
  .section-actions .button,
  .form-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .hero-fact,
  .schedule-item,
  .ministry-link {
    min-height: auto;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-fact {
    min-height: 112px;
    padding: 14px;
  }

  .fact-value {
    font-size: 0.98rem;
  }

  .wa-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
