:root {
  --bg: #f7f3eb;
  --surface: #ffffff;
  --surface-alt: #fdf8f1;
  --ink: #1f2933;
  --muted: #5b6675;
  --line: rgba(24, 39, 55, 0.12);
  --brand: #a05d2f;
  --brand-deep: #73411f;
  --brand-soft: #f4dfce;
  --accent: #284b57;
  --shadow: 0 20px 48px rgba(22, 35, 48, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behaviour: smooth; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
iframe { max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.topbar {
  background: var(--accent);
  color: #edf6f8;
  font-size: 0.95rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.brand img { height: 44px; width: auto; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--muted);
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-soft);
  color: var(--brand-deep);
}
.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover,
.button-secondary:hover,
.button-ghost:hover { transform: translateY(-1px); }
.button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 28px rgba(160, 93, 47, 0.24);
}
.button-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.26);
}
.button-ghost {
  background: var(--surface);
  color: var(--brand-deep);
  border: 1px solid var(--line);
}
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(17, 25, 37, 0.86), rgba(24, 52, 62, 0.56));
}
.hero .container {
  position: relative;
  padding: 5.25rem 0 4.7rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.75rem;
  align-items: start;
}
.hero-grid--single {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.65fr);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 1.06;
  max-width: 12.5ch;
}
.hero p.lead {
  margin: 0 0 1.4rem;
  max-width: 60ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
}
.hero-actions,
.hero-badges,
.inline-actions,
.pill-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-actions { margin: 1.35rem 0 1.5rem; }
.hero-badges span,
.pill-list span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}
.hero-badges span {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
}
.card,
.surface-block,
.service-card,
.detail-card,
.faq-list details,
.contact-form-shell,
.contact-side,
.process-step,
.area-card,
.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.surface-block,
.contact-form-shell,
.contact-side,
.summary-card,
.process-step {
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .surface-block,
  .contact-form-shell,
  .contact-side,
  .summary-card,
  .process-step {
    padding: 1.5rem;
  }
}

.hero-form-card {
  padding: 1.25rem;
  color: var(--ink);
  background: rgba(255,255,255,0.97);
}
.hero-form-card h2,
.surface-block h2,
.surface-block h3,
.service-card h3,
.detail-card h3,
.summary-card h3,
.process-step h3,
.contact-side h3,
.area-card h3 {
  margin-top: 0;
}
.hero-form-card p { color: var(--muted); }
.hero-form-embed iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}
main section { padding: 4.35rem 0; }
.section-heading { margin-bottom: 1.7rem; display: grid; gap: 0.7rem; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  line-height: 1.15;
}
.section-heading p { margin: 0; color: var(--muted); max-width: 64ch; }
.grid-2,
.grid-3,
.grid-4,
.footer-grid,
.contact-grid,
.service-grid,
.area-grid,
.detail-grid {
  display: grid;
  gap: 1.35rem;
}
.grid-2,
.contact-grid,
.detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3,
.footer-grid,
.service-grid,
.area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.6rem;
  align-items: center;
}
.content-stack,
.rich-copy,
.process-list,
.footer-links,
.contact-details { display: grid; gap: 1rem; }
.content-stack > *,
.rich-copy > * { margin: 0; }
.service-card,
.area-card,
.detail-card,
.summary-card,
.process-step { overflow: hidden; }
.service-card img,
.area-card img,
.detail-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-card .content,
.area-card .content,
.detail-card .content,
.summary-card .content,
.process-step .content { padding: 1.2rem; }
.summary-band {
  background: linear-gradient(135deg, rgba(40, 75, 87, 0.12), rgba(160, 93, 47, 0.12));
}
.video-frame,
.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}
.video-frame iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.faq-list { display: grid; gap: 1rem; }
.faq-list details { padding: 1.15rem 1.25rem; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { color: var(--muted); margin: 0.9rem 0 0; }
.site-note {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--muted);
}
.list-clean { padding-left: 1.15rem; margin: 0; }
.list-clean li + li { margin-top: 0.55rem; }
.contact-form-shell,
.contact-side { padding: 1.35rem; }
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
label { display: grid; gap: 0.35rem; font-weight: 700; }
input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(25, 34, 47, 0.16);
  font: inherit;
  background: #fff;
}
textarea { resize: vertical; min-height: 160px; }
.process-list { grid-template-columns: repeat(5, minmax(0, 1fr)); display: grid; gap: 1rem; }
.process-step { padding: 0; }
.process-step .content p:last-child,
.service-card .content p:last-child,
.area-card .content p:last-child,
.detail-card .content p:last-child,
.summary-card .content p:last-child,
.contact-side p:last-child,
.surface-block p:last-child { margin-bottom: 0; }
footer {
  background: #1d2731;
  color: rgba(255,255,255,0.86);
  padding: 4rem 0 2rem;
}
footer h4 { margin-top: 0; color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .hero-grid,
  .hero-grid--single,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .service-grid,
  .area-grid,
  .detail-grid,
  .footer-grid,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-shell { flex-wrap: wrap; }
}

