:root {
  --navy-950: #0c1e2a;
  --navy-900: #102a39;
  --navy-800: #183b4d;
  --ink: #162735;
  --muted: #5d6b73;
  --line: #d8e0e1;
  --surface: #f6f8f6;
  --surface-soft: #edf2f0;
  --paper: #fbfcfa;
  --accent: #f5bf2f;
  --accent-deep: #d99e10;
  --white: #fcfdfb;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(16, 42, 57, 0.09);
  --shadow-soft: 0 10px 28px rgba(16, 42, 57, 0.07);
  --font-body: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.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;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--accent);
  font-weight: 800;
}

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

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 224, 225, 0.78);
  background: rgba(246, 248, 246, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy { display: grid; gap: 0; line-height: 1.1; }
.brand-copy strong { font-size: 15px; letter-spacing: -0.03em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: 0.04em; }

.site-nav { display: flex; align-items: center; gap: 27px; font-size: 13px; font-weight: 700; }
.site-nav a:not(.nav-call) { color: var(--muted); transition: color .25s ease; }
.site-nav a:not(.nav-call):hover { color: var(--ink); }
.nav-call { display: inline-flex; min-height: 40px; align-items: center; gap: 9px; padding: 0 15px; border: 1px solid var(--navy-900); border-radius: 11px; color: var(--white); background: var(--navy-900); transition: transform .25s ease, background .25s ease; }
.nav-call:hover { transform: translateY(-2px); background: var(--navy-800); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); }
.menu-toggle-lines { display: grid; gap: 5px; }
.menu-toggle-lines span { display: block; width: 24px; height: 2px; background: currentColor; }

