/* ---------- Tokens ---------- */
:root {
  --ink: #1B2A4A;
  --ink-deep: #10192B;
  --sky: #2B9CE0;
  --sky-dim: #8FC7EA;
  --foam: #F4F7F9;
  --card: #FFFFFF;
  --glass: #E4EEF4;
  --steel: #4E5F70;
  --steel-soft: #7C8B99;
  --line: #DCE4EA;
  --white: #FFFFFF;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; color: var(--steel); line-height: 1.6; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--sky); color: var(--white); }
.btn-primary:hover { background: #2589c4; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 249, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { width: 78px; height: auto; color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-collapse { display: flex; align-items: center; gap: 32px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--steel);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; stroke: var(--sky); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; background: var(--ink-deep); }
.hero-scene {
  width: 100%; height: 100%;
  display: block;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(16,25,43,0.15) 10%, rgba(16,25,43,0.88) 92%);
}
.hero-grime {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,0.6), transparent 9%),
    radial-gradient(circle at 68% 52%, rgba(255,255,255,0.5), transparent 11%),
    radial-gradient(circle at 40% 74%, rgba(255,255,255,0.45), transparent 8%),
    radial-gradient(circle at 84% 20%, rgba(255,255,255,0.5), transparent 7%),
    linear-gradient(rgba(228,238,244,0.82), rgba(228,238,244,0.82));
  backdrop-filter: blur(7px) brightness(1.05);
  -webkit-backdrop-filter: blur(7px) brightness(1.05);
  clip-path: inset(0 0 0 0);
  animation: wipe-reveal 1.7s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.hero-blade {
  position: absolute; top: 0; bottom: 0; left: 0; width: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.95) 45%, rgba(255,255,255,0));
  box-shadow: 3px 0 16px rgba(0,0,0,0.28);
  animation: blade-sweep 1.7s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes wipe-reveal { to { clip-path: inset(0 0 0 100%); } }
@keyframes blade-sweep { to { left: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .hero-grime { animation: none; clip-path: inset(0 0 0 100%); }
  .hero-blade { animation: none; left: 100%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 64px 0 88px;
  width: 100%;
}
.hero-content .eyebrow { color: var(--sky-dim); }
.hero-content h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero-content p.lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.trust-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  padding-top: 22px;
  padding-bottom: 22px;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--steel);
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--sky); flex-shrink: 0; }

/* ---------- Section shell ---------- */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--sky); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--glass);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--ink); fill: none; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { font-size: 0.96rem; }

/* ---------- Quick quote ---------- */
.quote-section { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.quote-head { margin-bottom: 0; }
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--steel); }
.field input {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--card);
}
.field input:focus-visible { outline: 3px solid var(--sky); outline-offset: 1px; }
.quote-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.quote-submit { align-self: flex-start; margin-top: 4px; }
.quote-submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.quote-status { margin: 0; font-size: 0.9rem; min-height: 1.2em; }
.quote-status.is-success { color: #1B7A4B; }
.quote-status.is-error { color: #B3261E; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Service area ---------- */
.area-section { background: var(--ink-deep); color: var(--white); }
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.area-section .section-head p { color: rgba(255,255,255,0.72); }
.area-section .eyebrow { color: var(--sky-dim); }
.area-section h2 { color: var(--white); }
.area-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.area-list svg { width: 16px; height: 16px; stroke: var(--sky); }

.route {
  display: flex;
  justify-content: center;
}
.route svg { width: 100%; max-width: 280px; height: auto; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-frame img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.gallery-frame-wide { grid-column: 1 / -1; }
.gallery-frame-wide img { aspect-ratio: 16/9; object-position: 50% 28%; }
.gallery-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--steel-soft);
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-frame-wide img { aspect-ratio: 4/3; }
}

/* ---------- Booking ---------- */
.booking-section { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--foam);
}
.booking-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.booking-card p { font-size: 0.94rem; margin-bottom: 18px; }
.booking-embed {
  grid-column: 1 / -1;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  margin-bottom: 8px;
  text-align: center;
  color: var(--steel-soft);
  font-size: 0.92rem;
}
.booking-embed strong { color: var(--steel); }
#booking-calendar {
  grid-column: 1 / -1;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  display: none;
}

/* ---------- Contact / Footer ---------- */
.site-footer { background: var(--ink); color: var(--white); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand svg { width: 96px; height: auto; color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.68); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-dim);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-collapse { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 72px 0; }

  .nav-open .nav-collapse {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 22px 28px 28px;
    border-bottom: 1px solid var(--line);
  }
  .nav-open .nav-links { flex-direction: column; gap: 16px; }
}
