* {
  box-sizing: border-box;
}

:root {
  --maroon: #744354;
  --maroon-deep: #321b25;
  --ink: #17191d;
  --paper: #f7f5ef;
  --white: #fff;
  --line: rgba(23, 25, 29, 0.14);
  --muted: #586166;
  --yellow: #f0c84b;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 18px 48px rgba(23, 25, 29, 0.12);
  --shadow-lift: 0 24px 70px rgba(23, 25, 29, 0.18);
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  background: #17191d;
}

body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(23, 25, 29, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #fff 0%, var(--paper) 58%, #efece5 100%);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e7e2dc;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--yellow));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 120ms linear;
}

.logo-link {
  display: flex;
  text-decoration: none;
}

.logo-crop {
  width: min(204px, 28vw);
  aspect-ratio: 699 / 330;
  height: auto;
  overflow: hidden;
  flex: none;
  border-radius: 0;
  background: var(--maroon);
  transition: transform 360ms var(--ease-out), filter 360ms var(--ease-out);
}

.logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-link:hover .logo-crop {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 18px rgba(116, 67, 84, 0.2));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3f474d;
  font-size: 13px;
  font-weight: 850;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a.is-active {
  color: var(--maroon);
}

.primary-nav a,
.header-phone,
.button,
.facebook-link {
  text-decoration: none;
}

.header-phone,
.button {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(23, 25, 29, 0);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out);
}

.header-phone::after,
.button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-180%) rotate(18deg);
  transition: transform 560ms var(--ease-out);
}

.header-phone:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 25, 29, 0.14);
}

.header-phone:hover::after,
.button:hover::after {
  transform: translateX(520%) rotate(18deg);
}

.header-phone,
.button-primary {
  background: var(--maroon);
  color: #fff;
}

.button-secondary,
.button-light {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover,
.button-light:hover {
  border-color: rgba(116, 67, 84, 0.34);
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  height: clamp(760px, calc(100vh - 116px), 840px);
  min-height: 760px;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(22px, 4vw, 52px);
  top: clamp(22px, 4vw, 52px);
  bottom: clamp(22px, 4vw, 52px);
  width: 4px;
  background: linear-gradient(180deg, var(--maroon), rgba(116, 67, 84, 0), var(--yellow));
  opacity: 0.42;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(34px, 5vw, 68px) clamp(22px, 4vw, 52px);
  background:
    radial-gradient(circle at 0% 0%, rgba(116, 67, 84, 0.13), transparent 35%),
    linear-gradient(180deg, #fff, var(--paper));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 50%);
  height: 180px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(116, 67, 84, 0.08) 72% 73%, transparent 73%),
    linear-gradient(135deg, transparent 0 82%, rgba(23, 25, 29, 0.06) 82% 83%, transparent 83%);
}

.eyebrow {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  background: rgba(116, 67, 84, 0.11);
  color: var(--maroon);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(116, 67, 84, 0.06);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 70px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 52px);
}

.hero-lede {
  max-width: 680px;
  margin: 0;
  color: #444d53;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 560;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.quote-card {
  width: 100%;
  min-width: 0;
  max-width: 680px;
  display: grid;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}

.quote-card:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 67, 84, 0.28);
  box-shadow: var(--shadow-lift);
}

.quote-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #ddd7cf;
  color: #333b40;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.quote-chips span:hover {
  transform: translateY(-1px);
  border-color: rgba(116, 67, 84, 0.32);
  background: rgba(116, 67, 84, 0.08);
}

.hero-media {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 144px;
  background: var(--maroon-deep);
}

.feature-photo {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  margin: 0;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 37%, rgba(36, 22, 29, 0.78)),
    radial-gradient(ellipse at 50% 88%, rgba(240, 200, 75, 0.16), transparent 46%);
}

.feature-photo figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(23, 25, 29, 0.68);
  color: #fff;
  padding: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.feature-photo figcaption strong,
.feature-photo figcaption span {
  display: block;
}

.feature-photo figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  font-weight: 750;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-thumbs figure,
.portfolio-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #ddd;
}

.hero-thumbs figure::after,
.portfolio-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(23, 25, 29, 0.24));
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
}

