/* ── Design tokens ─────────────────────────────────────── */
:root {
  --blue:        #00B4D8;
  --blue-dark:   #0090AD;
  --blue-light:  #E6F7FB;
  --text:        #111111;
  --text-muted:  #555555;
  --text-faint:  #999999;
  --bg:          #ffffff;
  --bg-alt:      #f5f7f8;
  --border:      #e2e2e2;
  --radius:      8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Nav ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  height: 62px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* "About The Owner" — left slot */
.nav-owner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.nav-owner:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.nav-owner svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Centre logo */
.nav-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Right links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  margin-left: auto;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--blue-dark); /* fallback while video loads */
  padding-top: 62px;            /* clear fixed nav */
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Blue-tinted overlay keeps white text legible over the video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 144, 173, 0.82) 0%,
    rgba(0, 80, 110, 0.78) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ── Section chrome ──────────────────────────────────── */
section {
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── About ───────────────────────────────────────────── */
.about {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-img img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

/* ── Services ────────────────────────────────────────── */
.services {
  max-width: 980px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-faint);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card-quote {
  background: var(--blue-light);
  border-color: var(--blue);
  border-top-color: var(--blue);
}

/* ── Before / After + Photo Strip ───────────────────── */
.before-after {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.before-after .section-label,
.before-after .section-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.before-after .section-heading {
  margin-bottom: 2rem;
}

.ba-wrap {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.ba-wrap img {
  width: 100%;
  height: auto;
}

.photo-strip {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--border);
}

.photo-strip img {
  height: 220px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ── Reviews ─────────────────────────────────────────── */
.reviews {
  max-width: 980px;
  margin: 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.review-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-card footer {
  font-size: 0.8rem;
  color: var(--text-faint);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Contact ─────────────────────────────────────────── */
.contact {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}

.contact .section-label,
.contact .section-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact .section-heading {
  margin-bottom: 2.5rem;
}

.contact-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-details li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px;
}

.contact-details a {
  color: var(--text);
  transition: color 0.15s;
}

.contact-details a:hover {
  color: var(--blue-dark);
}

.muted {
  color: var(--text-faint);
  font-size: 0.8rem;
}

/* ── Booking Form ─────────────────────────────────────── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.optional {
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 400;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.7rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}

.form-error {
  background: #fff2f2;
  border: 1px solid #f5c6c6;
  color: #c0392b;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
}

/* ── Success ─────────────────────────────────────────── */
.success-msg {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-faint);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.35;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 820px) {
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img {
    order: -1;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  /* On mobile: owner link left, toggle right, logo hidden from centre slot */
  .nav-logo {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 2rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  section {
    padding: 3.5rem 1.25rem;
  }

  .before-after,
  .contact {
    padding: 3.5rem 1.25rem;
  }

  .nav-owner span {
    display: none; /* show only icon on very small screens */
  }
}
