:root {
  --blue-950: #073659;
  --blue-900: #0b4f8a;
  --blue-700: #1477bd;
  --blue-100: #dff3fb;
  --sky: #9eddf0;
  --orange: #f47b20;
  --orange-100: #fff0e1;
  --cream: #fffaf1;
  --paper: #fffefe;
  --ink: #193246;
  --muted: #627586;
  --line: rgba(11, 79, 138, 0.13);
  --shadow: 0 24px 60px rgba(9, 57, 91, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 130px 0; }
.anchor-target { scroll-margin-top: 128px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 18px; top: -60px; z-index: 999;
  padding: 12px 18px; background: var(--blue-950); color: white; border-radius: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 18px 0; transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  padding: 10px 0; background: rgba(255, 250, 241, .92);
  box-shadow: 0 8px 30px rgba(7, 54, 89, .08); backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1240px, calc(100% - 28px)); margin: auto; display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand-logo { width: clamp(190px, 17vw, 232px); height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 13px; border: 1px solid transparent; border-radius: 999px; text-decoration: none;
  color: var(--blue-950); font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { background: white; border-color: var(--line); transform: translateY(-1px); }
.main-nav .nav-cta { padding-inline: 18px; color: white; background: var(--orange); box-shadow: 0 8px 20px rgba(244, 123, 32, .22); }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { background: #dd6815; border-color: transparent; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 15px; background: white; box-shadow: 0 8px 24px rgba(7, 54, 89, .1); }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--blue-950); transition: .2s ease; }

.hero { position: relative; min-height: 860px; display: grid; align-items: center; overflow: hidden; padding-top: 170px; background: radial-gradient(circle at 88% 12%, rgba(158, 221, 240, .48), transparent 30%), linear-gradient(145deg, #fffaf1 0%, #f3fbff 100%); }
.hero::after { content: "MM"; position: absolute; right: -45px; bottom: -165px; color: rgba(11, 79, 138, .035); font: 900 330px/1 "Nunito", sans-serif; letter-spacing: -.12em; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.orb-one { width: 70px; height: 70px; left: 4%; top: 30%; background: rgba(244, 123, 32, .15); }
.orb-two { width: 22px; height: 22px; left: 48%; top: 22%; background: var(--orange); opacity: .4; }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 74px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 3px; border-radius: 99px; background: var(--orange); }
.hero h1, .section-intro h2, .visit-copy h2 {
  margin: 0; color: var(--blue-950); font: 900 clamp(46px, 5.6vw, 78px)/.98 "Nunito", sans-serif; letter-spacing: -.055em;
}
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 16px; text-decoration: none;
  font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 12px 26px rgba(244, 123, 32, .25); }
.button-primary:hover { background: #df6915; box-shadow: 0 16px 32px rgba(244, 123, 32, .32); }
.button-ghost { color: var(--blue-900); background: white; border-color: var(--line); }
.button-ghost:hover { box-shadow: 0 12px 26px rgba(7, 54, 89, .08); }
.hero-facts { display: flex; gap: 30px; margin: 38px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: grid; grid-template-columns: auto auto; align-items: end; gap: 5px; }
.hero-facts strong { color: var(--blue-900); font: 900 28px/1 "Nunito", sans-serif; }
.hero-facts span { color: var(--muted); font-size: 11px; line-height: 1.15; max-width: 65px; }
.hero-media { position: relative; margin: 0; }
.photo-frame { overflow: hidden; background: #e9f5f7; border: 10px solid white; box-shadow: var(--shadow); }
.photo-frame-hero { border-radius: 48% 52% 34% 66% / 46% 38% 62% 54%; transform: rotate(1.2deg); }
.photo-frame img { width: 100%; height: auto; object-fit: contain; }
.hero-media figcaption { display: inline-flex; align-items: center; gap: 9px; margin: 18px 0 0 30px; color: var(--muted); font-size: 12px; font-weight: 700; }
.caption-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(244, 123, 32, .13); }
.hero-note {
  position: absolute; right: -22px; bottom: 54px; display: grid; gap: 2px; padding: 16px 19px;
  border-radius: 16px; color: white; background: rgba(7, 54, 89, .92); box-shadow: var(--shadow); transform: rotate(-2deg);
}
.hero-note span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.method { background: var(--paper); }
.section-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.section-intro h2 { font-size: clamp(38px, 4.5vw, 62px); }
.section-intro > p { max-width: 480px; margin: 0 0 8px; color: var(--muted); font-size: 16px; }
.experience-shell { margin-top: 60px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #f7fbfd; box-shadow: 0 20px 50px rgba(7, 54, 89, .07); }
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); background: white; }
.tab-button { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 76px; padding: 14px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; transition: .2s ease; }
.tab-button:last-child { border-right: 0; }
.tab-button span { color: var(--orange); font-size: 11px; }
.tab-button:hover { color: var(--blue-900); background: var(--cream); }
.tab-button.is-active { color: white; background: var(--blue-900); }
.tab-button.is-active span { color: var(--sky); }
.tab-stage { min-height: 510px; }
.tab-panel { grid-template-columns: 1fr 420px; gap: 58px; align-items: center; padding: 54px; animation: panel-in .35s ease both; }
.tab-panel.is-active { display: grid; }
.tab-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mini-label { margin: 0 0 12px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.panel-copy h3 { max-width: 590px; margin: 0; color: var(--blue-950); font: 900 clamp(32px, 3.4vw, 46px)/1.08 "Nunito", sans-serif; letter-spacing: -.035em; }
.panel-copy > p:not(.mini-label) { max-width: 620px; color: var(--muted); }
.pill-cloud, .territory-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill-cloud span, .territory-list span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--blue-900); font-size: 11px; font-weight: 800; }
.territory-list span { border: 0; background: var(--orange-100); color: #a64b08; }
.check-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--blue-950); font-size: 14px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: white; font-size: 11px; }
.panel-photo { height: 390px; margin: 0; display: grid; place-items: center; overflow: hidden; border-radius: 110px 24px 110px 24px; background: #eaf6f9; }
.panel-photo img { width: 100%; height: 100%; object-fit: contain; }
.gallery-heading { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 95px; }
.gallery-heading .eyebrow { margin: 0; }
.gallery-heading > p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.story-gallery { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; margin-top: 26px; }
.story-card { position: relative; min-height: 420px; padding: 0; overflow: hidden; border: 0; border-radius: 24px; background: #eaf4f6; cursor: zoom-in; box-shadow: 0 12px 30px rgba(7, 54, 89, .09); text-align: left; }
.story-image { position: absolute; inset: 0; display: grid; place-items: center; padding: 0; }
.story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 54, 89, .88), transparent 58%); }
.story-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.story-card:hover .story-image img { transform: scale(1.025); }
.story-copy { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; color: white; }
.story-copy small { display: block; margin-bottom: 4px; color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.story-copy strong { font: 800 20px/1.2 "Nunito", sans-serif; }

.visit-zone { padding-bottom: 42px; color: white; background: var(--blue-950); overflow: hidden; }
.visit-zone .section-intro h2 { color: white; }
.visit-zone .section-intro > p { color: rgba(255,255,255,.67); }
.eyebrow-light { color: var(--sky); }
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.update-card { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.055); }
.update-image { height: 260px; display: grid; place-items: center; background: #e9f2f3; overflow: hidden; }
.update-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.update-card:hover .update-image img { transform: scale(1.025); }
.update-body { padding: 22px; }
.update-body small { color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.update-body h3 { margin: 8px 0 7px; font: 800 22px/1.18 "Nunito", sans-serif; }
.update-body p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }
.visit-card { display: grid; grid-template-columns: .92fr 1.08fr; gap: 76px; margin-top: 110px; padding: 68px; border-radius: 36px; color: var(--ink); background: var(--cream); box-shadow: 0 26px 80px rgba(0, 0, 0, .25); }
.visit-copy h2 { font-size: clamp(38px, 4.5vw, 60px); }
.visit-copy > p:not(.eyebrow) { color: var(--muted); }
.visit-steps { display: grid; gap: 16px; margin: 28px 0; padding: 0; list-style: none; }
.visit-steps li { display: flex; align-items: center; gap: 13px; }
.visit-steps li > span { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--blue-900); font: 900 14px/1 "Nunito", sans-serif; }
.visit-steps li div { display: grid; }
.visit-steps strong { color: var(--blue-950); font-size: 13px; }
.visit-steps small { color: var(--muted); font-size: 11px; }
.direct-whatsapp { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-900); font-size: 12px; font-weight: 800; text-underline-offset: 4px; }
.direct-whatsapp span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--orange); }
.visit-form { align-self: start; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 15px 40px rgba(7, 54, 89, .08); }
.form-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.form-head span { color: var(--blue-950); font: 900 21px/1.2 "Nunito", sans-serif; }
.form-head small { color: var(--muted); font-size: 9px; }
.visit-form > label, .field-row label { display: grid; gap: 6px; margin-bottom: 14px; }
.visit-form label > span { color: var(--blue-950); font-size: 11px; font-weight: 800; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.visit-form input, .visit-form select, .visit-form textarea { width: 100%; border: 1px solid rgba(11,79,138,.18); border-radius: 12px; outline: none; background: #fbfdfe; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.visit-form input, .visit-form select { height: 46px; padding: 0 13px; }
.visit-form textarea { padding: 12px 13px; resize: vertical; }
.visit-form input:focus, .visit-form select:focus, .visit-form textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(20,119,189,.12); }
.visit-form [aria-invalid="true"] { border-color: #c93a3a; background: #fffafa; }
.submit-button { width: 100%; border: 0; }
.privacy-note { margin: 12px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; text-align: center; }
.form-feedback { min-height: 20px; margin: -2px 0 8px; color: #b52d2d; font-size: 11px; font-weight: 700; }
.site-footer { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; margin-top: 64px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.13); }
.brand-logo-footer { width: 230px; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; color: rgba(255,255,255,.65); font-size: 11px; }
.footer-contact a { color: white; text-decoration: none; }
.site-footer > p { margin: 0; max-width: 230px; color: rgba(255,255,255,.6); font-size: 11px; text-align: right; }
.floating-whatsapp { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 8px; padding: 10px 15px 10px 10px; border-radius: 999px; color: white; background: var(--orange); text-decoration: none; box-shadow: 0 14px 35px rgba(244, 123, 32, .35); font-size: 12px; font-weight: 800; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-2px); }
.floating-whatsapp > span:first-child { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); }

