:root {
  --blue: #1a6fd4;
  --blue-dark: #1258ad;
  --navy: #1a4d80;
  --navy-deep: #16345c;
  --cyan: #3eb5e8;
  --red: #e31c24;
  --ink: #1a1a1a;
  --muted: #5a6570;
  --topbar: #1c1c1c;
  --white: #fff;
  --paper: #f7f8fa;
  --line: #e6e8ec;
  --font: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --wrap: min(1120px, calc(100% - 2rem));
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--blue);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.c-blue { color: var(--blue); }
.c-red { color: var(--red); }

.dot {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  margin: 0 0.15rem 0.22em 0.28rem;
  vertical-align: middle;
}
.dot-blue { background: var(--blue); }
.dot-red { background: var(--red); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::after {
  content: "";
  width: 2.4rem;
  height: 3px;
  background: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none !important;
}
.btn svg { flex-shrink: 0; }
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* Top bar */
.topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0.45rem 0;
}
.topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar svg { opacity: 0.9; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.1rem;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wordmark {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}
.wordmark--nav {
  height: 52px;
  width: auto;
}
.wordmark--about {
  height: 72px;
  width: auto;
  margin-bottom: 1.1rem;
}
.wordmark--page {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}
.wordmark--footer {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.header-nav a {
  color: var(--ink);
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}
.header-nav a:hover,
.header-nav a.is-current {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 6px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 38rem);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-bg,
.hero-veil {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg picture {
  width: 100%;
  height: 100%;
}
.hero-bg img {
  object-fit: cover;
  object-position: center 45%;
  height: 100%;
}
.hero-veil {
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.25) 0%, rgba(10, 18, 32, 0.55) 55%, rgba(10, 18, 32, 0.78) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 7.5rem;
}
.hero-copy > p {
  max-width: 36rem;
}
.hero-mark {
  margin: 0 0 0.7rem;
  max-width: 36rem;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.85),
    0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero-mark .hm-navy { color: #2b5585; }
.hero-mark .hm-cyan { color: #00aff0; }
.hero-mark .hm-red { color: #ec3237; }
.hero-mark .hm-red:last-child {
  display: block;
}
.hero p,
.hero-lead,
.hero-lead p {
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* Service strip overlapping hero */
.services {
  position: relative;
  z-index: 2;
  margin-top: -4.2rem;
  padding-bottom: 1rem;
}
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-strip article {
  padding: 1.5rem 1.25rem 1.6rem;
  border-right: 1px solid var(--line);
}
.service-strip article:last-child { border-right: 0; }
.svc-icon {
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.service-strip h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}
.service-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* About */
.about {
  padding: 5rem 0 4rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.about-stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
  padding: 1.2rem 0 0;
  margin: 0;
}
.about-stats li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--blue);
  font-size: 0.86rem;
}
.about-stats strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}
.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  max-height: 28rem;
}
.about-photo img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
}

/* Gallery */
.gallery {
  padding: 1rem 0 4.5rem;
  text-align: center;
}
.section-head { margin-bottom: 1.6rem; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}
.gallery-open {
  border: 0;
  padding: 0;
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-open:hover img { transform: scale(1.05); }
.gallery-cta { margin: 1.6rem 0 0; }

/* Reviews */
.reviews {
  background: var(--navy-deep);
  color: #fff;
  padding: 3.4rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.reviews blockquote {
  margin: 0;
}
.quote-mark {
  display: block;
  opacity: 0.85;
  margin-bottom: 0.7rem;
}
.reviews p { margin: 0 0 0.6rem; }
.reviews footer {
  font-size: 0.86rem;
  opacity: 0.85;
}
.reviews-score {
  text-align: center;
  min-width: 12rem;
}
.reviews-score p:first-child {
  font-size: 1.35rem;
  font-weight: 800;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: #f5c518;
  margin: 0.35rem 0 0.2rem;
}
.reviews-count { opacity: 0.85; font-size: 0.9rem; }

/* Contact */
.contact {
  padding: 4.5rem 0 5rem;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0.4rem 0 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-list svg { color: var(--blue); flex-shrink: 0; margin-top: 0.15rem; }

.enquiry-form {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  padding: 1.4rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.enquiry-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fafbfc;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--blue) 40%, transparent);
  border-color: var(--blue);
}
.enquiry-form .btn { justify-self: start; }
.hp {
  position: absolute;
  left: -9999px;
}
.form-status {
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.88rem;
}
.form-status.is-success { background: #e8f7ee; color: #0b6b4a; }
.form-status.is-error { background: #fde8ea; color: #a31422; }

/* Inner pages */
.page-wrap { padding: 3rem 0 4.5rem; width: var(--wrap); margin-inline: auto; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.prose { max-width: 42rem; color: var(--muted); }
.prose h2, .prose h3 { color: var(--ink); }

.breadcrumbs { margin: 0 0 1.25rem; font-size: 0.78rem; }
.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}
.breadcrumbs-list li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumbs-list li + li::before {
  content: "/";
  color: var(--line);
  font-weight: 500;
}
.breadcrumbs-list a {
  color: var(--blue);
  font-weight: 600;
}
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current="page"] span { color: var(--ink); font-weight: 700; }

.faq-block { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.faq-block h2 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); margin-bottom: 1rem; }
.faq-list { display: grid; gap: 0.55rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0 1rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.faq-answer p { margin: 0; }

.faq-home .faq-block { margin-top: 0; padding-top: 0; border-top: 0; }

.areas-strip {
  padding: 3.5rem 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.areas-intro { max-width: 36rem; color: var(--muted); margin-bottom: 1.25rem; }
.areas-nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.areas-nav a {
  display: block;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.areas-nav a:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 111, 212, 0.12);
}
.areas-more { margin: 1rem 0 0; font-size: 0.88rem; }
.areas-more a { color: var(--blue); font-weight: 700; }

.html-sitemap ul {
  columns: 2;
  gap: 2rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.html-sitemap li { margin-bottom: 0.45rem; break-inside: avoid; }
.html-sitemap a { color: var(--blue); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--topbar);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-align: center;
}
.footer-brand-bar {
  background: #fff;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
}
.footer-legal {
  margin: 0;
  padding: 1.1rem 0;
}
.footer-legal a { color: #fff; text-decoration: underline; }

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 0.85rem;
}

.lightbox {
  border: 0;
  padding: 0;
  max-width: min(92vw, 720px);
  background: #111;
  color: #fff;
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.75); }
.lightbox img { max-height: 80vh; width: 100%; object-fit: contain; }
.lightbox p { margin: 0; padding: 0.7rem 1rem 1rem; font-size: 0.85rem; }
.lightbox-close {
  position: absolute;
  right: 0.4rem;
  top: 0.2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .service-strip { grid-template-columns: 1fr 1fr; }
  .service-strip article:nth-child(2) { border-right: 0; }
  .about-grid,
  .contact-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-score { order: -1; }
  .gallery-row { grid-template-columns: repeat(3, 1fr); }
  .gallery-row .gallery-open:nth-child(n + 4) { display: none; }
}

@media (max-width: 760px) {
  .wordmark--nav { height: 40px; }
  .wordmark--about { height: 52px; }
  .nav-toggle { display: block; }
  .header-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }
  .site-header.is-open .header-nav { display: flex; }
  .header-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .hero-copy { padding: 4rem 1rem 6.5rem; margin-left: 0; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-stats { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .areas-nav ul { grid-template-columns: 1fr; }
  .html-sitemap ul { columns: 1; }
  .call-bar { display: block; }
  .call-bar.is-hidden { display: none; }
  body { padding-bottom: 3.4rem; }
}