.hero-thumbs figure:hover::after,
.portfolio-grid figure:hover::after {
  opacity: 1;
}

.hero-thumbs img {
  width: 100%;
  height: 144px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}

.hero-thumbs figcaption,
.portfolio-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(23, 25, 29, 0.78);
  color: #fff;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  z-index: 1;
  transition: transform 320ms var(--ease-out), background 320ms var(--ease-out);
}

.hero-thumbs figure:hover img,
.portfolio-grid figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.04);
}

.hero-thumbs figure:hover figcaption,
.portfolio-grid figure:hover figcaption {
  transform: translateY(-2px);
  background: rgba(116, 67, 84, 0.9);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 2.2vw, 28px) clamp(22px, 5vw, 62px);
  border-top: 1px solid rgba(227, 221, 212, 0.85);
  border-bottom: 1px solid rgba(227, 221, 212, 0.85);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 239, 0.92)),
    var(--paper);
}

.proof-strip div {
  position: relative;
  min-width: 0;
  padding: 18px clamp(16px, 1.8vw, 24px);
  border: 1px solid #e3ddd4;
  border-radius: 8px;
  overflow: hidden;
  min-height: 112px;
  display: grid;
  align-content: start;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(23, 25, 29, 0.055);
  transition: background 280ms var(--ease-out), transform 280ms var(--ease-out), border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.proof-strip div::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  width: auto;
  background: var(--maroon);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 280ms var(--ease-out);
}

.proof-strip div:hover {
  border-color: rgba(116, 67, 84, 0.28);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.proof-strip div:hover::before {
  transform: scaleX(1);
}

.proof-strip div:last-child {
  border-right: 1px solid #e3ddd4;
}

.proof-strip b {
  display: block;
  color: var(--maroon);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  line-height: 1.15;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(14px, 1.18vw, 17px);
  font-weight: 900;
  line-height: 1.22;
}

.work-section,
.services-section,
.about-section,
.trust-section {
  position: relative;
  padding: clamp(34px, 4.4vw, 58px) clamp(22px, 5vw, 62px);
}

main section[id] {
  scroll-margin-top: 122px;
}

.section-head,
.services-section,
.trust-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
}

.section-head p,
.service-intro p,
.trust-cards p,
.contact-section p,
.service-list p {
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 245px;
  gap: 12px;
  margin-top: 24px;
}

.portfolio-grid figure {
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(23, 25, 29, 0);
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
}

.portfolio-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.portfolio-grid figure.large {
  grid-row: span 2;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}

.comparison-block {
  display: grid;
  gap: 20px;
  margin-top: clamp(30px, 4.5vw, 58px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid #e4ded6;
}

.comparison-head {
  max-width: 820px;
  display: grid;
  gap: 10px;
}

.comparison-head h3 {
  max-width: 660px;
  margin: 0;
  color: var(--maroon-deep);
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
}

.comparison-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 0 0 rgba(23, 25, 29, 0);
  transition: transform 340ms var(--ease-out), box-shadow 340ms var(--ease-out), border-color 340ms var(--ease-out);
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 67, 84, 0.3);
  box-shadow: var(--shadow-soft);
}

.ba-slider {
  --ba-position: 50%;
  position: relative;
  min-height: 340px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  background: #21141a;
  outline: none;
}

.ba-slider:focus-visible {
  box-shadow: inset 0 0 0 3px var(--yellow);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-after-img {
  filter: saturate(1.02) contrast(1.02);
}

.ba-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--ba-position)) 0 0);
}

.ba-before::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 82%, rgba(23, 25, 29, 0.18));
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-position);
  z-index: 3;
  width: 3px;
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(240, 200, 75, 0.7);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), #fff1ae);
  box-shadow: 0 14px 28px rgba(23, 25, 29, 0.32);
  transform: translate(-50%, -50%);
}

.ba-knob::before,
.ba-knob::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 9px;
  height: 9px;
  border-top: 3px solid var(--maroon-deep);
  border-left: 3px solid var(--maroon-deep);
}

.ba-knob::before {
  left: 13px;
  transform: rotate(-45deg);
}

.ba-knob::after {
  right: 13px;
  transform: rotate(135deg);
}

