@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap");

:root {
  --font-main: "Montserrat", Arial, Helvetica, sans-serif;
  --ink: #151716;
  --coal: #242823;
  --steel: #44505a;
  --line: #ded9ce;
  --paper: #f2f0ea;
  --surface: #f7f4ed;
  --surface-strong: #ffffff;
  --white: #ffffff;
  --gold: #b1833e;
  --gold-deep: #7a5525;
  --green: #51664b;
  --green-bright: #617556;
  --accent-shape: rgba(81, 102, 75, 0.76);
  --accent-shape-soft: rgba(81, 102, 75, 0.28);
  --glass-fill: rgba(255, 255, 255, 0.46);
  --glass-edge: rgba(255, 255, 255, 0.72);
  --clay: #7c6555;
  --shade: rgba(83, 76, 64, 0.22);
  --shade-soft: rgba(83, 76, 64, 0.13);
  --light: rgba(255, 255, 255, 0.92);
  --neo-raised: 14px 14px 32px var(--shade), -12px -12px 26px var(--light);
  --neo-soft: 8px 8px 18px var(--shade-soft), -7px -7px 16px var(--light);
  --neo-inset: inset 7px 7px 14px rgba(83, 76, 64, 0.17), inset -7px -7px 14px rgba(255, 255, 255, 0.78);
  --shadow: var(--neo-raised);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

@keyframes imageSettle {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    linear-gradient(135deg, #e8e3d8 0%, var(--paper) 42%, #ffffff 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  --active-left: 0px;
  --active-width: 0px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(21, 23, 22, 0.08);
  box-shadow: 0 14px 34px rgba(48, 42, 32, 0.1);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
  animation: riseIn 0.55s ease both;
}

.site-header::after {
  position: absolute;
  left: var(--active-left);
  bottom: 0;
  width: var(--active-width);
  height: 3px;
  content: "";
  background: var(--gold-deep);
  transition: left 0.24s ease, width 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(48, 42, 32, 0.09);
}

.top-nav {
  max-height: 30px;
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  transition: max-height 0.24s ease, opacity 0.24s ease;
}

.site-header.is-scrolled .top-nav {
  max-height: 0;
  opacity: 0;
}

.top-nav-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
}

.top-nav i {
  color: #d7b36e;
  font-size: 0.84rem;
}

.nav-shell {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0;
  transition: min-height 0.24s ease, padding 0.24s ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 50px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 100;
  letter-spacing: 0;
  color: var(--coal);
}

.brand img {
  width: 150px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 6px;
  transition: width 0.24s ease, padding 0.24s ease;
}

.site-header.is-scrolled .brand img {
  width: 104px;
  padding: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header.is-scrolled .nav-links {
  align-self: center;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  width: 46px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(21, 23, 22, 0.06);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 6px 6px 16px rgba(72, 62, 48, 0.12), -6px -6px 14px rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--coal);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--coal);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 23, 22, 0.04);
  box-shadow: 6px 6px 16px rgba(72, 62, 48, 0.1), -6px -6px 14px rgba(255, 255, 255, 0.78);
  transition: min-height 0.24s ease, padding 0.24s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .nav-links a {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--coal);
  color: var(--white);
  box-shadow: 8px 8px 18px rgba(21, 23, 22, 0.18), -5px -5px 14px rgba(255, 255, 255, 0.72);
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: 60% center;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: rgba(21, 23, 22, 0.42);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: clamp(22px, 6vw, 96px);
  bottom: clamp(36px, 9vw, 128px);
  width: clamp(150px, 22vw, 310px);
  height: clamp(96px, 14vw, 190px);
  content: "";
  border-radius: 150px 8px 8px 8px;
  background: var(--accent-shape);
  mix-blend-mode: soft-light;
  opacity: 0.78;
  pointer-events: none;
  animation: softFloat 7s ease-in-out infinite alternate;
}

.home-hero {
  min-height: min(760px, calc(100vh - 88px));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 14, 0.94) 0%, rgba(13, 15, 14, 0.74) 42%, rgba(13, 15, 14, 0.2) 78%),
    linear-gradient(180deg, rgba(21, 23, 22, 0.2) 0%, rgba(21, 23, 22, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 32px));
  min-width: 0;
  margin: 0 auto 0 max(16px, calc((100vw - 1160px) / 2));
  padding: 72px 0 108px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-content > *,