.lightbox { width: min(920px, calc(100% - 28px)); max-height: calc(100vh - 30px); padding: 0; overflow: visible; border: 0; border-radius: 24px; background: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(2, 23, 38, .82); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; padding: 18px; }
.lightbox img { width: 100%; max-height: calc(100vh - 150px); object-fit: contain; border-radius: 15px; background: #e8f3f4; }
.lightbox figcaption { padding: 16px 5px 2px; color: var(--blue-950); font-weight: 700; text-align: center; }
.lightbox-close { position: absolute; right: -10px; top: -10px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; color: white; background: var(--orange); font-size: 26px; cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,.25); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .main-nav a { padding: 9px 9px; font-size: 11px; }
  .hero-grid { gap: 38px; }
  .tab-panel { grid-template-columns: 1fr 330px; padding: 42px; }
  .visit-card { gap: 40px; padding: 46px; }
}

@media (max-width: 840px) {
  :root { --container: min(100% - 28px, 680px); }
  .section-pad { padding: 92px 0; }
  .site-header { padding: 10px 0; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 82px 14px auto; display: grid; gap: 7px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .2s ease; }
  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 13px 15px; font-size: 13px; text-align: center; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid, .section-intro, .visit-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-facts { justify-content: center; }
  .hero-media { max-width: 620px; margin-inline: auto; }
  .section-intro { gap: 20px; }
  .section-intro > p { max-width: 620px; }
  .tab-panel { grid-template-columns: 1fr; }
  .panel-photo { height: 360px; }
  .story-gallery { grid-template-columns: 1fr 1fr; }
  .story-card:first-child { grid-column: 1 / -1; }
  .updates-grid { grid-template-columns: 1fr; }
  .update-card { display: grid; grid-template-columns: 230px 1fr; }
  .update-image { height: 100%; min-height: 230px; }
  .visit-card { gap: 45px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > p { text-align: center; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); }
  .brand-logo { width: 178px; }
  .brand-logo-footer { width: 220px; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-facts { gap: 13px; }
  .hero-facts strong { font-size: 23px; }
  .hero-note { display: none; }
  .photo-frame-hero { border-width: 6px; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-button { min-height: 58px; border-right: 0; border-bottom: 1px solid var(--line); justify-content: flex-start; padding-left: 22px; }
  .tab-button:last-child { border-bottom: 0; }
  .tab-stage { min-height: 0; }
  .tab-panel { gap: 30px; padding: 28px 20px; }
  .panel-photo { height: 330px; border-radius: 80px 20px 80px 20px; }
  .gallery-heading { display: block; }
  .gallery-heading > p:last-child { margin-top: 10px; }
  .story-gallery { grid-template-columns: 1fr; }
  .story-card:first-child { grid-column: auto; }
  .story-card { min-height: 390px; }
  .update-card { display: block; }
  .update-image { height: 280px; }
  .visit-card { width: calc(100% - 16px); padding: 30px 18px; border-radius: 26px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-head { display: grid; }
  .floating-whatsapp > span:last-child { display: none; }
  .floating-whatsapp { padding: 9px; }
  .floating-whatsapp > span:first-child { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
