:root {
  --blue-950: #062f4d;
  --blue-900: #074a75;
  --blue-800: #076aa9;
  --blue-700: #0a86d2;
  --blue-600: #1699e6;
  --blue-500: #34aaf0;
  --blue-100: #dff3ff;
  --blue-050: #f3fbff;
  --gold: #ffb313;
  --gold-deep: #e89b00;
  --ink: #10202e;
  --muted: #5c7080;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(4, 75, 116, .13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 40px), 790px); }
.section-pad { padding: 94px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 117, 178, .09);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 30px rgba(6,47,77,.08);
}
.header-shell {
  width: min(calc(100% - 34px), 1220px);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font-size: 1.07rem;
  letter-spacing: .06em;
  color: var(--blue-900);
}
.brand-copy small { margin-top: 5px; color: var(--muted); font-weight: 650; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a {
  padding: 12px 13px;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 700;
  color: #354f61;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav > a:hover { background: var(--blue-050); color: var(--blue-800); }
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  padding-inline: 20px;
  box-shadow: 0 10px 24px rgba(10,134,210,.22);
}
.site-nav .nav-cta:hover { color: var(--white); transform: translateY(-1px); background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 27px; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 3px; transition: .25s ease; }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 160px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 13% 25%, rgba(255,179,19,.10), transparent 28%),
    linear-gradient(135deg, #f7fcff 0%, #ffffff 45%, #ebf8ff 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -2; }
.hero-orb-one { width: 460px; height: 460px; right: -120px; top: 80px; background: rgba(23,158,229,.10); }
.hero-orb-two { width: 260px; height: 260px; left: -100px; bottom: 40px; background: rgba(255,179,19,.08); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow.light { color: #d8f1ff; }
.eyebrow.center { text-align: center; }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.75rem, 5.7vw, 5.8rem);
  line-height: .99;
  letter-spacing: -.05em;
  color: var(--blue-950);
}
.hero h1 span { display: block; color: var(--blue-700); }
.hero-lead { margin: 24px 0 0; font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 750; color: #415a6d; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 0; }
.hero-badges span {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  background: var(--white);
  color: var(--blue-800);
  border: 1px solid #d4edf9;
  box-shadow: 0 6px 18px rgba(7,106,169,.08);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 14px 28px rgba(14,143,213,.25);
}
.btn-ghost { color: var(--blue-800); background: var(--white); border: 1px solid #cfeaf8; }
.btn-light { background: var(--white); color: var(--blue-900); box-shadow: 0 10px 20px rgba(0,0,0,.08); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #ffd063); color: #2c2108; box-shadow: 0 12px 24px rgba(255,179,19,.22); }
.phone-highlight {
  margin-top: 28px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.78);
  border-radius: 0 14px 14px 0;
}
.phone-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 1.1rem;
}
.phone-highlight span:last-child { display: grid; }
.phone-highlight small { color: var(--muted); font-weight: 700; }
.phone-highlight strong { font-size: 1.17rem; color: var(--blue-950); letter-spacing: .03em; }
.hero-visual { position: relative; display: grid; place-items: center; }
.logo-stage {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.logo-halo {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.96) 0 46%, rgba(82,183,239,.25) 47% 62%, rgba(255,179,19,.08) 63% 68%, transparent 69%);
  filter: drop-shadow(0 30px 35px rgba(7,106,169,.12));
}
.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 44% 56% 55% 45% / 54% 43% 57% 46%;
  background: rgba(35,164,231,.08);
  transform: rotate(20deg);
}
.logo-stage::before { width: 84%; height: 84%; z-index: -1; }
.logo-stage::after { width: 67%; height: 67%; transform: rotate(-24deg); background: rgba(255,179,19,.07); }
.logo-stage img { position: relative; z-index: 2; width: 90%; filter: drop-shadow(0 18px 20px rgba(8,48,75,.10)); }
.hero-wave {
  position: absolute;
  left: -3%; right: -3%; bottom: -56px;
  height: 120px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 45% 45% 0 0;
  z-index: -1;
}