.page-heading > * {
  animation: riseIn 0.7s ease both;
}

.hero-content > *:nth-child(2),
.page-heading > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-content > *:nth-child(3),
.page-heading > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-content > *:nth-child(4),
.page-heading > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-content > *:nth-child(5) {
  animation-delay: 0.32s;
}

.hero-content::before {
  display: none;
  width: 0;
  height: 0;
  margin-bottom: 0;
  content: "";
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  border-radius: 0;
  background: var(--green-bright);
  box-shadow: none;
}

.hero-content .eyebrow,
.cta-band .eyebrow,
.image-cta .eyebrow {
  color: #d7b36e;
}

.hero-content .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 16ch;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  display: -webkit-box;
  overflow: hidden;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  overflow-wrap: break-word;
}

.home-hero h1 {
  font-weight: 600;
}

.hero-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.hero-service-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-service-strip i {
  color: #d7b36e;
  font-size: 0.95rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #c2934c, var(--gold-deep));
  color: var(--white);
  box-shadow: 9px 9px 18px rgba(56, 41, 23, 0.32), -5px -5px 16px rgba(255, 255, 255, 0.17);
}

.btn-light {
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.28), -6px -6px 18px rgba(255, 255, 255, 0.12);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 9px 9px 18px rgba(35, 28, 18, 0.24), -7px -7px 18px rgba(255, 255, 255, 0.38);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: var(--neo-inset);
}

.quick-strip {
  padding: 28px 0;
  background: var(--white);
  color: var(--ink);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-grid div {
  position: relative;
  min-height: 132px;
  padding: 26px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--glass-fill);
  border: 1px solid var(--glass-edge);
  box-shadow: 16px 16px 34px rgba(66, 57, 44, 0.18), -12px -12px 28px rgba(255, 255, 255, 0.78), inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -22px 36px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.quick-grid div::before {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 118px;
  height: 96px;
  content: "";
  border-radius: 88px 0 8px 0;
  background: var(--accent-shape-soft);
  box-shadow: none;
}

.quick-grid div:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(21, 23, 22, 0.98), rgba(47, 54, 45, 0.95));
  color: var(--white);
  box-shadow: 12px 12px 26px rgba(23, 23, 23, 0.22), -10px -10px 24px rgba(255, 255, 255, 0.7);
}

.quick-grid strong,
.quick-grid span {
  position: relative;
  z-index: 1;
  display: block;
}

.quick-grid strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.quick-grid span {
  color: var(--steel);
}

.quick-grid div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 84px 0;
  background: var(--white);
}

.section-muted {
  background:
    linear-gradient(135deg, #e8e4dc 0%, #f3f0e9 100%);
}

.section-overlay {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-overlay::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: rgba(21, 23, 22, 0.05);
}

.section-overlay::after {
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2));
  bottom: -84px;
  z-index: 0;
  width: clamp(170px, 18vw, 260px);
  height: clamp(150px, 16vw, 230px);
  content: "";
  border-radius: 160px 8px 0 0;
  background: var(--accent-shape-soft);
  pointer-events: none;
  animation: softFloat 8s ease-in-out infinite alternate;
}

.section-overlay > .container {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.split p:last-child,
.about-copy p,
.page-heading p {
  color: var(--steel);
  font-size: 1.05rem;
}

.split p:last-child {
  margin-bottom: 0;
  padding: 28px;
  border-radius: 8px;
  border-left: 5px solid var(--green-bright);
  background:
    linear-gradient(145deg, rgba(21, 23, 22, 0.98), rgba(48, 55, 47, 0.94));
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--neo-raised);
}

.home-about .about-copy .btn {
  width: fit-content;
  margin-top: 10px;
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.image-card,
.service-detail,
.compact-services article,
.value-grid article,
.contact-panel,
.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--neo-raised);
}

