:root {
  --navy: #102a43;
  --navy-2: #1c3d5a;
  --accent: #2e9bd6;       /* clean water blue */
  --accent-dark: #1f7fb5;
  --ink: #1a2733;
  --muted: #5b6b7a;
  --line: #e3e8ee;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(16, 42, 67, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1120px, 92vw); margin: 0 auto; }
h1, h2, h3 { font-family: "Barlow Condensed", "Inter", sans-serif; line-height: 1.05; letter-spacing: 0.2px; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.brand { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
.nav { display: flex; align-items: center; gap: 1.6rem; font-weight: 500; }
.nav a { color: var(--ink); font-size: 0.98rem; }
.nav a:hover { color: var(--accent-dark); }
.nav-cta { color: var(--accent-dark) !important; font-weight: 600; }
.phone-pill {
  background: var(--navy); color: #fff !important; padding: 0.5rem 1.1rem;
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
}
.phone-pill:hover { background: var(--navy-2); }

/* Hero */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 60%, var(--accent-dark) 140%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: url("/images/hero.jpg");
  background-size: cover; background-position: center 35%;
  opacity: 1;
}
/* dark scrim so the white headline stays readable over the photo */
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(16,42,67,0.92) 0%, rgba(16,42,67,0.72) 45%, rgba(16,42,67,0.40) 100%);
}
.hero-content { position: relative; padding: 6rem 0 5rem; max-width: 720px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 600; color: #b9dcf0; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; text-transform: uppercase; }
.hero-sub { font-size: 1.2rem; color: #d7e4ef; margin: 1rem 0 2rem; max-width: 38ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; padding: 0; margin: 2.5rem 0 0; }
.trust-row li { font-size: 0.95rem; color: #cfe1ee; padding-left: 1.5rem; position: relative; }
.trust-row li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 1.6rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: transform .08s ease, background .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); padding: 0.7rem 1.4rem; border-radius: var(--radius); font-weight: 600; }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; font-weight: 600; color: var(--accent-dark); margin: 0 0 0.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); text-transform: uppercase; }
.section-lead { color: var(--muted); font-size: 1.1rem; margin: 0.8rem 0 2.5rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.service-card h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); margin: 0; }

/* Gallery / before-after slider */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.6rem; }
.ba { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.ba-stage { position: relative; aspect-ratio: 1 / 1; overflow: hidden; user-select: none; cursor: ew-resize; }
.ba-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 3; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ba-tag { position: absolute; top: 10px; padding: 3px 10px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; z-index: 3; color: #fff; }
.ba-tag.before { left: 10px; background: rgba(16,42,67,0.8); }
.ba-tag.after { right: 10px; background: var(--accent); }
.ba-label { padding: 0.9rem 1.2rem; font-weight: 600; color: var(--navy); }

/* Why us */
.why-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }
.why-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 1.1rem; }
.why-list li { padding-left: 1.8rem; position: relative; color: var(--muted); }
.why-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.why-list strong { color: var(--ink); }
.why-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.why-quote { font-family: "Barlow Condensed", sans-serif; font-size: 1.7rem; line-height: 1.2; }
.why-cite { color: #b9dcf0; margin-top: 1rem; }

/* Booking */
.section-book { background: var(--bg-alt); }
.book-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.book-contact { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.6rem; color: var(--ink); font-weight: 500; }
.book-contact li span { color: var(--muted); font-weight: 400; }
.book-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.field-row { margin-bottom: 1.1rem; }
.field-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field span { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 0.7rem 0.85rem; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.field textarea { resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 0 0 1.2rem; }
.form-status { margin: 1rem 0 0; font-weight: 500; min-height: 1.2em; }
.form-status.ok { color: #157347; }
.form-status.err { color: #b02a37; }

/* Footer */
.site-footer { background: var(--navy); color: #cdd9e4; padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-brand { font-family: "Barlow Condensed", sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.footer-meta { margin: 0.3rem 0 0; font-size: 0.92rem; }

/* Responsive */
@media (max-width: 820px) {
  .nav { display: none; }
  .why-inner, .book-inner { grid-template-columns: 1fr; }
  .field-row.two { grid-template-columns: 1fr; }
  .hero-content { padding: 4rem 0 3.5rem; }
}