.intro { background: var(--white); }
.section-title {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-title.center { text-align: center; }
.section-copy { color: var(--muted); font-size: 1.14rem; }
.section-copy.center { text-align: center; }
.strong-copy { color: var(--blue-800); font-weight: 800; }
.butterfly-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; color: var(--gold); }
.butterfly-divider span { width: 75px; height: 1px; background: linear-gradient(90deg, transparent, rgba(10,134,210,.35)); }
.butterfly-divider span:last-child { transform: scaleX(-1); }
.butterfly-divider b { font-size: .75rem; transform: rotate(45deg); }

.attention-banner {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, var(--blue-900), var(--blue-600));
}
.attention-banner::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 56px solid rgba(255,255,255,.06);
  border-radius: 50%;
  left: -170px;
  bottom: -180px;
}
.attention-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; }
.attention-copy h2, .experience-panel h2, .availability-card h2, .contact-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.attention-copy p:last-child { margin: 18px 0 0; font-size: 1.2rem; font-weight: 750; color: #e8f7ff; }
.attention-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 50px rgba(0,0,0,.10);
}
.attention-card-kicker { display: block; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: #cfefff; }
.attention-card > a:first-of-type { display: block; margin: 10px 0 18px; font-size: 1.75rem; font-weight: 900; letter-spacing: .03em; }
.attention-card .btn { width: 100%; }

.services { background: linear-gradient(180deg, #fff 0%, var(--blue-050) 100%); }
.section-head { max-width: 720px; margin-bottom: 38px; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
  min-height: 218px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #e3f1f8;
  box-shadow: 0 12px 30px rgba(7,106,169,.07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #bde4f8; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #e8f8ff, #fff9e9);
}
.service-icon svg { width: 31px; height: 31px; fill: var(--blue-700); }
.service-card:nth-child(2) .service-icon svg,
.service-card:nth-child(5) .service-icon svg { fill: var(--gold-deep); }
.service-card h3 { margin: 28px 0 0; color: var(--blue-950); font-size: 1.14rem; line-height: 1.28; }

.experience { background: var(--white); }
.experience-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef9ff, #ffffff);
  box-shadow: var(--shadow);
  border: 1px solid #e0f1fa;
}
.experience-panel { padding: 72px; display: flex; flex-direction: column; justify-content: center; }
.experience-panel h2 { color: var(--blue-950); }
.experience-panel > p:last-child { margin: 18px 0 0; color: var(--blue-700); font-size: 1.2rem; font-weight: 800; }
.experience-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 48%, rgba(255,179,19,.18), transparent 30%),
    linear-gradient(145deg, var(--blue-700), var(--blue-500));
}
.wing {
  position: absolute;
  width: 190px;
  height: 260px;
  border: 3px solid rgba(255,255,255,.65);
  border-radius: 78% 22% 68% 32% / 82% 30% 70% 18%;
  top: 75px;
}
.wing-a { left: 52px; transform: rotate(-32deg); }
.wing-b { right: 52px; transform: scaleX(-1) rotate(-32deg); }
.spark { position: absolute; width: 13px; height: 13px; border-radius: 50% 0 50% 50%; background: var(--gold); transform: rotate(45deg); }
.spark-a { top: 55px; left: 45%; }
.spark-b { top: 245px; left: 18%; width: 9px; height: 9px; }
.spark-c { top: 165px; right: 16%; width: 7px; height: 7px; }

.availability { padding-top: 0; background: var(--white); }
.availability-card {
  position: relative;
  padding: 42px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--blue-950), var(--blue-700));
  box-shadow: 0 22px 50px rgba(6,47,77,.18);
}
.availability-card::after {
  content: "";
  position: absolute;
  width: 230px; height: 230px; right: -80px; top: -100px;
  border-radius: 50%;
  border: 34px solid rgba(255,255,255,.08);
}
.availability-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.availability-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; justify-content: flex-end; }
.availability-phone { font-size: 1.45rem; font-weight: 900; letter-spacing: .03em; }