.ba-tag {
  position: absolute;
  top: 12px;
  z-index: 4;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(23, 25, 29, 0.78);
  color: #fff;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.ba-tag-before {
  left: 12px;
}

.ba-tag-after {
  right: 12px;
  background: rgba(116, 67, 84, 0.88);
}

.comparison-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.comparison-copy span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(116, 67, 84, 0.1);
  color: var(--maroon);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-copy strong {
  display: block;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.08;
}

.comparison-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.excavation-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(38px, 5.5vw, 70px) clamp(22px, 5vw, 62px);
  background: var(--maroon-deep);
  color: #fff;
}

.excavation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 17px),
    linear-gradient(90deg, rgba(116, 67, 84, 0.65), transparent 66%);
}

.excavation-copy,
.excavation-showcase {
  position: relative;
  z-index: 1;
}

.excavation-copy {
  display: grid;
  gap: 18px;
}

.excavation-copy .eyebrow {
  background: rgba(240, 200, 75, 0.13);
  color: var(--yellow);
}

.excavation-copy h2 {
  max-width: 620px;
  color: #fff;
}

.excavation-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.54;
}

.excavation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.excavation-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(280px, 1.14fr);
  gap: 12px;
  min-width: 0;
}

.excavation-hero-card,
.excavation-proof-grid article {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.excavation-hero-card {
  position: relative;
  min-height: 540px;
}

.excavation-hero-card img,
.excavation-proof-grid img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.excavation-hero-card img {
  position: absolute;
  inset: 0;
}

.excavation-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(23, 25, 29, 0.84));
}

.excavation-hero-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.excavation-hero-card span,
.excavation-proof-grid span {
  width: fit-content;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--maroon-deep);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.excavation-hero-card strong {
  max-width: 360px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 0.98;
}

.excavation-proof-grid {
  display: grid;
  gap: 12px;
}

.excavation-proof-grid article {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 172px;
}

.excavation-proof-grid div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 15px;
}

.excavation-proof-grid strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.08;
}

.excavation-proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.36;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 200, 75, 0.24), transparent 28%),
    linear-gradient(135deg, #fff8eb 0%, #f4ece6 42%, #eadde0 100%);
  color: var(--ink);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(116, 67, 84, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), transparent 62%);
}

.about-copy,
.about-panel {
  position: relative;
  z-index: 1;
}

.about-copy {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.about-copy .eyebrow {
  background: rgba(116, 67, 84, 0.1);
  color: var(--maroon);
}

.about-copy h2 {
  max-width: 640px;
  color: var(--maroon-deep);
}

.about-copy p {
  max-width: 720px;
  margin: 0;
  color: #4e4141;
  font-size: 17px;
  line-height: 1.58;
}

.about-note {
  position: relative;
  max-width: 650px;
  margin-top: 6px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.66);
  padding: 16px 18px;
  box-shadow: 0 16px 42px rgba(116, 67, 84, 0.1);
}

.about-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--maroon);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-note strong {
  display: block;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.16;
}

.about-panel {
  align-self: stretch;
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid rgba(116, 67, 84, 0.18);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(23, 25, 29, 0.04), rgba(50, 27, 37, 0.76)),
    url("assets/topdown-slab.jpg") center / cover;
  box-shadow: 0 28px 70px rgba(116, 67, 84, 0.2);
}

.about-panel span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(240, 200, 75, 0.92);
  color: var(--maroon-deep);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-panel strong {
  max-width: 390px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 0.98;
}

.about-panel p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.about-panel ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  display: grid;
  gap: 2px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.11);
  padding: 10px 12px;
  color: #fff;
  backdrop-filter: blur(8px);
}

.about-panel li b {
  font-size: 13px;
  line-height: 1.15;
}

.about-panel li span {
  width: auto;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.services-section {
  background: #fff;
  border-top: 1px solid #e5dfd7;
}

.service-list,
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-list article,
.trust-cards article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 17px;
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out), background 300ms var(--ease-out);
}

.service-list article::before,
.trust-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--maroon), var(--yellow));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms var(--ease-out);
}

.service-list article:hover,
.trust-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 67, 84, 0.3);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-list article:hover::before,
.trust-cards article:hover::before {
  transform: scaleY(1);
}

