:root {
  --navy: #263a61;
  --navy-deep: #182743;
  --aqua: #78c7ce;
  --aqua-strong: #48b4c1;
  --aqua-pale: #e6f7f8;
  --mist: #f5f9f9;
  --white: #ffffff;
  --ink: #25354f;
  --muted: #68758a;
  --line: #dbe6e8;
  --shadow: 0 24px 70px rgba(30, 54, 78, 0.10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--navy-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy-deep);
  letter-spacing: -.045em;
  line-height: 1.02;
}
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.5rem, 6.6vw, 6.8rem); font-weight: 650; }
h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.8vw, 4.7rem); font-weight: 630; }
h3 { margin-bottom: 14px; font-size: 1.45rem; font-weight: 700; }
.lede { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.lede-small { color: var(--muted); font-size: 1.08rem; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--navy-deep); color: #fff; box-shadow: 0 12px 30px rgba(24, 39, 67, .18); }
.button-dark:hover { background: var(--navy); }
.button-light { background: rgba(255,255,255,.78); color: var(--navy-deep); border-color: var(--line); }
.button-light:hover { border-color: #b9ced2; box-shadow: 0 10px 26px rgba(41,71,90,.08); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219,230,232,.8);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; text-decoration: none; }
.brand img { width: 150px; height: auto; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #4f6079;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
}
.desktop-nav a:hover { background: var(--mist); color: var(--navy-deep); }
.header-call { white-space: nowrap; }
.menu-toggle { display: none; min-width: 46px; min-height: 44px; border: 0; border-radius: 14px; background: var(--mist); padding: 10px; }
.menu-toggle span { width: 22px; height: 2px; display: block; margin: 4px auto; background: var(--navy-deep); border-radius: 2px; }
.mobile-menu { display: none; }

.hero { position: relative; overflow: hidden; padding-top: 88px; background: linear-gradient(135deg, #fbfefe 0%, #f3fbfb 57%, #eaf7f8 100%); }
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: 90px;
  border: 1px solid rgba(72,180,193,.22);
  border-radius: 50%;
}
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 74px; }
.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-details { margin-top: 54px; display: flex; gap: 50px; }
.hero-details div { display: grid; gap: 4px; }
.hero-details span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-details strong { color: var(--navy-deep); font-size: 14px; }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.hero-art-card {
  position: relative;
  z-index: 3;
  width: min(100%, 510px);
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.92);
  border-radius: 46% 54% 38% 62% / 50% 42% 58% 50%;
  background: var(--aqua-pale);
  box-shadow: var(--shadow);
}
.hero-art-card img { width: 100%; aspect-ratio: 1.16 / 1; object-fit: cover; object-position: center; filter: saturate(.84) contrast(.96); }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(38,58,97,.13); }
.visual-orbit-one { width: 440px; height: 440px; left: 15px; top: 45px; }
.visual-orbit-two { width: 310px; height: 310px; right: 4px; bottom: 25px; border-color: rgba(72,180,193,.24); }
.hero-note {
  position: absolute;
  z-index: 5;
  right: -12px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(219,230,232,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(27,50,68,.12);
}
.hero-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.35; }
.hero-note strong { color: var(--navy-deep); }
.spark { color: var(--aqua-strong); font-size: 24px; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-grid p { margin: 0; padding: 18px 24px; color: #57667d; font-size: 13px; font-weight: 650; text-align: center; }
.trust-grid p + p { border-left: 1px solid var(--line); }
.trust-grid span { margin-right: 10px; color: var(--aqua-strong); font-size: 11px; font-weight: 850; }

.care-section { background: #fff; }
.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #c6dbde; box-shadow: 0 18px 45px rgba(36,58,82,.08); }
.service-card > span, .service-card-art div > span { display: block; margin-bottom: 52px; color: var(--aqua-strong); font-size: 12px; font-weight: 900; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.service-card-art { padding: 0; overflow: hidden; display: grid; grid-template-columns: 42% 58%; }
.service-card-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); }
.service-card-art div { padding: 28px 26px; }
.service-card-art div > span { margin-bottom: 28px; }

.experience-section { background: var(--mist); padding: 88px 0; }
.experience-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 72px; }
.experience-art { position: relative; max-width: 620px; }
.experience-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: linear-gradient(180deg, rgba(179,225,233,.55), rgba(233,244,247,.9));
  border-radius: 40px 18px 40px 18px;
  filter: saturate(.78) contrast(.97);
  box-shadow: var(--shadow);
}
.experience-art::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1; border-radius: 40px 18px; border: 1px solid rgba(72,180,193,.32); }
.experience-badge { position: absolute; left: 24px; bottom: 24px; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--navy-deep); font-size: 12px; font-weight: 800; }
.principles { margin-top: 42px; border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles b { color: var(--aqua-strong); font-size: 12px; }
.principles p { margin: 0; display: grid; gap: 5px; }
.principles strong { color: var(--navy-deep); }
.principles span { color: var(--muted); font-size: 14px; }

.space-section { background: #fff; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: end; }
.split-heading > p:last-child { margin: 0 0 18px; }
.space-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.space-card { margin: 0; }
.photo-wrap { aspect-ratio: 1.45 / 1; display: grid; place-items: center; overflow: hidden; padding: 10px; border: 1px solid var(--line); border-radius: 30px; background: var(--mist); box-shadow: 0 16px 50px rgba(36,58,82,.08); }
.photo-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 22px; }
.space-card figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 18px 4px 0; }
.space-card figcaption span { color: var(--navy-deep); font-weight: 800; }
.space-card figcaption p { margin: 0; max-width: 390px; color: var(--muted); font-size: 13px; text-align: right; }

