:root {
  --ink: #132033;
  --muted: #647084;
  --dark: #071426;
  --navy: #0b2a5b;
  --blue: #1456b8;
  --red: #dc2e2e;
  --red-dark: #a81721;
  --paper: #f5f7fb;
  --white: #ffffff;
  --line: rgba(19, 32, 51, .14);
  --shadow: 0 24px 70px rgba(7, 20, 38, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { line-height: 1.65; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand img { width: min(300px, 48vw); max-height: 72px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 20px; font-weight: 850; }
.site-nav a { color: #26344c; text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--red); }
.nav-phone {
  color: white !important;
  background: linear-gradient(135deg, var(--red), #ff5a54);
  padding: 11px 15px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(220, 46, 46, .24);
}
.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark);
  color: white;
  padding: 0 14px;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 6vw, 90px) clamp(28px, 5vw, 62px);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 24, .94), rgba(4, 11, 24, .68) 42%, rgba(4, 11, 24, .16)),
    linear-gradient(0deg, rgba(4, 11, 24, .86), rgba(4, 11, 24, 0) 46%);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(910px, 100%);
  min-width: 0;
}
.hero h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero p, .page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 950;
}
.action-row, .center-actions, .stacked-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary { background: linear-gradient(135deg, var(--red), #ff5a54); color: white; box-shadow: 0 18px 40px rgba(220, 46, 46, .26); }
.btn.secondary { background: var(--blue); color: white; }
.btn.light { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.32); }
.btn.dark { background: var(--dark); color: white; }
.hero-panel {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(410px, 100%);
  margin-top: 46px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  color: var(--dark);
  box-shadow: var(--shadow);
}
.hero-panel strong, .hero-panel span, .hero-panel a { display: block; }
.hero-panel span { color: var(--muted); margin: 6px 0 12px; }
.hero-panel a { color: var(--blue); font-weight: 950; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}
.trust-strip div { padding: 22px clamp(16px, 3vw, 32px); border-right: 1px solid var(--line); }
.trust-strip strong { display: block; color: var(--dark); }
.trust-strip span { display: block; color: var(--muted); margin-top: 5px; line-height: 1.45; }

.section-pad { padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 900px; }
.centered { text-align: center; margin-inline: auto; }
h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--dark);
}
h3 { margin: 9px 0; font-size: 1.24rem; color: var(--dark); }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  gap: clamp(24px, 5vw, 74px);
  background: linear-gradient(135deg, #fff, #edf4ff);
}
.intro-copy p, .section-heading p, .service-list p, .gallery-card p, .before-after p, .values p { color: var(--muted); font-size: 1.08rem; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--blue); font-weight: 950; }
.service-preview, .gallery-page, .values { background: white; }
.card-grid { display: grid; gap: 18px; margin-top: 34px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid article, .service-list article, .gallery-card, .ba-grid article, .contact-info, .quote-form, .check-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(7, 20, 38, .08);
}
.card-grid span { color: var(--red); font-weight: 950; }
.card-grid p { color: var(--muted); }
.card-grid h3 a, .service-list h2 a { color: var(--dark); text-decoration-color: rgba(20,86,184,.35); text-underline-offset: 4px; }
.card-grid h3 a:hover, .service-list h2 a:hover { color: var(--blue); }
.center-actions { justify-content: center; }