.location { background: var(--blue-050); }
.location-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: stretch; }
.location-card, .contact-panel { border-radius: var(--radius-lg); }
.location-card {
  padding: 54px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid #e0f0f8;
}
.address-block { margin-top: 38px; display: flex; gap: 18px; align-items: flex-start; }
.address-icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 1.8rem;
  font-weight: 900;
}
.address-block p { margin: 4px 0 0; font-size: 1.06rem; font-weight: 700; color: #344e60; }
.contact-panel {
  padding: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,179,19,.18), transparent 30%),
    linear-gradient(145deg, var(--blue-900), var(--blue-700));
  box-shadow: 0 20px 45px rgba(6,74,117,.20);
}
.contact-panel h2 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
.contact-panel > p { margin: 15px 0 0; color: #e0f4ff; font-weight: 650; }
.contact-panel .contact-specialty { color: var(--white); font-weight: 800; }
.contact-panel .contact-hours { color: #ffdf87; font-weight: 850; }
.contact-phone { display: block; margin: 24px 0 18px; font-size: 1.8rem; font-weight: 900; letter-spacing: .03em; }

.site-footer { padding: 36px 0 100px; color: #d7ecf8; background: #052d47; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 78px; height: 78px; object-fit: contain; background: var(--white); border-radius: 18px; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand strong { color: var(--white); }
.footer-brand span { color: #a9d7ef; }
.footer-info { display: grid; gap: 4px; justify-items: end; text-align: right; }
.footer-info p { margin: 0; }
.footer-info a { color: #ffcf54; font-weight: 900; font-size: 1.12rem; }

.floating-call {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(7,106,169,.30);
}
.floating-call span { font-size: 1.1rem; }
.floating-call strong { font-size: .95rem; }

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

@media (max-width: 1050px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: 28px; }
  .brand-copy { display: none; }
}

@media (max-width: 820px) {
  .section-pad { padding: 76px 0; }
  .site-header { background: rgba(255,255,255,.97); }
  .header-shell { min-height: 76px; }
  .brand img { width: 54px; height: 54px; }
  .menu-toggle { display: block; z-index: 1002; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: 76px; left: 16px; right: 16px;
    display: grid;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.99);
    border: 1px solid #e0eef6;
    box-shadow: 0 22px 50px rgba(5,45,71,.16);
    transform: translateY(-12px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .site-nav > a { padding: 13px 14px; }
  .site-nav .nav-cta { text-align: center; }
  .hero { min-height: auto; padding-top: 128px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; }
  .logo-stage { width: min(75vw, 400px); margin-inline: auto; }
  .hero-badges, .hero-actions { justify-content: center; }
  .phone-highlight { margin-inline: auto; text-align: left; }
  .attention-grid, .experience-grid, .location-grid { grid-template-columns: 1fr; }
  .attention-grid { gap: 28px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-panel { padding: 50px; }
  .experience-art { min-height: 330px; }
  .availability-card { align-items: flex-start; flex-direction: column; }
  .availability-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-info { justify-items: start; text-align: left; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 64px 0; }
  .hero { padding-top: 112px; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .logo-stage { width: min(86vw, 350px); }
  .hero-badges span { font-size: .78rem; }
  .hero-actions .btn { width: 100%; }
  .phone-highlight { width: 100%; justify-content: center; }
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }
  .attention-card, .location-card, .contact-panel { padding: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 150px; flex-direction: row; align-items: center; gap: 16px; }
  .service-card h3 { margin: 0; flex: 1; }
  .experience-grid { border-radius: 24px; }
  .experience-panel { padding: 34px 28px; }
  .experience-art { min-height: 270px; }
  .wing { width: 130px; height: 195px; top: 58px; }
  .wing-a { left: 32px; }
  .wing-b { right: 32px; }
  .availability-card { padding: 30px 26px; border-radius: 24px; }
  .availability-actions { width: 100%; }
  .availability-phone { width: 100%; font-size: 1.35rem; }
  .availability-actions .btn { width: 100%; }
  .address-block { margin-top: 26px; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 65px; height: 65px; }
  .floating-call { right: 12px; bottom: 12px; min-height: 50px; }
}

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