.contact-section { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
.contact-section::before { content: ""; position: absolute; width: 560px; height: 560px; right: -220px; top: -240px; border: 1px solid rgba(120,199,206,.22); border-radius: 50%; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact-section h2, .contact-section .eyebrow { color: #fff; }
.contact-intro > p:not(.eyebrow) { max-width: 470px; color: #bbc6d5; }
.contact-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.contact-section .button-dark { background: var(--aqua); color: var(--navy-deep); box-shadow: none; }
.contact-section .button-dark:hover { background: #91d3d8; }
.contact-section .button-light { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.contact-panel { padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.05); }
.contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-row > span { color: #82ccd2; font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.contact-row p { margin: 0; color: #e6ecf3; }
.contact-row a { text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }
.text-link { min-height: 44px; margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 750; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 34px; }
.footer-grid img { width: 150px; height: auto; }
.footer-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; color: var(--navy-deep); text-decoration: none; font-size: 13px; font-weight: 750; }

.mobile-actions { display: none; }

:focus-visible { outline: 3px solid var(--aqua-strong); outline-offset: 4px; }
.reveal { opacity: 1; transform: none; }

@media (min-width: 621px) and (max-width: 1050px) {
  .shell { width: min(calc(100% - 44px), 920px); }
  .section { padding: 88px 0; }
  .header-call { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 52px; padding-bottom: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 510px; }
  .hero-art-card { width: min(75%, 570px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1.02fr .98fr; gap: 42px; }
  .split-heading { grid-template-columns: 1fr 320px; gap: 40px; }
  .contact-grid { gap: 54px; }
}

@media (max-width: 760px) {
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu {
    display: grid;
    padding: 8px 24px 22px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.98);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--navy-deep); font-weight: 750; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .shell { width: min(calc(100% - 32px), 560px); }
  .section { padding: 74px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 124px; }
  h1 { font-size: clamp(3.05rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .hero { padding-top: 52px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 42px; }
  .hero-details { margin-top: 38px; gap: 26px; flex-wrap: wrap; }
  .hero-visual { min-height: 390px; }
  .hero-art-card { width: 92%; border-width: 6px; }
  .visual-orbit-one { width: 320px; height: 320px; left: -30px; }
  .visual-orbit-two { width: 230px; height: 230px; right: -14px; }
  .hero-note { right: 0; bottom: 28px; }
  .trust-grid { min-height: 0; grid-template-columns: 1fr; padding: 10px 0; }
  .trust-grid p { text-align: left; padding: 13px 4px; }
  .trust-grid p + p { border-left: 0; border-top: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .service-card-art { grid-template-columns: 40% 60%; }
  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-art { width: 100%; max-width: none; }
  .experience-art::after { inset: 12px -12px -12px 12px; }
  .split-heading { display: block; }
  .space-grid { grid-template-columns: 1fr; gap: 44px; }
  .space-card figcaption { display: block; }
  .space-card figcaption p { margin-top: 5px; text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-panel { padding: 22px; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-links { display: grid; gap: 0; }
  .mobile-actions {
    position: fixed;
    z-index: 150;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; font-weight: 800; }
  .mobile-actions a:first-child { border-radius: 999px; background: var(--navy-deep); color: #fff; }
}

@media (min-width: 1051px) {
  .hero-visual { margin-right: 10px; }
}

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