.service-list h3,
.trust-cards h3 {
  margin: 0;
  color: var(--maroon);
  font-size: 17px;
}

.service-list p,
.trust-cards p {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.42;
}

.trust-section {
  background: var(--paper);
}

.contact-section {
  position: relative;
  overflow: hidden;
  align-items: start;
  padding: clamp(32px, 5vw, 54px) clamp(22px, 5vw, 62px);
  background: var(--maroon-deep);
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 16px),
    linear-gradient(90deg, rgba(116, 67, 84, 0.42), transparent 62%);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow {
  background: rgba(240, 200, 75, 0.13);
  color: var(--yellow);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.estimate-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.estimate-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.estimate-form label span,
.consent-line span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.estimate-form .full {
  grid-column: 1 / -1;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 11px 12px;
  outline: none;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.estimate-form textarea {
  min-height: 118px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240, 200, 75, 0.22);
}

.consent-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.consent-line input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  accent-color: var(--yellow);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-actions .button,
.estimate-form button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.estimate-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.privacy-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.privacy-note a {
  color: #fff;
  font-weight: 900;
}

.contact-actions {
  grid-column: 1;
}

.facebook-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px clamp(18px, 5vw, 62px);
  background: #17191d;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  text-decoration: none;
}

.privacy-main {
  display: grid;
  gap: 0;
}

.privacy-hero,
.privacy-content,
.thanks-section {
  padding: clamp(36px, 6vw, 76px) clamp(22px, 6vw, 78px);
}