.image-card,
.value-grid article,
.contact-panel,
.quote-form,
.service-feature,
.service-tile,
.service-mini-grid article {
  position: relative;
  overflow: hidden;
  background: var(--glass-fill);
  border: 1px solid var(--glass-edge);
  box-shadow: 18px 18px 40px rgba(66, 57, 44, 0.18), -14px -14px 30px rgba(255, 255, 255, 0.76), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -28px 44px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(1.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.image-card::before,
.value-grid article::before,
.contact-panel::before,
.quote-form::before,
.service-feature::before,
.service-tile::before,
.service-mini-grid article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 12px 12px 26px rgba(255, 255, 255, 0.28), inset -18px -18px 36px rgba(81, 102, 75, 0.08);
}

.image-card > *,
.value-grid article > *,
.contact-panel > *,
.quote-form > *,
.service-feature > *,
.service-tile > *,
.service-mini-grid article > * {
  position: relative;
  z-index: 1;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card::after,
.value-grid article::after,
.contact-panel::after,
.quote-form::after,
.service-feature::after,
.service-tile::after,
.service-mini-grid article::after {
  position: absolute;
  top: auto;
  right: -34px;
  bottom: -42px;
  width: 132px;
  height: 102px;
  z-index: 0;
  content: "";
  border-radius: 96px 0 8px 0;
  background: var(--accent-shape-soft);
  box-shadow: none;
  pointer-events: none;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.55s ease;
  animation: imageSettle 0.8s ease both;
}

.about-image img,
.service-feature img,
.service-tile img,
.service-detail img,
.image-cta-card img {
  transition: transform 0.55s ease;
}

.image-card:hover,
.value-grid article:hover,
.service-feature:hover,
.service-tile:hover,
.service-detail:hover,
.service-mini-grid article:hover,
.mission-card:hover,
.contact-panel:hover,
.quote-form:hover {
  transform: translateY(-5px);
  box-shadow: 20px 22px 44px rgba(66, 57, 44, 0.22), -13px -13px 28px rgba(255, 255, 255, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -28px 44px rgba(255, 255, 255, 0.16);
}

.image-card:hover img,
.service-feature:hover img,
.service-tile:hover img,
.service-detail:hover img,
.about-image:hover img,
.image-cta-card:hover img {
  transform: scale(1.035);
}

.image-card div {
  padding: 22px;
}

.image-card p,
.value-grid p,
.compact-services p,
.service-detail p,
.contact-list p {
  color: var(--steel);
}

.image-card.service-card-dark,
.service-tile.service-card-dark {
  background: var(--coal);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: 14px 14px 34px rgba(21, 23, 22, 0.24), -12px -12px 28px rgba(255, 255, 255, 0.66), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.image-card.service-card-dark::before,
.service-tile.service-card-dark::before {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 12px 12px 26px rgba(255, 255, 255, 0.06), inset -18px -18px 36px rgba(0, 0, 0, 0.14);
}

.image-card.service-card-dark::after,
.service-tile.service-card-dark::after {
  background: rgba(177, 131, 62, 0.28);
}

.image-card.service-card-dark h3,
.service-tile.service-card-dark h2 {
  color: var(--white);
}

.image-card.service-card-dark p,
.service-tile.service-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.values {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.values-single {
  grid-template-columns: 0.62fr 1.38fr;
}

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

.value-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--glass-fill);
}

.mission-vision-section {
  position: relative;
  overflow: hidden;
}

.mission-vision-section::after {
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2));
  bottom: -78px;
  width: clamp(180px, 20vw, 290px);
  height: clamp(140px, 16vw, 230px);
  content: "";
  border-radius: 150px 8px 0 0;
  background: var(--accent-shape-soft);
  pointer-events: none;
}

.mission-vision {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mission-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--glass-edge);
  border-radius: 8px;
  background: var(--glass-fill);
  box-shadow: 18px 18px 40px rgba(66, 57, 44, 0.18), -14px -14px 30px rgba(255, 255, 255, 0.76), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -28px 44px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(1.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.22);
}

.mission-card::before,
.mission-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.mission-card::before {
  right: -54px;
  bottom: -58px;
  width: 170px;
  height: 132px;
  border-radius: 120px 0 8px 0;
  background: var(--accent-shape-soft);
}

.mission-card::after {
  top: 0;
  left: 0;
  width: 92px;
  height: 8px;
  background: var(--green-bright);
}

.mission-card > * {
  position: relative;
  z-index: 1;
}

.mission-card p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--steel);
}

