:root {
  --bg: #f4f1ea;
  --bg-soft: #edf5f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #183238;
  --muted: #66787a;
  --primary: #275f63;
  --primary-dark: #163f45;
  --accent: #d5a36a;
  --accent-soft: #f0dfc7;
  --line: rgba(22, 63, 69, 0.14);
  --shadow: 0 24px 70px rgba(23, 58, 63, 0.13);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(213,163,106,.12), transparent 30%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--primary-dark);
  color: #fff;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(250, 248, 244, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(25, 54, 58, .08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 10px 25px rgba(22, 63, 69, .22);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: .01em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: #365156;
  font-size: .92rem;
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--primary-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.modality-copy h2,
.location-card h2,
.closing-card h2,
.audience-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--primary-dark);
  font-style: italic;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #496367;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-tags span,
.closing-meta span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: #36565a;
  font-size: .86rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(22,63,69,.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(22,63,69,.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  color: var(--primary-dark);
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 52px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(234,243,240,.64)),
    radial-gradient(circle at 70% 20%, rgba(213,163,106,.18), transparent 40%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.visual-card::before {
  width: 230px;
  height: 230px;
  right: -60px;
  top: -50px;
  background: rgba(213,163,106,.16);
}

.visual-card::after {
  width: 180px;
  height: 180px;
  left: -45px;
  bottom: -30px;
  background: rgba(39,95,99,.12);
}

.visual-rings,
.visual-rings span {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-rings span {
  border: 1px solid rgba(39,95,99,.16);
}

.visual-rings span:nth-child(1) {
  width: 360px;
  height: 360px;
}

.visual-rings span:nth-child(2) {
  width: 260px;
  height: 260px;
}

.visual-rings span:nth-child(3) {
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,.34);
}

.visual-center {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 220px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.visual-center .micro {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.visual-center strong,
.visual-center em {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.visual-center strong {
  margin-top: 9px;
  color: var(--ink);
  font-weight: 500;
}

.visual-center em {
  color: var(--accent);
  font-weight: 500;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 30px rgba(24,50,56,.1);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-note p {
  margin: 0;
  font-size: .85rem;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(213,163,106,.14);
}

.note-a {
  left: 30px;
  top: 80px;
}

.note-b {
  right: 28px;
  top: 180px;
  animation-delay: -1.6s;
}

.note-c {
  left: 50px;
  bottom: 70px;
  animation-delay: -3s;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: -100px;
  top: 120px;
  background: rgba(39,95,99,.14);
}

.orb-two {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 30px;
  background: rgba(213,163,106,.17);
}

.mini-strip {
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 46px rgba(24,50,56,.08);
  backdrop-filter: blur(16px);
}

.strip-grid > div {
  padding: 24px 28px;
}

.strip-grid > div + div {
  border-left: 1px solid var(--line);
}

.strip-grid span,
.strip-grid strong {
  display: block;
}

.strip-grid span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.strip-grid strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.intro {
  padding-top: 132px;
}

.intro-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.section-heading h2,
.modality-copy h2,
.location-card h2,
.closing-card h2,
.audience-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

.intro-text {
  max-width: 720px;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.intro-text p {
  margin: 0 0 18px;
  color: #4f6669;
  font-size: 1.12rem;
}

.areas {
  background:
    linear-gradient(180deg, rgba(237,245,242,.72), rgba(245,241,234,.32));
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered > p:last-child {
  max-width: 630px;
  margin: 20px auto 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.74);
  box-shadow: 0 16px 42px rgba(24,50,56,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39,95,99,.28);
  box-shadow: 0 24px 55px rgba(24,50,56,.12);
}

.card-number {
  color: rgba(39,95,99,.34);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-top: 38px;
  border-radius: 21px;
  background: var(--bg-soft);
  color: var(--primary);
}

.card-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 30px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.audience-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 58px 66px;
  border-radius: var(--radius-xl);
  background: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.audience-card .eyebrow {
  color: #d6bd96;
}

.audience-copy h2 {
  max-width: 750px;
  color: #fff;
}

.audience-badge {
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.03);
}

.audience-badge span,
.audience-badge strong,
.audience-badge small {
  display: block;
  line-height: 1;
}

.audience-badge span {
  margin-bottom: -11px;
  color: #d6bd96;
  font-size: 1.5rem;
}

.audience-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
}

.audience-badge small {
  margin-top: 3px;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.modality {
  overflow: hidden;
}

.modality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.screen-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 14px solid #1f4d52;
  border-radius: 32px;
  background: #e7f0ed;
  box-shadow: 0 28px 70px rgba(22,63,69,.2);
}

.screen-top {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  background: #173e43;
}

.screen-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.screen-content {
  position: relative;
  min-height: 362px;
  background:
    radial-gradient(circle at 20% 20%, rgba(213,163,106,.2), transparent 30%),
    linear-gradient(135deg, #e9f3ef, #f8f5ef);
}

.person {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 16px 35px rgba(22,63,69,.13);
}

.person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
  opacity: .8;
}

.person::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 68px;
  height: 38px;
  border-radius: 40px 40px 18px 18px;
  background: currentColor;
  transform: translateX(-50%);
  opacity: .55;
}

.person-one {
  left: 17%;
  color: var(--primary);
  background: #fff;
}

.person-two {
  right: 17%;
  color: var(--accent);
  background: #fff;
}

.connection-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translate(-50%, -50%);
}

.connection-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(22,63,69,.1);
}

.modality-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.7);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(39,95,99,.38);
  animation: pulse 2.2s infinite;
}

