:root {
  --green: #2f6f2f;
  --green-dark: #173f24;
  --green-soft: #eaf4e4;
  --navy: #133a5e;
  --navy-dark: #0d253d;
  --gold: #a47735;
  --stone: #e9e5db;
  --surface: #f7f8f2;
  --ink: #112217;
  --muted: #5e6a62;
  --white: #ffffff;
  --line: rgba(17, 34, 23, .14);
  --shadow: 0 18px 40px rgba(13, 37, 61, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: .9rem;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar a { text-decoration: none; font-weight: 700; }
.nav-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  position: relative;
}
.brand img {
  width: 164px;
  height: auto;
}
.site-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 20px);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
}
.site-menu a,
.nav-dropdown > button {
  text-decoration: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  padding: 8px 0;
}
.site-menu a:hover,
.nav-dropdown > button:hover,
.site-menu a.active { color: var(--green); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  display: none;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-width: 320px;
  z-index: 90;
}
.services-panel {
  width: min(720px, calc(100vw - 40px));
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel { display: grid; }
.dropdown-block span {
  display: block;
  color: var(--green);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.dropdown-block a,
.area-panel a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}
.area-panel { width: 260px; }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
}
.nav-cta,
.button.primary {
  background: var(--green);
  color: var(--white);
}
.button.secondary {
  background: var(--navy);
  color: var(--white);
}
.button.ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 9px;
}
.mobile-quick-links { display: none; }
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}
.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,37,61,.86), rgba(23,63,36,.62), rgba(13,37,61,.24));
}
.hero-content {
  position: relative;
  padding: 92px 0;
  max-width: 900px;
  margin-left: max(20px, calc((100% - 1160px) / 2));
}
.hero h1 {
  font-size: 4.25rem;
  line-height: .98;
  letter-spacing: 0;
  margin: 10px 0 20px;
  max-width: 880px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 720px;
  color: rgba(255,255,255,.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: .78rem;
}
.eyebrow.light { color: #dff2d4; }
.contact-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.strip-grid a,
.strip-grid div {
  padding: 22px;
  text-decoration: none;
  border-left: 1px solid var(--line);
}
.strip-grid > *:last-child { border-right: 1px solid var(--line); }
.strip-grid strong,
.strip-grid span {
  display: block;
}
.strip-grid strong { color: var(--navy); }
.strip-grid span { color: var(--muted); margin-top: 4px; }
.section { padding: 86px 0; }
.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}
.section-heading.center { margin-inline: auto; text-align: center; }
h2 {
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 16px;
}
h3 {
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 0 0 10px;
}
p { margin: 0 0 16px; color: var(--muted); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.feature-card,
.process-grid article,
.faq-list details,
.area-cards a,
.photo-grid figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.service-card a {
  display: grid;
  min-height: 100%;
  text-decoration: none;
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card div,
.feature-card,
.process-grid article {
  padding: 22px;
}
.service-card p { font-size: .96rem; }
.service-card span {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
}
.muted-section { background: var(--stone); }
.feature-card p { margin-bottom: 0; }
.image-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13,37,61,.82), rgba(23,63,36,.58)),
    url('/assets/images/old-relume-187317.jpeg?v=20260528-3') center / cover;
}
.image-band-grid {
  min-height: 410px;
  display: grid;
  align-items: center;
}
.image-band h2,
.image-band p {
  max-width: 720px;
  color: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-grid span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}
.quote-band {
  background: var(--navy-dark);
  color: var(--white);
}
.quote-band p,
.quote-band h2 { color: var(--white); }
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.form-frame {
  min-height: 680px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-list a,
.contact-list span {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}
.contact-list.large a,
.contact-list.large span { color: var(--navy); }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}
.faq-list p { margin: 12px 0 0; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.full-gallery {
  grid-template-columns: repeat(4, 1fr);
}
.full-gallery figure { margin: 0; }
.full-gallery img { border-radius: 0; }
.full-gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: .88rem;
}
.centered-action { text-align: center; margin-top: 28px; }
.area-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.area-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.area-cards a {
  padding: 24px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
}
.area-cards span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}
.service-area-map-section {
  background: var(--white);
}
.service-area-map-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
}
.service-area-copy {
  align-self: center;
}
.area-cards.compact {
  margin: 24px 0 20px;
}
.area-cards.compact a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.area-cards.compact a:hover {
  transform: translateY(-2px);
  border-color: rgba(47,111,47,.4);
  box-shadow: var(--shadow);
}
.map-button {
  margin-top: 6px;
}
.map-card {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--stone);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
}
.reviews-section {
  background: var(--surface);
}
.reviews-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 10px;
}
.reviews-frame iframe {
  display: block;
  min-height: 520px;
  border: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}
.contact-form { min-height: 710px; }
.map-section iframe {
  display: block;
  width: 100%;
  height: 440px;
}
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr .85fr;
  gap: 34px;
}
.footer-logo {
  width: 170px;
  height: auto;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 18px;
}
.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255,255,255,.84);
}
.site-footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}
.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--white);
}
.footer-phone {
  font-weight: 900;
  font-size: 1.18rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1120px) {
  .nav-cta { display: none; }
  .site-menu { gap: 13px; font-size: .9rem; }
  .services-panel { width: 600px; }
  .hero h1 { font-size: 3.3rem; }
  .card-grid,
  .feature-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid,
  .full-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .container,
  .narrow {
    width: calc(100% - 28px);
    max-width: 1160px;
  }
  .topbar-inner {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 2px;
    padding: 6px 0;
    font-size: .84rem;
  }
  .nav-shell {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    min-height: 74px;
  }
  .brand img { width: 132px; }
  .menu-toggle {
    display: inline-grid;
    align-content: center;
    margin-left: auto;
  }
  .mobile-quick-links { display: none; }
  .site-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 14px;
    box-shadow: var(--shadow);
    white-space: normal;
    z-index: 100;
  }
  .site-menu.open { display: grid; }
  .site-menu a,
  .nav-dropdown > button { padding: 10px 0; text-align: left; width: 100%; }
  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel,
  .dropdown-panel {
    position: static;
    display: grid;
    transform: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: 1px solid var(--line);
    margin: 4px 0 10px;
  }
  .services-panel { grid-template-columns: 1fr; }
  .hero { min-height: 680px; }
  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    padding: 70px 0;
  }
  .hero h1 {
    font-size: 2.22rem;
    overflow-wrap: break-word;
  }
  .hero p { font-size: 1.04rem; }
  .strip-grid,
  .split-grid,
  .quote-grid,
  .area-grid,
  .service-area-map-grid,
  .contact-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .strip-grid a,
  .strip-grid div { border-right: 1px solid var(--line); }
  .section { padding: 62px 0; }
  h2 { font-size: 2rem; }
  .card-grid,
  .feature-grid,
  .process-grid,
  .area-cards { grid-template-columns: 1fr; }
  .map-card,
  .map-card iframe { min-height: 390px; }
  .reviews-frame iframe { min-height: 560px; }
  .photo-grid,
  .full-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { display: grid; }
}

@media (max-width: 520px) {
  .hero { min-height: 620px; }
  .hero h1 {
    font-size: 1.92rem;
    max-width: 340px;
  }
  .hero p { max-width: 340px; }
  .eyebrow { font-size: .72rem; line-height: 1.35; }
  .mobile-quick-links { display: none; }
  .hero-actions { display: grid; }
  .photo-grid,
  .full-gallery { grid-template-columns: 1fr; }
  .form-frame { min-height: 720px; }
}