.mission-card-dark {
  background: var(--coal);
  color: var(--white);
  box-shadow: 14px 14px 34px rgba(21, 23, 22, 0.22), -12px -12px 28px rgba(255, 255, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mission-card-dark::before {
  background: rgba(177, 131, 62, 0.26);
}

.mission-card-dark p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.mission-card-dark .value-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #d7b36e;
  box-shadow: inset 7px 7px 14px rgba(0, 0, 0, 0.18), inset -7px -7px 14px rgba(255, 255, 255, 0.08);
}

.value-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 23, 22, 0.96), rgba(63, 76, 57, 0.92));
  color: #d7b36e;
  font-size: 1.55rem;
  box-shadow: 8px 8px 18px rgba(21, 23, 22, 0.18), -7px -7px 16px rgba(255, 255, 255, 0.82);
}

.value-icon i {
  line-height: 1;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: var(--white);
  background: var(--coal);
  box-shadow: inset 14px 14px 28px rgba(0, 0, 0, 0.22), inset -10px -10px 26px rgba(255, 255, 255, 0.05);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.cta-band::before {
  top: -96px;
  left: max(-38px, calc((100vw - 1160px) / 2 - 92px));
  width: clamp(190px, 21vw, 310px);
  height: clamp(155px, 17vw, 250px);
  border-radius: 0 0 180px 8px;
  background: rgba(81, 102, 75, 0.42);
}

.cta-band::after {
  right: max(18px, calc((100vw - 1160px) / 2));
  bottom: -74px;
  width: clamp(160px, 18vw, 260px);
  height: clamp(118px, 14vw, 200px);
  border-radius: 150px 8px 0 0;
  background: rgba(177, 131, 62, 0.28);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.image-cta {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background: var(--white);
}

.image-cta::after {
  position: absolute;
  left: max(18px, calc((100vw - 1160px) / 2));
  bottom: -86px;
  width: clamp(180px, 21vw, 300px);
  height: clamp(148px, 17vw, 240px);
  content: "";
  border-radius: 8px 160px 0 0;
  background: var(--accent-shape-soft);
  pointer-events: none;
}

.image-cta > .container {
  position: relative;
  z-index: 1;
}

.image-cta-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: var(--coal);
  color: var(--white);
  box-shadow: var(--neo-raised);
}

.image-cta-card-reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
}

.image-cta-card-reverse img {
  order: 2;
}

.image-cta-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.image-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(21, 23, 22, 0.96), rgba(47, 54, 45, 0.92)),
    rgba(122, 85, 37, 0.1);
}

.image-cta-copy h2 {
  margin-bottom: 14px;
}

.image-cta-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.image-cta-copy .btn {
  width: fit-content;
  margin-top: 10px;
}

.site-footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, #111312 0%, #1b1f1a 58%, #262015 100%);
  box-shadow: inset 0 16px 32px rgba(0, 0, 0, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.9fr) minmax(150px, 0.45fr);
  gap: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-column > span,
.footer-bottom span:first-child {
  color: #d7b36e;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a,
.footer-column span:not(:first-child) {
  display: block;
  overflow-wrap: anywhere;
}

.footer-column a,
.footer-column span:not(:first-child) {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.footer-bottom span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a {
  display: inline;
  color: var(--white);
  font-weight: 600;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.9), rgba(16, 18, 17, 0.62)),
    url("assets/hero.jpg") center / cover;
}

.page-hero::after {
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2));
  bottom: -58px;
  width: clamp(148px, 19vw, 260px);
  height: clamp(118px, 15vw, 210px);
  content: "";
  border-radius: 150px 8px 0 0;
  background: var(--accent-shape);
  mix-blend-mode: soft-light;
  opacity: 0.72;
  pointer-events: none;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.9), rgba(16, 18, 17, 0.54)),
    url("assets/service-welding-recycling.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.9), rgba(16, 18, 17, 0.56)),
    url("assets/service-paving-plastering.jpg") center / cover;
}

.page-heading {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 24px));
  max-width: none;
  margin-right: auto;
  margin-left: max(12px, calc((100vw - 1160px) / 2));
  text-align: left;
}

.page-heading h1 {
  max-width: 16ch;
}

.page-heading p {
  color: rgba(255, 255, 255, 0.83);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: stretch;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
}