.hero-actions .button-secondary { background: var(--button) !important; color: var(--button-text) !important; border: 1px solid var(--button) !important; opacity: 1 !important; box-shadow: var(--shadow); }
.hero-actions .button-secondary:hover { opacity: 0.92; }
.info-item, .info-strip .item, .benefit-pill { background: var(--surface); color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.location-pill-list { display:flex; flex-wrap:wrap; gap:0.75rem; padding:0; margin:1rem 0 0; list-style:none; }
.location-pill-list li a { display:inline-block; padding:0.75rem 1rem; border-radius:999px; background: var(--surface); border:1px solid var(--line); text-decoration:none; color:var(--text); }
.location-pill-list li a:hover { background: var(--button); color: var(--button-text); border-color: var(--button); }
.inline-image { max-width: 420px; width:100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 1rem 0 1.5rem; }

.video-section { padding: 0; }
.video-section .video-wrap { max-width: 1100px; margin: 0 auto; }
.video-section iframe { width: 100%; min-height: 620px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); background: #000; }


.hero .hero-actions .button-secondary,
.hero .hero-actions .button-secondary:visited {
  background: #475569 !important;
  color: #ffffff !important;
  border: 1px solid #475569 !important;
  opacity: 1 !important;
  filter: none !important;
  text-decoration: none !important;
}
.hero .hero-actions .button-secondary:hover,
.hero .hero-actions .button-secondary:focus {
  background: #334155 !important;
  color: #ffffff !important;
  border-color: #334155 !important;
  opacity: 1 !important;
}
.hero-badges span {
  background: #f8fafc !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
}


.hero .hero-actions .button-secondary,
.hero .hero-actions .button-secondary:visited,
.hero .hero-actions .button-secondary:hover,
.hero .hero-actions .button-secondary:focus {
  background: #0f766e !important;
  color: #ffffff !important;
  border: 1px solid #0f766e !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 10px 30px rgba(15,118,110,.22) !important;
}
.hero .hero-actions .button-secondary:hover,
.hero .hero-actions .button-secondary:focus {
  background: #115e59 !important;
  border-color: #115e59 !important;
}


.hero .hero-actions .button,
.hero .hero-actions .button:visited {
  background: #0f766e !important;
  color: #ffffff !important;
  border: 1px solid #0f766e !important;
  opacity: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(15,118,110,.22) !important;
}
.hero .hero-actions .button:hover,
.hero .hero-actions .button:focus {
  background: #115e59 !important;
  border-color: #115e59 !important;
  color: #ffffff !important;
}






.content-stack p,
#our-process .surface-block p,
#our-process .info-item p {
  line-height: 1.75;
}





main > section:first-of-type 





.video-placeholder { position: relative; width: 100%; min-height: 620px; border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow); cursor: pointer; }
.video-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.12), rgba(15,23,42,.3)); }
.video-play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); z-index: 2; width: 84px; height: 84px; border-radius: 999px; display: grid; place-items: center; background: rgba(15,118,110,.95); color: #fff; font-size: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
@media (max-width: 768px) { .video-placeholder { min-height: 260px; } .video-play { width: 64px; height: 64px; font-size: 1.5rem; } }

.video-placeholder { position: relative; display:block; }
.video-placeholder img { width: 100%; height: auto; display:block; border-radius: var(--radius); }
.video-placeholder::after { content:""; position:absolute; inset:0; border-radius: var(--radius); background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.28)); pointer-events:none; }
.video-play { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2; }

.services-page .service-card img, body.page-services .service-card img, .grid-4 .service-card img { max-height: 180px; object-fit: cover; }


.video-placeholder {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}
.video-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
  pointer-events: none;
}
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 96px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255, 0, 0, 0.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.video-play::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 21px;
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
@media (max-width: 768px) {
  .video-play {
    width: 78px;
    height: 56px;
    border-radius: 16px;
  }
  .video-play::before {
    left: 31px;
    top: 17px;
    border-left-width: 20px;
    border-top-width: 11px;
    border-bottom-width: 11px;
  }
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-grid h4 {
  margin-bottom: 0.75rem;
}
.footer-grid ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.footer-grid li {
  margin: 0 0 0.45rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