.hero { min-height: calc(100dvh - 72px); padding: 36px 0 28px; background: var(--navy-950); color: var(--white); }
.hero-grid { display: grid; min-height: calc(100dvh - 136px); grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: stretch; gap: 40px; }
.hero-copy { display: flex; min-height: 520px; flex-direction: column; justify-content: center; padding: 20px 0 20px 5px; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--accent-deep); font-size: 11px; font-weight: 850; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.055em; }
h1 { max-width: 12ch; margin-bottom: 23px; font-size: clamp(3.6rem, 6vw, 6.15rem); font-weight: 750; line-height: .94; }
.hero-copy h1 { max-width: 12ch; }
.hero-lede { max-width: 38rem; margin-bottom: 34px; color: rgba(252, 253, 251, .76); font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding: 0 19px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 800; line-height: 1; transition: transform .3s cubic-bezier(.16, 1, .3, 1), background .3s ease, border-color .3s ease, color .3s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-primary { color: var(--navy-950); background: var(--accent); }
.button-primary:hover { background: #ffd45d; }
.button-quiet { border-color: rgba(252, 253, 251, .35); color: var(--white); background: rgba(252, 253, 251, .05); }
.button-quiet:hover { border-color: var(--white); background: rgba(252, 253, 251, .12); }
.hero-media { display: flex; min-height: 520px; flex-direction: column; justify-content: flex-end; gap: 12px; margin: 0; }
.hero-media img { width: 100%; height: min(72vh, 640px); min-height: 420px; border-radius: var(--radius); object-fit: cover; object-position: 62% center; box-shadow: 0 22px 62px rgba(0, 0, 0, .25); }
.hero-media figcaption { color: rgba(252, 253, 251, .57); font-size: 12px; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid > div { display: grid; gap: 3px; padding: 24px 0; }
.proof-grid > div + div { padding-left: 34px; border-left: 1px solid var(--line); }
.proof-grid strong { color: var(--navy-900); font-size: 15px; letter-spacing: -.03em; }
.proof-grid span { color: var(--muted); font-size: 12px; }

.section { padding: 122px 0; }
.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(50px, 9vw, 128px); }
.section-copy { max-width: 510px; }
.section-copy h2, .section-heading h2, .why-lead h2, .booking-copy h2, .areas-copy h2, .contact-copy h2 { margin-bottom: 22px; font-size: clamp(2.5rem, 4.4vw, 4.7rem); font-weight: 720; line-height: .99; }
.section-copy p, .section-heading > p:last-child, .why-lead > p:last-child, .booking-copy > p, .areas-copy > p, .contact-copy > p { max-width: 41rem; color: var(--muted); font-size: 16px; }
.section-copy p + p { margin-top: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; border-bottom: 1px solid var(--navy-900); color: var(--navy-900); font-size: 14px; font-weight: 850; transition: gap .3s ease; }
.text-link:hover { gap: 15px; }
.about-media { margin: 0; }
.about-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }

.services-section { background: var(--surface); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { max-width: 10ch; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-card { min-height: 258px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); transition: transform .35s cubic-bezier(.16, 1, .3, 1), border-color .35s ease, box-shadow .35s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #b8c7c9; box-shadow: var(--shadow); }
.service-card-featured { color: var(--navy-950); border-color: var(--accent); background: var(--accent); }
.service-number, .benefit > span { display: block; margin-bottom: 32px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.service-card-featured .service-number { color: var(--navy-900); }
.service-card h3 { margin-bottom: 9px; font-size: 25px; line-height: 1.05; }
.service-card p { min-height: 72px; margin-bottom: 19px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-card-featured p { color: rgba(12, 30, 42, .77); }
.service-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: 13px; font-weight: 850; }
.service-ecosystem-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.service-ecosystem-link p { max-width: 42ch; margin: 0; color: var(--muted); font-size: 14px; }
.service-ecosystem-link .text-link { flex: 0 0 auto; margin-top: 0; }

.why-section { padding: 122px 0; color: var(--white); background: var(--navy-950); }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.section-kicker-light { color: var(--accent); }
.why-lead { position: sticky; top: 108px; }
.why-lead h2 { max-width: 8ch; }
.why-lead > p:last-child { color: rgba(252, 253, 251, .67); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 36px; }
.benefit { padding: 22px 0 30px; border-top: 1px solid rgba(252, 253, 251, .19); }
.benefit > span { margin-bottom: 27px; color: var(--accent); }
.benefit h3 { margin-bottom: 7px; font-size: 22px; line-height: 1.06; }
.benefit p { max-width: 23rem; margin-bottom: 0; color: rgba(252, 253, 251, .63); font-size: 14px; }
.benefit-wide { grid-column: 1 / -1; }

.booking-section { background: var(--paper); }
.booking-grid { display: grid; grid-template-columns: .74fr 1.26fr; align-items: start; gap: clamp(50px, 9vw, 124px); }
.booking-copy { max-width: 380px; }
.booking-copy h2 { max-width: 8ch; }
.booking-note { display: grid; gap: 5px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }
.booking-note strong { font-size: 13px; }
.booking-note a { color: var(--navy-800); font-size: 14px; font-weight: 850; }
.booking-form { padding: clamp(24px, 3.5vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row-three { grid-template-columns: 1.1fr .9fr 1fr; }
.field-group { display: grid; gap: 7px; }
.field-group label { color: var(--ink); font-size: 12px; font-weight: 800; }
.field-group label span { color: var(--accent-deep); }
.field-group input, .field-group select, .field-group textarea { width: 100%; border: 1px solid #c9d3d4; border-radius: 10px; color: var(--ink); background: var(--paper); font-size: 14px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field-group input, .field-group select { min-height: 48px; padding: 0 13px; }
.field-group textarea { min-height: 92px; padding: 13px; resize: vertical; }
.field-group input::placeholder, .field-group textarea::placeholder { color: #687a80; opacity: 1; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(245, 191, 47, .35); }
.field-group.has-error input, .field-group.has-error select, .field-group.has-error textarea { border-color: #b33d34; }
.field-error { min-height: 0; color: #9d332c; font-size: 11px; }
.consent-check { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0 21px; color: var(--muted); font-size: 12px; }
.consent-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--navy-900); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-submit .button-loading { display: none; }
.booking-form.is-loading .button-label { display: none; }
.booking-form.is-loading .button-loading { display: inline; }
.booking-form.is-loading .form-submit { cursor: wait; opacity: .78; }
.form-status { min-height: 24px; margin: 13px 0 0; color: var(--navy-800); font-size: 13px; font-weight: 700; }
.form-status.is-error { color: #9d332c; }
.form-status.is-success { color: #1d6446; }

.testimonials-section { background: var(--surface-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.testimonial { display: flex; min-height: 264px; flex-direction: column; justify-content: space-between; margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.testimonial blockquote { margin: 0; color: var(--navy-900); font-size: 19px; font-weight: 650; letter-spacing: -.03em; line-height: 1.35; }
.testimonial figcaption { display: grid; gap: 4px; margin-top: 30px; }
.testimonial figcaption strong { font-size: 13px; }
.testimonial figcaption span { color: var(--muted); font-size: 12px; }
.testimonial-accent { border-color: var(--accent); background: var(--accent); }
.testimonial-accent figcaption span { color: rgba(12, 30, 42, .7); }

.areas-section { background: var(--paper); }
.areas-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(50px, 9vw, 120px); }
.areas-copy { max-width: 460px; }
.areas-copy h2 { max-width: 9ch; }
.areas-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 10px; border-top: 1px solid var(--line); }
.area-item { display: grid; min-height: 99px; align-content: center; padding: 16px 8px; border-bottom: 1px solid var(--line); }
.area-item strong { color: var(--navy-900); font-size: 16px; letter-spacing: -.03em; }
.area-item span { color: var(--muted); font-size: 11px; }
.area-item-primary strong { color: var(--accent-deep); }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(50px, 9vw, 126px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; color: var(--navy-900); cursor: pointer; font-size: 17px; font-weight: 760; letter-spacing: -.03em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent-deep); font-size: 23px; font-weight: 500; transition: transform .3s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 56ch; margin: -5px 50px 22px 0; color: var(--muted); font-size: 14px; }

.contact-section { padding: 92px 0; color: var(--white); background: var(--accent); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: 70px; }
.contact-copy { max-width: 480px; }
.contact-copy .section-kicker { color: var(--navy-900); }
.contact-copy h2 { max-width: 8ch; margin-bottom: 17px; color: var(--navy-950); }
.contact-copy > p { color: rgba(12, 30, 42, .76); }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px 36px; }
.contact-details > * { display: grid; gap: 5px; align-content: start; padding-top: 14px; border-top: 1px solid rgba(12, 30, 42, .38); }
.contact-details span { color: rgba(12, 30, 42, .69); font-size: 12px; }
.contact-details strong { color: var(--navy-950); font-size: 17px; letter-spacing: -.03em; }
.contact-details a:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.whatsapp-link strong { display: inline-flex; align-items: center; gap: 8px; }

.site-footer { color: rgba(252, 253, 251, .75); background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: start; gap: 50px; padding: 52px 0 47px; }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(252, 253, 251, .55); }
.footer-top > p { max-width: 30ch; margin: 2px 0 0; color: rgba(252, 253, 251, .6); font-size: 13px; }
.footer-links { display: grid; justify-items: start; gap: 9px; font-size: 12px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; min-height: 68px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(252, 253, 251, .15); color: rgba(252, 253, 251, .5); font-size: 11px; }
.footer-bottom a:hover { color: var(--white); }

.legal-page { min-height: calc(100dvh - 72px); background: var(--paper); }
.legal-page .section-copy { max-width: 720px; }
.legal-page h1 { max-width: 12ch; color: var(--navy-950); font-size: clamp(3rem, 7vw, 5.8rem); }
.legal-page h2 { margin-top: 38px; margin-bottom: 10px; color: var(--navy-900); font-size: 24px; }
.legal-page p { max-width: 65ch; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9f0ef;
    --muted: #aab9bb;
    --line: #2c444f;
    --surface: #10232f;
    --surface-soft: #142a37;
    --paper: #122835;
    --white: #f3f7f5;
    --shadow: 0 18px 44px rgba(0, 0, 0, .2);
    --shadow-soft: 0 10px 28px rgba(0, 0, 0, .16);
  }
  .site-header { border-color: rgba(44, 68, 79, .9); background: rgba(16, 35, 47, .92); }
  .brand-copy small, .site-nav a:not(.nav-call) { color: #9fb0b4; }
  .proof-strip, .about-section, .booking-section, .areas-section { background: var(--paper); }
  .proof-grid strong, .service-card h3, .testimonial blockquote, .faq-list summary, .area-item strong { color: var(--white); }
  .field-group input, .field-group select, .field-group textarea { border-color: #38515b; color: var(--ink); background: #0f222d; }
  .field-group input::placeholder, .field-group textarea::placeholder { color: #a9b7ba; }
  .contact-details strong { color: var(--navy-950); }
}

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

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 760px); }
  .site-nav { gap: 15px; }
  .hero-grid, .about-grid, .booking-grid, .areas-grid, .faq-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-links { grid-column: 2; grid-row: 1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 640px); }
  .site-header { position: sticky; }
  .nav-wrap { min-height: 66px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border-radius: 10px; cursor: pointer; }
  .menu-toggle:hover { background: var(--surface-soft); }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; padding: 15px 16px 19px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 10px 3px; }
  .site-nav .nav-call { justify-content: center; margin-top: 7px; }
  .hero { min-height: auto; padding: 36px 0 24px; }
  .hero-grid, .about-grid, .booking-grid, .areas-grid, .faq-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; gap: 36px; }
  .hero-copy { min-height: auto; padding: 25px 0 0; }
  h1 { max-width: 11ch; font-size: clamp(3.35rem, 16vw, 5.2rem); }
  .hero-media { min-height: auto; }
  .hero-media img { height: min(68vw, 480px); min-height: 300px; }
  .section { padding: 84px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { padding: 15px 0; }
  .proof-grid > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .section-copy h2, .section-heading h2, .why-lead h2, .booking-copy h2, .areas-copy h2, .contact-copy h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .about-grid, .booking-grid, .areas-grid, .faq-grid, .why-grid { gap: 37px; }
  .about-media { order: -1; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .service-ecosystem-link { align-items: flex-start; flex-direction: column; gap: 7px; }
  .service-card { min-height: auto; }
  .service-card p { min-height: auto; }
  .why-section { padding: 84px 0; }
  .why-lead { position: static; }
  .benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .benefit-wide { grid-column: auto; }
  .form-row-two, .form-row-three { grid-template-columns: 1fr; }
  .booking-form { padding: 22px; }
  .areas-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { padding: 78px 0; }
  .contact-details { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 36px; }
  .footer-top > p, .footer-links { grid-column: auto; grid-row: auto; }
  .footer-links { gap: 12px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding: 19px 0; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .areas-list { grid-template-columns: 1fr; }
}