.service-detail-grid {
  display: grid;
  gap: 22px;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.service-feature,
.service-tile,
.service-mini-grid article {
  border: 1px solid var(--glass-edge);
  border-radius: 8px;
  background: var(--glass-fill);
  box-shadow: 18px 18px 40px rgba(66, 57, 44, 0.18), -14px -14px 30px rgba(255, 255, 255, 0.76), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -28px 44px rgba(255, 255, 255, 0.18);
}

.map-frame {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--neo-raised);
}

.service-feature,
.service-tile {
  overflow: hidden;
  padding: 0;
}

.service-feature img,
.service-tile img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.service-feature img {
  aspect-ratio: 16 / 10;
}

.service-feature div {
  padding: 28px;
}

.service-stack {
  display: grid;
  gap: 24px;
}

.service-tile {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
}

.service-tile img {
  height: 100%;
  min-height: 190px;
}

.service-tile div {
  padding-right: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  overflow: hidden;
  align-items: center;
  padding: 0;
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.service-detail div {
  padding: 28px;
}

.compact-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compact-services article,
.service-mini-grid article {
  padding: 24px;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-mini-grid article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(21, 23, 22, 0.98), rgba(48, 55, 47, 0.94));
  color: var(--white);
}

.service-mini-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.contact-panel,
.quote-form {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--coal);
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(247, 244, 237, 0.84);
  color: var(--ink);
  font: inherit;
  box-shadow: var(--neo-inset);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(160, 122, 63, 0.28);
  outline-offset: 3px;
}

.quote-form textarea {
  resize: vertical;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.map-section p:last-child {
  color: var(--steel);
}

.map-section > div:first-child {
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 23, 22, 0.98), rgba(48, 55, 47, 0.94));
  color: var(--white);
  box-shadow: var(--neo-raised);
}

.map-section > div:first-child p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.map-frame {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.map-frame iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 6px;
  filter: grayscale(0.22) contrast(0.96);
  box-shadow: var(--neo-inset);
}

.map-link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--coal);
  color: var(--white);
  font-weight: 600;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .site-header::after {
    display: none;
  }

  .top-nav-inner {
    min-height: 34px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 4px 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-shell {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }

  .site-header.is-scrolled .nav-shell {
    min-height: auto;
    padding: 6px 0;
  }

  .brand {
    grid-row: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 10px;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 260px;
    padding: 10px 0 4px;
  }

  .nav-toggle:checked + .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .home-hero {
    min-height: 660px;
    background-position: 58% center;
  }

  .hero-content {
    width: min(660px, calc(100% - 24px));
    margin: 0 auto;
    padding: 68px 0 88px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(14, 14, 14, 0.9), rgba(14, 14, 14, 0.58));
  }

  .quick-grid,
  .split,
  .service-preview,
  .values,
  .values-single,
  .mission-vision,
  .about-layout,
  .compact-services,
  .contact-layout,
  .services-showcase,
  .service-mini-grid,
  .map-section,
  .footer-grid,
  .image-cta-card,
  .image-cta-card-reverse {
    grid-template-columns: 1fr;
  }

  .image-cta-card-reverse img {
    order: 0;
  }

  .about-image img {
    min-height: 320px;
  }

  .service-detail,
  .service-tile {
    grid-template-columns: 1fr;
  }

  .service-detail div {
    padding: 0 24px 24px;
  }

  .service-tile div {
    padding: 0 18px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-cta-copy .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand img {
    width: min(132px, 50vw);
    height: auto;
    padding: 4px;
  }

  .site-header.is-scrolled .brand img {
    width: min(90px, 38vw);
    padding: 3px;
  }

  .nav-shell {
    gap: 10px;
  }

  .nav-links a {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.88rem;
  }

  .hero,
  .home-hero {
    min-height: 610px;
  }

  .hero-content {
    padding: 54px 0 72px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
  }

  h2 {
    font-size: 2rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-service-strip {
    gap: 8px;
  }

  .hero-service-strip span {
    flex: 1 1 120px;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    padding: 72px 0 56px;
  }

  .quick-grid div,
  .image-card div,
  .value-grid article,
  .compact-services article,
  .contact-panel,
  .quote-form,
  .service-mini-grid article {
    padding: 20px;
  }

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

.is-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.is-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }

  .is-reveal {
    opacity: 1;
    transform: none;
  }
}
