:root {
  --bg: #f7f3eb;
  --bg-soft: #efe7d9;
  --surface: rgba(255, 253, 248, 0.94);
  --surface-strong: #fffdf9;
  --surface-tint: #f3ecdf;
  --ink: #1c251d;
  --muted: #5d655f;
  --line: rgba(27, 55, 32, 0.12);
  --line-strong: rgba(27, 55, 32, 0.2);
  --brand: #255332;
  --brand-strong: #17351f;
  --accent: #aa7a3d;
  --accent-soft: #f0e2c8;
  --shadow: rgba(63, 46, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(170, 122, 61, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(37, 83, 50, 0.1), transparent 28%),
    linear-gradient(180deg, #fcfaf5 0%, var(--bg) 52%, #ede3d2 100%);
}

a {
  color: inherit;
}

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

input,
select,
textarea,
button {
  font: inherit;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 18px 46px var(--shadow);
  backdrop-filter: blur(10px);
}

.topbar-brand {
  min-width: 0;
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.topbar-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.topbar-logo-copy {
  display: grid;
  gap: 3px;
}

.topbar-title,
.contact-card strong,
.service-card h3,
.process-step h3,
.section-heading h2,
.cta-panel h2,
.trust-card h3,
.availability-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.topbar-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar-note,
.mini-note,
.supporting-copy,
.contact-card p,
.service-card p,
.process-step p,
.trust-card p,
.availability-card p,
.availability-card li,
.photo-card figcaption,
.footer-note {
  color: var(--muted);
  line-height: 1.65;
}

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

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  padding: 42px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 38%),
    linear-gradient(140deg, rgba(255, 252, 246, 0.96), rgba(245, 238, 225, 0.92));
  box-shadow: 0 24px 60px var(--shadow);
  border-radius: 28px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 83, 50, 0.08), transparent 72%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--brand);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 12ch;
  font-size: clamp(3.1rem, 6.8vw, 5.8rem);
  line-height: 0.96;
  color: var(--brand-strong);
}

.lead {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.84;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.button-primary {
  border-color: rgba(40, 84, 54, 0.32);
  background: linear-gradient(135deg, #2d603d, #1b3b24);
  color: #f7f5f0;
  box-shadow: 0 16px 32px rgba(28, 57, 36, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-mark-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.96));
  box-shadow: 0 18px 40px rgba(44, 39, 26, 0.08);
  border-radius: 24px;
}

.hero-mark-panel img {
  width: min(100%, 220px);
  height: auto;
}

.contact-card,
.trust-card,
.availability-card,
.service-card,
.process-step,
.cta-panel,
.section-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(60, 44, 20, 0.08);
  border-radius: 24px;
}

.contact-card,
.availability-card {
  padding: 22px;
}

.contact-grid {
  display: grid;
  gap: 10px;
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-link {
  text-decoration: none;
}

.contact-link strong {
  font-size: 1.2rem;
  color: var(--brand-strong);
}

.section-panel {
  margin-top: 22px;
  padding: 30px;
}

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

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

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-label {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  resize: vertical;
}

.field textarea {
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(40, 84, 54, 0.22);
  border-color: rgba(40, 84, 54, 0.38);
}

.form-actions {
  display: grid;
  gap: 12px;
  align-items: start;
}

.form-button {
  border: 0;
  cursor: pointer;
}

.quote-honey {
  display: none;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--brand-strong);
}

.recent-work-panel {
  background:
    linear-gradient(135deg, rgba(37, 83, 50, 0.04), transparent 30%),
    var(--surface);
}

.work-gallery-shell {
  border: 1px solid var(--line);
  background: var(--surface-tint);
  border-radius: 22px;
  overflow: hidden;
}

.photo-strip {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  padding: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-left: 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-card {
  display: grid;
  gap: 12px;
  align-content: start;
  flex: 0 0 clamp(260px, 30vw, 360px);
  margin: 0;
  scroll-snap-align: start;
}

.photo-card-wide {
  flex-basis: clamp(320px, 42vw, 520px);
}

.photo-card img {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(47, 37, 20, 0.14);
}

.photo-card-wide img {
  height: clamp(280px, 34vw, 400px);
}

.photo-strip::-webkit-scrollbar {
  height: 10px;
}

.photo-strip::-webkit-scrollbar-track {
  background: rgba(28, 37, 29, 0.08);
}

.photo-strip::-webkit-scrollbar-thumb {
  background: rgba(37, 83, 50, 0.38);
  border-radius: 999px;
}

.service-grid,
.trust-grid,
.process-grid,
.availability-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.service-card,
.trust-card,
.process-step {
  padding: 22px;
}

.service-card h3,
.trust-card h3,
.process-step h3,
.availability-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  color: var(--brand-strong);
}

.service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: #7b5c2b;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

.process-step {
  position: relative;
  padding-top: 62px;
}

.process-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #f7f5f0;
  font-size: 0.84rem;
  font-weight: 700;
}

.availability-card ul {
  margin-bottom: 0;
  padding-left: 18px;
}

.cta-panel {
  margin-top: 22px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(40, 84, 54, 0.96), rgba(26, 48, 31, 0.96));
  color: #f7f5f0;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .mini-note {
  color: inherit;
}

.cta-panel .button {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  color: #f7f5f0;
}

.cta-panel .button-primary {
  background: #f0dec1;
  border-color: rgba(240, 222, 193, 0.64);
  color: #2b3e22;
}

.footer-note {
  margin: 16px 2px 0;
  font-size: 0.94rem;
}

.thanks-shell {
  align-items: center;
}

@media (max-width: 980px) {
  .hero,
  .quote-grid,
  .service-grid,
  .trust-grid,
  .process-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 13ch;
  }

  .photo-strip {
    gap: 16px;
  }

  .photo-card {
    flex-basis: 78vw;
  }

  .photo-card-wide {
    flex-basis: 84vw;
  }

  .photo-card img {
    height: clamp(280px, 56vw, 420px);
  }

  .photo-card-wide img {
    height: clamp(300px, 60vw, 440px);
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100%, calc(100% - 20px));
    padding-top: 12px;
  }

  .topbar,
  .hero,
  .section-panel,
  .cta-panel {
    padding: 22px;
  }

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

  .topbar-logo {
    align-items: start;
  }

  .hero-actions,
  .topbar-actions {
    width: 100%;
  }

  .photo-strip {
    gap: 14px;
    padding: 16px;
    scroll-padding-left: 16px;
  }

  .photo-card {
    flex-basis: 82vw;
  }

  .photo-card-wide {
    flex-basis: 86vw;
  }

  .photo-card figcaption {
    font-size: 0.92rem;
    line-height: 1.55;
  }

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