:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #526174;
  --blue: #0f3d6e;
  --blue-strong: #08294d;
  --teal: #137171;
  --gold: #f0b84d;
  --paper: #fbfcfd;
  --soft: #edf5f7;
  --line: #d9e5ea;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 61, 110, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 253, 0.98));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(8, 41, 77, 0.08);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.brand {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-self: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(19, 113, 113, 0.18);
  box-shadow: 0 8px 18px rgba(8, 41, 77, 0.1);
}

.brand span {
  max-width: 9.5rem;
  line-height: 1.1;
  font-size: 0.98rem;
}

.nav-toggle {
  display: inline-grid;
  grid-column: 3;
  justify-self: end;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--blue);
  border: 0;
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.site-nav {
  position: fixed;
  inset: 74px 1rem auto 1rem;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  min-height: 44px;
  padding: 0.75rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
}

.section-band,
.section-intro,
.results,
.owner,
.faq {
  padding: 4rem 1rem;
}

.section-band {
  background: var(--white);
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100svh - 74px);
  align-items: center;
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 12vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 8vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text,
.section-intro p,
.section-heading p,
.owner-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 42rem;
  margin: 1rem 0 0;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 850;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #201403;
}

.btn-secondary {
  background: transparent;
  color: var(--blue-strong);
  border-color: var(--blue);
}

.trust-list,
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.trust-list li,
.area-list li {
  padding: 0.5rem 0.7rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-strong);
  font-weight: 750;
}

.hero-media,
.gallery figure,
.owner-media {
  margin: 0;
}

.hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figcaption {
  padding: 0.7rem 0.8rem;
  background: var(--blue-strong);
  color: var(--white);
  font-size: 0.9rem;
}

.section-intro,
.section-heading {
  max-width: 780px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.service-grid,
.price-grid {
  display: grid;
  gap: 0.8rem;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card,
.price-card {
  min-height: 12rem;
  padding: 1.15rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card p,
.price-card p,
.faq p {
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery figure {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.owner {
  display: grid;
  gap: 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.owner-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.owner-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.owner-portrait {
  align-self: center;
  justify-self: center;
  width: min(76vw, 360px);
  aspect-ratio: 1;
  padding: 0.55rem;
  overflow: visible;
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--blue), var(--teal), var(--gold)) border-box;
  border: 4px solid transparent;
  box-shadow: 0 24px 60px rgba(8, 41, 77, 0.18);
}

.owner-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 42%;
}

.coverage {
  text-align: center;
}

.coverage .area-list {
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

details {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.contact {
  display: grid;
  gap: 1.4rem;
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  border: 1px solid #b8cbd3;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 2rem 1rem;
  background: var(--blue-strong);
  color: var(--white);
  text-align: center;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (min-width: 700px) {
  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid,
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding-inline: 2rem;
  }

  .brand {
    justify-self: auto;
    text-align: left;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand span {
    max-width: none;
    font-size: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding-inline: 0.7rem;
  }

  .section-band,
  .section-intro,
  .results,
  .owner,
  .faq {
    padding: 6rem 2rem;
  }

  .hero,
  .owner,
  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  }

  .hero,
  .contact {
    padding-inline: 2rem;
  }

  .hero-copy,
  .contact-copy {
    max-width: 690px;
    justify-self: end;
  }

  .hero-media,
  .quote-form {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
