:root {
  --leaf: #245b3a;
  --leaf-dark: #123523;
  --moss: #7c9c4d;
  --gold: #dca642;
  --soil: #4b3627;
  --cream: #f7f4ec;
  --paper: #fffdf6;
  --ink: #172119;
  --muted: #5c6a60;
  --line: rgba(23, 33, 25, 0.14);
  --shadow: 0 18px 55px rgba(18, 53, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 25, 16, 0.86), rgba(10, 25, 16, 0.28));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--leaf-dark);
  background: var(--gold);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a,
.header-call {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav a:hover {
  color: var(--gold);
}

.header-call {
  justify-self: end;
  padding: 10px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  font-weight: 800;
}

.header-call:hover {
  color: var(--leaf-dark);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 26, 15, 0.88) 0%, rgba(8, 26, 15, 0.68) 38%, rgba(8, 26, 15, 0.16) 72%),
    linear-gradient(0deg, rgba(8, 26, 15, 0.56) 0%, rgba(8, 26, 15, 0.05) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
}

.button.primary {
  color: var(--leaf-dark);
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.primary:hover {
  background: #f1bd5b;
}

.button.secondary:hover {
  color: var(--leaf-dark);
  background: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 52px);
  background: var(--cream);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--leaf-dark);
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 10vw, 116px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-copy {
  max-width: 780px;
}

.services {
  border-top: 1px solid var(--line);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(18px, 4vw, 42px);
}

.service-showcase article {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.service-showcase article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 53, 35, 0.02), rgba(18, 53, 35, 0.9));
}

.service-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-showcase article:hover img {
  transform: scale(1.035);
}

.service-showcase div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.service-showcase span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--gold);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-showcase strong {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.service-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 25, 0.04);
}

.service-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.service-grid p,
.steps p,
.contact p {
  margin: 14px 0 0;
  color: var(--muted);
}

.photos {
  display: block;
  padding: clamp(58px, 9vw, 98px) clamp(18px, 6vw, 72px);
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photos-copy {
  max-width: 620px;
}

.photos-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--leaf-dark);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 53, 35, 0.14);
  aspect-ratio: 4 / 3;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.area-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 84px) clamp(18px, 6vw, 72px);
  color: #fff;
  background: var(--leaf-dark);
}

.area-band h2 {
  max-width: 760px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.area-list span {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 18px 10px;
  color: var(--leaf-dark);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  padding: 22px 0 22px 24px;
  border-left: 4px solid var(--gold);
}

.steps strong {
  color: var(--leaf-dark);
  font-size: 1.12rem;
}

.contact {
  padding: clamp(58px, 10vw, 108px) 18px;
  background:
    linear-gradient(120deg, rgba(36, 91, 58, 0.92), rgba(75, 54, 39, 0.9)),
    url("CalebBusinessCard.jpg") center/cover;
}

.contact-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 58px);
  color: #fff;
  background: rgba(18, 53, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.button.dark {
  color: var(--leaf-dark);
}

.button.light {
  color: #fff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.82);
  background: #0b2015;
  font-size: 0.95rem;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 26, 15, 0.88), rgba(8, 26, 15, 0.45)),
      linear-gradient(0deg, rgba(8, 26, 15, 0.65), rgba(8, 26, 15, 0.1));
  }

  .trust-strip,
  .intro,
  .area-band,
  .process {
    grid-template-columns: 1fr;
  }

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

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase article {
    aspect-ratio: 16 / 9;
  }

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

  .area-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }

  .brand strong {
    font-size: 0.91rem;
  }

  .brand small {
    display: none;
  }

  .header-call {
    padding: 9px 11px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

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

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

  .photo-grid figure {
    aspect-ratio: 1 / 1;
  }

  .service-showcase article {
    aspect-ratio: 4 / 3;
  }

  .service-grid article {
    min-height: 0;
  }

  .contact {
    padding-inline: 14px;
  }
}

/* Mobile Chrome service showcase fix: keep featured service images cropped cleanly. */
@media (max-width: 900px) {
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase article {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .service-showcase img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  .service-showcase article {
    aspect-ratio: 4 / 3;
  }
}