.privacy-hero,
.thanks-section {
  background:
    repeating-linear-gradient(115deg, rgba(23, 25, 29, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.privacy-hero h1,
.thanks-section h1 {
  max-width: 820px;
}

.privacy-hero p,
.thanks-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 620;
}

.privacy-content {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.82fr);
  gap: clamp(22px, 4vw, 52px);
  background: #fff;
  border-top: 1px solid #e5dfd7;
}

.privacy-aside {
  position: sticky;
  top: 138px;
  align-self: start;
  display: grid;
  gap: 14px;
  border-left: 4px solid var(--maroon);
  background: #fbfaf7;
  padding: 18px;
}

.privacy-aside strong {
  color: var(--maroon);
  font-size: 18px;
}

.privacy-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.privacy-card {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.privacy-card section {
  border-bottom: 1px solid #ece6dd;
  padding-bottom: 22px;
}

.privacy-card section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-card h2 {
  margin: 0 0 9px;
  color: var(--maroon);
  font-size: clamp(22px, 2.2vw, 30px);
}

.privacy-card p,
.privacy-card li {
  color: #3f474d;
  font-size: 16px;
  font-weight: 560;
  line-height: 1.62;
}

.privacy-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.back-link {
  width: fit-content;
  text-decoration: none;
}

.sticky-call {
  display: none;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 520ms var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .feature-photo.reveal-item,
.motion-ready .hero-thumbs figure.reveal-item,
.motion-ready .portfolio-grid figure.reveal-item {
  transform: translateY(20px) scale(0.985);
}

.motion-ready .about-copy > .reveal-item {
  transform: translateX(-16px);
}

.motion-ready .about-panel.reveal-item {
  transform: translateX(18px) scale(0.99);
}

.motion-ready .about-panel li.reveal-item,
.motion-ready .service-list article.reveal-item,
.motion-ready .trust-cards article.reveal-item {
  transform: translateY(16px) scale(0.99);
}

.motion-ready .contact-section > .reveal-item {
  transform: translateY(16px) scale(0.995);
}

.motion-ready .scroll-section {
  transition: background-position 900ms var(--ease-out);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.motion-ready .hero::before {
  animation: lineWake 1100ms var(--ease-out) both 220ms;
}

.motion-ready .button-primary {
  animation: quietPulse 4600ms ease-in-out infinite;
}

@keyframes lineWake {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  to {
    opacity: 0.42;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes quietPulse {
  0%, 70%, 100% {
    box-shadow: 0 0 0 rgba(116, 67, 84, 0);
  }
  82% {
    box-shadow: 0 0 0 8px rgba(116, 67, 84, 0.12);
  }
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .services-section,
  .about-section,
  .excavation-section,
  .excavation-showcase,
  .trust-section,
  .contact-section,
  .privacy-content {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-media {
    height: auto;
    min-height: 0;
    grid-template-rows: minmax(320px, 48vw) auto;
  }

  .feature-photo,
  .feature-photo img {
    min-height: 320px;
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    border: 1px solid #e5dfd7;
    background: #fff;
    padding: 12px;
    box-shadow: 0 20px 44px rgba(23, 25, 29, 0.16);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 10px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 4px;
    border: 1px solid rgba(116, 67, 84, 0.46);
    border-radius: 6px;
    background: rgba(116, 67, 84, 0.07);
    transition: border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--maroon);
    transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
  }

  .menu-toggle.is-open {
    border-color: rgba(116, 67, 84, 0.46);
    box-shadow: 0 12px 28px rgba(116, 67, 84, 0.16);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .proof-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 22px;
  }

  .proof-strip div {
    min-height: 104px;
    padding: 16px 14px;
  }

  .proof-strip span {
    font-size: 14px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid figure.large {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
  }

  .logo-link {
    min-width: 0;
  }

  .logo-crop {
    width: min(190px, calc(100vw - 104px));
    height: auto;
  }

  .menu-toggle {
    flex: none;
  }

  .header-phone {
    display: none;
  }

  .hero,
  .hero-copy,
  .hero-media,
  .feature-photo,
  .work-section,
  .excavation-section,
  .services-section,
  .about-section,
  .trust-section,
  .contact-section {
    width: 100%;
    max-width: 100vw;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-panel {
    min-height: 300px;
  }

  .portfolio-grid,
  .comparison-grid,
  .form-grid,
  .service-list,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 18px;
  }

  .proof-strip div {
    min-height: 96px;
  }

  .estimate-form {
    padding: 16px;
  }

  .form-actions .button,
  .estimate-form button {
    width: 100%;
  }

  .ba-slider {
    min-height: 300px;
    aspect-ratio: 3 / 4;
  }

  .comparison-copy,
  .excavation-proof-grid div {
    padding: 15px;
  }

  .excavation-section {
    padding: 36px 18px;
  }

  .excavation-hero-card {
    min-height: 430px;
  }

  .excavation-proof-grid article {
    grid-template-columns: 1fr;
  }

  .excavation-proof-grid img {
    height: 250px;
  }

  .hero-thumbs {
    grid-template-columns: 1fr;
  }

  .hero-thumbs img {
    height: 190px;
  }

  h1 {
    width: min(calc(100vw - 44px), 346px);
    max-width: min(calc(100vw - 44px), 346px);
    font-size: clamp(34px, 10vw, 42px);
    overflow-wrap: break-word;
  }

  .hero-copy {
    padding: 34px 22px;
  }

  .hero-copy > * {
    max-width: min(calc(100vw - 44px), 346px);
  }

  .hero-lede {
    width: min(calc(100vw - 44px), 346px);
    max-width: min(calc(100vw - 44px), 346px);
    font-size: 16px;
  }

  .quote-card {
    width: min(calc(100vw - 44px), 346px);
    max-width: min(calc(100vw - 44px), 346px);
  }

  .quote-chips {
    align-items: flex-start;
  }

  .quote-chips span {
    max-width: 100%;
  }

  .sticky-call {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    border: 1px solid rgba(23, 25, 29, 0.16);
    border-radius: 8px;
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 15px;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(23, 25, 29, 0.24);
  }

  .sticky-call::after {
    content: "";
    position: absolute;
    inset: -70% auto -70% -42%;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    animation: sticky-call-shine 4.8s var(--ease-out) infinite;
    transform: translateX(-160%) rotate(18deg);
  }

  .sticky-call span,
  .sticky-call strong {
    position: relative;
    z-index: 1;
  }

  .sticky-call span {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .sticky-call strong {
    flex: none;
    font-size: 16px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
  }
}

@keyframes sticky-call-shine {
  0%,
  68% {
    transform: translateX(-160%) rotate(18deg);
  }

  100% {
    transform: translateX(620%) rotate(18deg);
  }
}

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

  .motion-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}
