:root {
  --navy: #031c44;
  --navy-deep: #021632;
  --white: #ffffff;
  --gray: #f7f8fa;
  --ink: #101a2a;
  --muted: #667085;
  --line: rgba(3, 28, 68, 0.13);
  --gold: #b99768;
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;
  --container: min(1220px, calc(100% - 48px));
  --shadow: 0 30px 70px rgba(3, 28, 68, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { color: var(--white); background: var(--navy); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 130px 0; }

.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: -100px;
  padding: 12px 18px; color: var(--navy); background: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: var(--navy);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader img { width: min(560px, 76vw); height: auto; }
.preloader span {
  position: absolute; left: 50%; bottom: 12%; width: 120px; height: 1px;
  background: rgba(255,255,255,.25); transform: translateX(-50%); overflow: hidden;
}
.preloader span::after {
  content: ""; position: absolute; inset: 0; background: var(--white);
  animation: loader 1.1s ease infinite;
}
body.loaded .preloader { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loader { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: var(--white); transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.scrolled {
  color: var(--navy); background: rgba(255,255,255,.94); backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(3,28,68,.08);
}
.header-inner { height: 92px; display: flex; align-items: center; gap: 34px; }
.brand { position: relative; width: 250px; aspect-ratio: 984.52 / 230.84; flex: 0 0 auto; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .3s ease; }
.brand-logo-dark { opacity: 0; }
.site-header.scrolled .brand-logo-light { opacity: 0; }
.site-header.scrolled .brand-logo-dark { opacity: 1; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-nav a {
  position: relative; font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: currentColor; transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.header-cta {
  border: 1px solid rgba(255,255,255,.5); padding: 13px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: .25s ease;
}
.site-header.scrolled .header-cta { border-color: var(--navy); }
.header-cta:hover { background: var(--white); color: var(--navy); }
.site-header.scrolled .header-cta:hover { background: var(--navy); color: var(--white); }
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--white); background: var(--navy); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; transform: scale(1.06); will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 45%; filter: saturate(.8) contrast(1.04); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,28,68,.96) 0%, rgba(3,28,68,.82) 42%, rgba(3,28,68,.26) 75%, rgba(3,28,68,.18) 100%),
    linear-gradient(0deg, rgba(3,28,68,.78) 0%, transparent 38%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.hero-content { position: relative; z-index: 2; padding: 190px 0 85px; }
.hero-copy { max-width: 890px; }
.eyebrow {
  display: flex; align-items: center; gap: 14px; margin: 0 0 22px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow-dark { color: var(--navy); }
h1, h2, h3 { font-family: var(--heading); font-weight: 600; margin: 0; }
h1 { font-size: clamp(54px, 6.2vw, 94px); line-height: .93; letter-spacing: -.025em; }
h1 em, h2 em { font-weight: 500; font-style: italic; color: #d9c5a7; }
.hero-lead { max-width: 660px; margin: 30px 0 0; font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  min-height: 58px; padding: 0 28px; border: 1px solid transparent;
  font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease;
}
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { color: var(--white); background: transparent; border-color: rgba(255,255,255,.6); }
.button-navy { color: var(--white); background: var(--navy); }
.button-navy:hover { color: var(--navy); background: transparent; border-color: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 7px; }
.link-arrow { width: 15px; height: 15px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.text-link:hover .link-arrow-up, .social-links a:hover .link-arrow-up, .map-external:hover .link-arrow-up { transform: translate(3px,-3px); }
.text-link:hover .link-arrow-down { transform: translate(3px,3px); }
.text-link-dark { color: var(--navy); border-color: rgba(3,28,68,.3); }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); width: min(710px, 100%);
  margin-top: 75px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 25px;
}
.hero-facts div { display: flex; gap: 14px; align-items: flex-start; }
.hero-facts strong { font-family: var(--heading); font-size: 23px; font-weight: 500; color: #d9c5a7; }
.hero-facts span { font-size: 10px; line-height: 1.6; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.scroll-cue {
  position: absolute; z-index: 3; right: 34px; bottom: 38px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-cue i { width: 1px; height: 50px; background: linear-gradient(var(--white), transparent); animation: scrollLine 1.8s ease infinite; }
@keyframes scrollLine { 50% { transform: scaleY(.55); transform-origin: top; opacity: .5; } }

.listings { background: var(--gray); }
.listings-grid { display: grid; grid-template-columns: .82fr 1.3fr; align-items: center; gap: 90px; }
.listings-copy h2, .section-heading h2, .about-copy h2, .contact-heading h2, .insight-copy h2, .brand-statement h2 {
  font-size: clamp(44px, 5vw, 72px); line-height: .98; letter-spacing: -.025em; color: var(--navy);
}
.listings-copy > p:not(.eyebrow):not(.micro-note) { margin: 28px 0 32px; font-size: 14px; line-height: 1.9; color: var(--muted); }
.micro-note { margin: 18px 0 0; font-size: 10px; line-height: 1.6; color: #8a92a0; }
.listings-visual { position: relative; min-height: 530px; overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.map-image { width: 100%; height: 100%; min-height: 530px; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.listings-visual:hover .map-image { transform: scale(1.035); }
.map-card {
  position: absolute; left: 35px; bottom: 32px; width: min(340px, calc(100% - 70px));
  padding: 22px 25px; background: rgba(3,28,68,.9); color: var(--white); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
}
.map-card span { display: block; margin-bottom: 7px; font-size: 9px; letter-spacing: .19em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.map-card strong { display: block; font-family: var(--heading); font-size: 26px; font-weight: 500; }
.map-card small { display: block; margin-top: 6px; font-size: 9px; letter-spacing: .04em; color: rgba(255,255,255,.62); }
.map-pulse { position: absolute; right: 27%; top: 47%; width: 10px; height: 10px; border: 2px solid var(--white); border-radius: 50%; }
.map-pulse::before, .map-pulse::after { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; animation: pulse 2.2s ease-out infinite; }
.map-pulse::after { animation-delay: 1.1s; }
@keyframes pulse { to { inset: -34px; opacity: 0; } }

.principles { color: var(--white); background: var(--navy); }
.section-heading { max-width: 740px; margin-bottom: 65px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { color: var(--white); }
.section-heading > p:last-child { max-width: 610px; margin: 24px auto 0; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.62); }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.principle-card { position: relative; min-height: 440px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); overflow: hidden; transition: background .35s ease, transform .35s ease; }
.principle-card::after { content: ""; position: absolute; inset: auto 0 0; height: 0; background: var(--white); transition: height .35s ease; z-index: 0; }
.principle-card > * { position: relative; z-index: 1; }
.principle-card:hover::after { height: 100%; }
.principle-card:hover { color: var(--navy); transform: translateY(-5px); }
.card-number { font-family: var(--heading); font-size: 22px; color: #d9c5a7; }
.card-icon { width: 52px; height: 52px; margin: 60px 0 28px; }
.card-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.principle-card h3 { font-size: 30px; line-height: 1.05; font-weight: 500; }
.principle-card p { margin: 22px 0 0; font-size: 12px; line-height: 1.85; color: rgba(255,255,255,.6); transition: color .35s ease; }
.principle-card:hover p { color: rgba(3,28,68,.7); }

.insight { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--navy-deep); color: var(--white); }
.insight-image { min-height: 760px; overflow: hidden; }
.insight-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1s ease; }
.insight:hover .insight-image img { transform: scale(1.025); }
.insight-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(44px, 7vw, 120px); }
.insight-copy h2 { color: var(--white); }
.insight-copy > p:not(.eyebrow) { max-width: 570px; margin: 30px 0; font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.65); }
.insight-points { display: flex; flex-wrap: wrap; gap: 10px; }
.insight-points span { padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.about-visual { position: relative; height: 720px; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-frame { position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(3,28,68,.18); z-index: -1; }
.about-caption { position: absolute; right: -58px; bottom: 54px; padding: 18px 22px; background: var(--navy); color: var(--white); font-family: var(--heading); font-size: 23px; line-height: 1.15; box-shadow: var(--shadow); }
.about-copy > p:not(.eyebrow) { margin: 25px 0 0; font-size: 14px; line-height: 1.95; color: var(--muted); }
.about-copy .text-link { margin-top: 34px; }

.brand-statement { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--navy); text-align: center; }
.brand-statement::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(56,98,145,.45), transparent 58%); }
.brand-statement > .brand-watermark { position: absolute; width: 360px; max-width: 58vw; opacity: .07; }
.brand-statement .container { position: relative; z-index: 1; }
.brand-statement p { margin: 0 0 15px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.brand-statement h2 { color: var(--white); }

.contact { color: var(--white); background: var(--navy); }
.contact-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 65px; }
.contact-heading h2 { color: var(--white); }
.contact-heading .button { flex: 0 0 auto; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-details { border-top: 1px solid rgba(255,255,255,.18); }
.contact-item { position: relative; display: block; padding: 26px 50px 26px 0; border-bottom: 1px solid rgba(255,255,255,.18); transition: padding .25s ease; }
.contact-item:hover { padding-left: 10px; }
.contact-item span { display: block; margin-bottom: 9px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.contact-item strong { font-family: var(--heading); font-size: clamp(21px, 2vw, 28px); font-weight: 500; line-height: 1.3; }
.contact-item > .link-arrow { position: absolute; right: 3px; top: 50%; width: 17px; height: 17px; transform: translateY(-50%); }
.contact-item:hover > .link-arrow { transform: translate(3px, calc(-50% - 3px)); }
.social-links { display: flex; gap: 24px; margin-top: 28px; }
.social-links a { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.social-links .link-arrow { width: 13px; height: 13px; }
.social-links a:hover { color: var(--white); }
.map-wrap { position: relative; min-height: 540px; overflow: hidden; background: #0a274b; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 540px; border: 0; filter: grayscale(1) contrast(1.08) opacity(.92); }
.map-external {
  position: absolute; z-index: 2; right: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 18px;
  color: var(--navy); background: rgba(255,255,255,.96); box-shadow: 0 14px 30px rgba(3,28,68,.18);
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.map-external:hover { transform: translateY(-3px); color: var(--white); background: var(--navy); }
.map-external span { font-size: 15px; }

.site-footer { color: var(--white); background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.12); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding: 68px 0; }
.footer-brand img { width: 300px; height: auto; }
.footer-top p { margin: 0; font-size: 12px; line-height: 1.75; color: rgba(255,255,255,.5); }
.back-to-top { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.back-to-top span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-left: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: .25s ease; }
.back-to-top:hover span { background: var(--white); color: var(--navy); }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.09); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); }

.whatsapp-float {
  position: fixed; z-index: 90; right: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 18px 0 15px;
  border-radius: 999px; color: var(--white); background: #1fa855; box-shadow: 0 14px 30px rgba(12,81,39,.27);
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float svg { width: 25px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(12,81,39,.35); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.principles-grid .reveal:nth-child(2) { transition-delay: .08s; }
.principles-grid .reveal:nth-child(3) { transition-delay: .16s; }
.principles-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 10px; }
  .header-cta { display: none; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-card { min-height: 390px; }
  .listings-grid { gap: 55px; }
  .about-caption { right: -20px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); }
  .section { padding: 90px 0; }
  .header-inner { height: 74px; }
  .brand { width: 215px; }
  .menu-toggle {
    display: grid; place-content: center; gap: 7px; width: 46px; height: 46px; margin-left: auto;
    border: 0; color: inherit; background: transparent; cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 1px; background: currentColor; transition: .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 74px 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 16px 24px 28px; color: var(--navy); background: rgba(255,255,255,.98);
    box-shadow: 0 24px 40px rgba(3,28,68,.14); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
  .main-nav a::after { display: none; }

  .hero { min-height: 850px; }
  .hero-media img { object-position: 72% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,28,68,.96), rgba(3,28,68,.62)), linear-gradient(0deg, rgba(3,28,68,.8), transparent 45%); }
  .hero-content { padding: 145px 0 70px; }
  h1 { font-size: clamp(49px, 12vw, 72px); }
  .hero-lead { font-size: 14px; line-height: 1.75; }
  .hero-facts { margin-top: 55px; }
  .scroll-cue { display: none; }

  .listings-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .listings-grid { gap: 55px; }
  .listings-visual, .map-image { min-height: 410px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .insight { grid-template-columns: 1fr; }
  .insight-image { min-height: 520px; }
  .insight-copy { padding: 80px 32px; }
  .about-grid { gap: 80px; }
  .about-visual { height: 620px; width: calc(100% - 20px); }
  .contact-heading { align-items: flex-start; flex-direction: column; }
  .map-wrap, .map-wrap iframe { min-height: 460px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { display: none; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 32px); }
  .section { padding: 76px 0; }
  .brand { width: 190px; }
  .hero { min-height: 790px; }
  .hero-content { padding-bottom: 48px; }
  .eyebrow { font-size: 9px; gap: 10px; letter-spacing: .16em; }
  .eyebrow::before { width: 28px; }
  h1 { font-size: 47px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 13px; padding-top: 18px; }
  .hero-facts div { align-items: center; }
  .hero-facts span br { display: none; }

  .listings-copy h2, .section-heading h2, .about-copy h2, .contact-heading h2, .insight-copy h2, .brand-statement h2 { font-size: 43px; }
  .listings-visual, .map-image { min-height: 320px; }
  .map-card { left: 16px; bottom: 16px; width: calc(100% - 32px); padding: 17px; }
  .map-card strong { font-size: 21px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: auto; padding: 30px 24px 38px; }
  .card-icon { margin: 40px 0 24px; }
  .insight-image { min-height: 430px; }
  .insight-copy { padding: 70px 16px; }
  .about-visual { height: 500px; }
  .about-frame { inset: 14px -14px -14px 14px; }
  .about-caption { right: -14px; bottom: 28px; font-size: 19px; }
  .brand-statement { min-height: 420px; }
  .contact-heading { margin-bottom: 50px; }
  .contact-item strong { font-size: 21px; overflow-wrap: anywhere; }
  .contact-item strong br { display: none; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .map-external { right: 14px; bottom: 14px; min-height: 44px; padding: 0 14px; font-size: 9px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand img { width: 245px; }
  .back-to-top { justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .whatsapp-float { width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

@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; }
}

.map-external { display: inline-flex; align-items: center; gap: 8px; }
.map-external .link-arrow { width: 14px; height: 14px; }