.location {
  padding-top: 40px;
}

.location-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 48px;
  padding: 54px 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 50px rgba(24,50,56,.07);
}

.location-mark {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border-radius: 38px;
  background: var(--bg-soft);
  color: var(--primary);
}

.location-mark svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

.location-card p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.closing {
  padding-bottom: 120px;
}

.closing-card {
  padding: 84px 60px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(22,63,69,.96), rgba(39,95,99,.94));
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.closing-card .eyebrow {
  color: #d9c19e;
}

.closing-card h2 {
  color: #fff;
}

.closing-card > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}

.closing-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.closing-meta span {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.footer {
  padding: 0 0 34px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.footer p,
.footer-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Mejora progresiva: JS puede añadir esta clase solo cuando ya está activo. */
.reveal.animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1);
}

.reveal.animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(39,95,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,95,99,0); }
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 78px 20px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(250,248,244,.97);
    box-shadow: 0 22px 60px rgba(20,48,53,.18);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }

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

  .nav a {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(39,95,99,.08);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 142px;
  }

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

  .hero-grid {
    gap: 54px;
  }

  .visual-card {
    min-height: 500px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-text {
    padding-left: 0;
    border-left: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card {
    padding: 48px;
  }

  .modality-grid {
    gap: 55px;
  }

  .location-card {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 10px 0;
  }

  .brand-text strong {
    font-size: .92rem;
  }

  .brand-text small {
    font-size: .64rem;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .nav {
    inset: 68px 14px auto;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .visual-card {
    min-height: 410px;
    border-radius: 34px;
  }

  .visual-rings span:nth-child(1) {
    width: 290px;
    height: 290px;
  }

  .visual-rings span:nth-child(2) {
    width: 205px;
    height: 205px;
  }

  .visual-rings span:nth-child(3) {
    width: 126px;
    height: 126px;
  }

  .visual-center strong,
  .visual-center em {
    font-size: 1.6rem;
  }

  .floating-note {
    padding: 10px 12px;
  }

  .note-a {
    top: 44px;
    left: 20px;
  }

  .note-b {
    top: 138px;
    right: 16px;
  }

  .note-c {
    left: 28px;
    bottom: 42px;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .intro {
    padding-top: 90px;
  }

  .section-heading h2,
  .modality-copy h2,
  .location-card h2,
  .closing-card h2,
  .audience-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .audience-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 28px;
  }

  .audience-badge {
    width: 138px;
    height: 138px;
  }

  .audience-badge strong {
    font-size: 3.3rem;
  }

  .screen-frame {
    min-height: 330px;
    border-width: 10px;
  }

  .screen-content {
    min-height: 273px;
  }

  .person {
    width: 86px;
    height: 86px;
  }

  .person::before {
    top: 17px;
    width: 28px;
    height: 28px;
  }

  .person::after {
    bottom: 12px;
    width: 50px;
    height: 28px;
  }

  .connection-line {
    width: 62px;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 28px;
  }

  .location-mark {
    width: 94px;
    height: 94px;
    border-radius: 28px;
  }

  .closing-card {
    padding: 60px 24px;
    border-radius: 30px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
