:root {
  --blue: #327EB8;
  --blue-dark: #25628F;
  --blue-tint: #EDF5FB;
  --ink: #262626;
  --body: #3d4852;
  --muted: #62717f;
  --line: #dfe8f0;
  --gold: #F2A81D;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(38, 78, 112, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
[id] { scroll-margin-top: 110px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; font-weight: 700; }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 700; text-decoration: none; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  border: 2px solid transparent; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-solid { background: #2b6c9e; color: #fff; box-shadow: var(--shadow); }
.btn-solid:hover { background: var(--blue-dark); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.75); backdrop-filter: blur(3px); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-white { background: #fff; color: var(--blue-dark); }
.btn-outline-white { color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.topbar { background: var(--ink); color: #d8dee5; font-size: 0.85rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar-inner { display: flex; justify-content: space-between; gap: 12px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 12px rgba(20,40,60,0.08); }
.header-inner { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.brand img { width: 190px; height: auto; }
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem; }
.main-nav a:hover { color: var(--blue); }
.header-call { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }

.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero picture, .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,35,54,0.82) 0%, rgba(13,35,54,0.55) 45%, rgba(13,35,54,0.18) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding-top: 70px; padding-bottom: 70px; max-width: 760px; margin-left: 0; }
.hero-kicker { text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; font-size: 0.85rem; color: #9fc9e8; margin-bottom: 10px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { color: #6fb3e0; }
.hero-sub { font-size: 1.15rem; max-width: 560px; margin-bottom: 26px; color: #e8eef4; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-cta-stack { display: inline-flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.hero-cta-stack .hero-ctas { margin-bottom: 0; }
.btn-book {
  width: 100%; padding: 10px 20px; font-size: 0.98rem; color: #fff;
  background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(3px);
}
.btn-book:hover { background: rgba(255,255,255,0.3); }
.hero-trust { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.95rem; color: #d5e4f0; }
.hero-trust strong { color: #fff; }

.section { padding: 72px 0; }
.section-tint { background: var(--blue-tint); }
.section-kicker { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; font-size: 0.8rem; color: var(--blue); margin-bottom: 6px; }
.section-intro { max-width: 640px; margin-bottom: 34px; color: var(--muted); font-size: 1.05rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 22px; margin-top: 10px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card-icon { color: var(--blue); margin-bottom: 12px; }
.card-icon svg { width: 34px; height: 34px; }
.btn-ico { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.97rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 26px; margin-top: 26px; }
.step { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 18px; }
.gallery figure { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.gallery a { display: block; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .25s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery figcaption { padding: 12px 15px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }

.stats-band { background: linear-gradient(115deg, var(--blue-dark), #2b6c9e); color: #fff; padding: 46px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 22px; text-align: center; }
.stat-num { display: block; font-size: 2.4rem; font-weight: 800; }
.stat-label { font-size: 0.95rem; color: #d9e9f6; }

.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review .stars { display: flex; gap: 3px; margin-bottom: 10px; }
.review .stars svg { width: 18px; height: 18px; fill: var(--gold); }
.star-inline { width: 0.85em; height: 0.85em; fill: currentColor; margin-left: 2px; vertical-align: -1px; }
.review p { font-size: 0.96rem; flex: 1; }
.review footer { margin-top: 14px; font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 46px; align-items: center; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 6px; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 0 auto; }

.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.area-list li { background: var(--blue-tint); border: 1px solid #cfe3f2; color: var(--blue-dark); font-weight: 600; padding: 8px 16px; border-radius: 999px; font-size: 0.92rem; }
.area-note { color: var(--muted); }

.calendly-inline-widget { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }

.faq { max-width: 780px; margin-top: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 12px; box-shadow: var(--shadow); }
.faq summary { font-weight: 700; color: var(--ink); cursor: pointer; }
.faq details p { margin-top: 10px; font-size: 0.97rem; }

.cta-band { background: linear-gradient(115deg, #2b6c9e, var(--blue-dark)); color: #fff; padding: 70px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 560px; margin: 12px auto 28px; color: #e2eef7; font-size: 1.08rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

.site-footer { background: #14212e; color: #b9c6d2; font-size: 0.95rem; }
.site-footer a { color: #cfe0ee; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-top: 52px; padding-bottom: 30px; }
.site-footer img { background: #fff; padding: 10px 14px; border-radius: 10px; margin-bottom: 14px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #24384c; padding-top: 18px; padding-bottom: 22px; font-size: 0.85rem; color: #8fa1b3; }

#lightbox { border: none; background: transparent; padding: 0; max-width: 92vw; max-height: 92vh; }
#lightbox::backdrop { background: rgba(10, 20, 30, 0.85); }
#lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: 10px; margin: 0 auto; }
#lightboxClose {
  position: fixed; top: 14px; right: 18px; background: rgba(255,255,255,0.15);
  color: #fff; border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
#lightboxClose svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 8px 0 14px; box-shadow: 0 12px 20px rgba(20,40,60,0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-call { display: none; }
  .brand img { width: 150px; }
  .hero { min-height: 78vh; }
  [id] { scroll-margin-top: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