.process-band { background: var(--dark); color: white; }
.process-band h2, .dark-section h2, .dark-section h3 { color: white; }
.process-band .section-heading p, .dark-section p { color: rgba(255,255,255,.76); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.steps article {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}
.steps strong {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}
.steps p { color: rgba(255,255,255,.76); }

.gallery-preview { background: #eef3fa; }
.gallery-row { display: grid; grid-template-columns: 1.1fr .9fr .8fr; gap: 16px; margin: 32px 0 10px; }
.gallery-row img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.gallery-row img:nth-child(2) { margin-top: 34px; }
.gallery-row img:nth-child(3) { margin-top: 68px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.dark-section { background: linear-gradient(135deg, var(--dark), #0c2b59); color: white; }
.contact-card { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); border-radius: 8px; padding: 24px; }
.contact-card a { color: white; font-weight: 950; }
.contact-card .btn.light { background: white; color: var(--dark); }

.page-hero {
  padding: clamp(74px, 10vw, 130px) clamp(18px, 6vw, 90px);
  background: linear-gradient(135deg, rgba(7,20,38,.96), rgba(13,42,89,.92)), url("assets/images/shop-bay.jpg") center/cover;
  color: white;
  overflow: hidden;
}
.page-hero h1 { max-width: 1040px; font-size: clamp(2.5rem, 6vw, 5.4rem); }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-list h2 { font-size: clamp(1.45rem, 2.6vw, 2.2rem); }
.service-list .text-link { margin-top: 0; }
.check-panel ul { margin: 0; padding-left: 20px; display: grid; gap: 12px; color: var(--ink); font-weight: 780; }
.rounded-image { width: 100%; height: 470px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }

.breadcrumbs {
  padding: 16px clamp(18px, 6vw, 90px);
  background: white;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}
.breadcrumbs a { color: var(--blue); font-weight: 800; }
.detail-copy { max-width: 820px; }
.detail-copy h2 { margin-top: 42px; font-size: clamp(1.7rem, 3.3vw, 2.8rem); }
.detail-copy h2:first-child { margin-top: 0; }
.detail-copy p, .detail-copy li { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.detail-copy ul { padding-left: 22px; }
.faq-grid { display: grid; gap: 14px; margin-top: 30px; }
.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.faq-grid h3 { margin-top: 0; }
.faq-grid p { margin-bottom: 0; color: var(--muted); }
.related-services { background: #eef3fa; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.related-links a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.gallery-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 24px; }
.gallery-card img { width: 100%; height: 310px; object-fit: cover; border-radius: 8px; }
.gallery-card.wide img { height: 430px; }
.before-after { background: #eef3fa; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: white;
}
.contact-info h2, .quote-form h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.contact-info, .quote-form { min-width: 0; overflow: hidden; }
.contact-info p, .contact-info a { overflow-wrap: anywhere; }
.quote-form { scroll-margin-top: 110px; }
.quote-form p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label, legend { font-weight: 850; color: var(--dark); }
input, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #f9fbff;
}
textarea { resize: vertical; }
fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
fieldset label { font-weight: 650; }
fieldset input { width: auto; margin: 0 8px 0 0; }
.form-honey { display: none; }
.form-status { min-height: 1.5em; margin: 0.75rem 0 0; }
.quote-form button:disabled { cursor: wait; opacity: 0.7; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #030811;
  color: rgba(255,255,255,.72);
}
.site-footer img { width: 230px; filter: brightness(1.1); }
.site-footer p { margin: 4px 0; }
.site-footer a { color: white; }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
  background: var(--paper);
}
.thanks-page img { width: min(360px, 88vw); margin: 0 auto; }
.thanks-page h1 { margin: 0; font-size: clamp(2rem, 7vw, 4rem); }

@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 4px;
  }
  .site-nav.open { display: flex; }
  .trust-strip, .intro, .card-grid.three, .steps, .gallery-row, .split, .service-list, .gallery-page, .gallery-card.wide, .contact-layout { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-row img, .gallery-row img:nth-child(2), .gallery-row img:nth-child(3), .gallery-card img, .gallery-card.wide img, .rounded-image { height: 300px; margin-top: 0; }
  .hero-panel { justify-self: start; }
}

@media (max-width: 560px) {
  .brand img { width: min(246px, 72vw); }
  .hero { min-height: 790px; padding-top: 80px; }
  .hero-copy, .hero-panel { width: min(330px, 100%); }
  .hero h1 { font-size: clamp(2.1rem, 9.2vw, 2.7rem); }
  .page-hero h1, .page-hero p, .page-hero .action-row { width: min(330px, 100%); }
  .page-hero h1 { font-size: clamp(2.05rem, 9vw, 2.7rem); }
  .btn { width: 100%; }
  .action-row { display: grid; grid-template-columns: minmax(0, 1fr); }
  .hero .action-row { width: 100%; }
  .form-grid, fieldset { grid-template-columns: 1fr; }
  .contact-info, .quote-form { width: min(340px, 100%); }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
