:root {
  --blue: #407098;
  --blue-dark: #335a7c;
  --blue-tint: #eef3f8;
  --ink: #16181b;
  --muted: #5a6470;
  --line: #e4e9ee;
  --bg: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(22, 32, 44, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--ink); }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 10px; cursor: pointer; border: none;
  transition: background .15s ease, transform .15s ease;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-tint); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-tint); }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: auto; }
.brand-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: .5px; line-height: 1.1; }
.brand-text small { display: block; font-size: 10.5px; letter-spacing: 3px; font-weight: 600; color: var(--blue); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--blue); white-space: nowrap; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--blue-tint) 0%, #fff 100%); padding: 72px 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 800; margin-bottom: 18px; }
.hero h1 span { color: var(--blue); }
.hero p.lead { font-size: 19px; margin-bottom: 30px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Trust bar */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 18px; text-align: center; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; }
.trust-item strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.trust-item span { font-size: 13.5px; color: var(--muted); }

/* Sections */
section { padding: 80px 0; }
.eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.sec-title { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin-bottom: 14px; }
.sec-sub { max-width: 640px; font-size: 17px; margin-bottom: 46px; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14.5px; }
.card a.more { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 14px; color: var(--blue); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.checklist { list-style: none; margin-top: 8px; }
.checklist li { padding-left: 32px; position: relative; margin-bottom: 14px; color: var(--ink); font-size: 16px; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23407098' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* Photo strip */
.photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photos img { border-radius: var(--radius); width: 100%; height: 280px; object-fit: cover; box-shadow: var(--shadow); }

/* CTA band */
.cta-band { background: var(--blue); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: #d8e4ef; font-size: 17px; max-width: 560px; margin: 0 auto 28px; }

/* Info band (contact strip) */
.info-band { background: var(--blue-tint); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: var(--blue); }
.info-card p, .info-card a { font-size: 15px; color: var(--ink); }
.info-card a.link { color: var(--blue); font-weight: 600; }

/* Page hero (interior pages) */
.page-hero { background: var(--blue-tint); padding: 56px 0; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; }
.page-hero p { margin-top: 10px; max-width: 640px; font-size: 17px; }

/* Services detail */
.svc { padding: 44px 0; border-bottom: 1px solid var(--line); }
.svc:last-of-type { border-bottom: none; }
.svc h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--blue-dark); }
.svc p { max-width: 760px; font-size: 16px; }

/* FAQ */
.faq { max-width: 760px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; background: #fff; }
.faq summary { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px; cursor: pointer; color: var(--ink); }
.faq p { margin-top: 10px; font-size: 15px; }

/* Booking placeholder */
.book-slot {
  max-width: 760px; margin: 0 auto; border: 2px dashed #c4cfd9; border-radius: var(--radius);
  background: #fafcfe; padding: 44px 24px; text-align: center; color: var(--muted);
}
.map-frame { border: 0; width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
footer { background: var(--ink); color: #aeb6c0; padding: 56px 0 30px; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 36px; }
.foot-brand { max-width: 300px; }
.foot-brand .brand-text { color: #fff; }
.foot-brand p { font-size: 14px; margin-top: 12px; color: #aeb6c0; }
.foot-col h4 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.foot-col a, .foot-col p { display: block; color: #aeb6c0; font-size: 14.5px; margin-bottom: 9px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Mobile */
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-cta .btn { display: none; }
  .nav-phone { font-size: 14px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 34px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-left: none; border-top: 1px solid var(--line); }
  .cards, .photos, .info-grid { grid-template-columns: 1fr; }
  .photos img { height: 240px; }
  section { padding: 60px 0; }
}
