:root {
  --bg: #f4f5f2;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-soft: #eef3ed;
  --surface-deep: #123f24;
  --ink: #1d2b21;
  --muted: #607064;
  --line: rgba(29, 43, 33, 0.12);
  --brand: #149347;
  --brand-deep: #0f7436;
  --accent: #829183;
  --shadow: 0 16px 32px rgba(18, 45, 27, 0.08);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f8f6 0%, #f2f4f1 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(24, 48, 33, 0.08);
}

.topbar {
  background: var(--surface-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.topbar-shell,
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-shell {
  min-height: 42px;
}

.topbar-shell p {
  margin: 0;
}

.topbar-actions span {
  color: rgba(255, 255, 255, 0.68);
}

.topbar-actions a {
  color: #fff;
  font-weight: 700;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 14px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.site-nav a,
.button,
h1,
h2,
h3 {
  font-family: "Archivo", sans-serif;
}

.brand-copy strong {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--brand-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-solid {
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
}

.button-outline {
  background: #fff;
  border-color: rgba(24, 48, 33, 0.16);
}

.hero {
  padding: 28px 0 24px;
}

.hero-grid,
.booking-grid,
.qr-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  padding: 26px 0 10px;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.booking-copy p,
.hero-card-copy,
.qr-target,
.feature-card p,
.form-status {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span,
.mini-list li,
.checklist li {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(24, 48, 33, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.feature-card,
.service-card,
.review-card,
.result-card,
.qr-card,
.booking-form,
.contact-card,
.booking-note {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(24, 48, 33, 0.09);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  display: grid;
  align-self: start;
}

.hero-card-media {
  padding: 24px 24px 0;
}

.hero-photo-stack {
  position: relative;
  min-height: 250px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #e7efe5 0%, #d3e2cf 48%, #b7cfb5 100%);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-photo-primary {
  inset: 18px 118px 22px 18px;
  background-image:
    linear-gradient(180deg, rgba(24, 48, 33, 0.04), rgba(24, 48, 33, 0.24)),
    url("assets/jobs/front-bed-after.jpeg");
}

.hero-photo-secondary {
  right: 18px;
  bottom: 16px;
  width: 170px;
  height: 132px;
  background-image:
    linear-gradient(180deg, rgba(24, 48, 33, 0.08), rgba(24, 48, 33, 0.3)),
    url("assets/jobs/tree-bed-angle-after.jpeg");
  border: 6px solid rgba(255, 255, 255, 0.9);
}

.hero-card-top,
.hero-card-note {
  padding: 22px 24px 0;
}

.hero-card-top h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 24px;
}

.hero-card-metrics article {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.metric-number {
  display: block;
  margin-bottom: 6px;
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-list,
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.section {
  padding: 68px 0;
}

.feature-strip {
  padding-top: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 18px;
}

.feature-card {
  padding: 28px;
}

.feature-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.review-card {
  padding: 26px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: rgba(45, 106, 58, 0.12);
  color: var(--brand-deep);
  font-size: 1.35rem;
}

.service-card h3,
.review-card h3,
.result-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.service-card p,
.review-card p,
.result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.alt-section,
.booking-section {
  background: linear-gradient(180deg, #f1f4f1 0%, #ebf0eb 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.result-card {
  overflow: hidden;
}

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-panel {
  min-height: 250px;
  padding: 18px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.result-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 24, 16, 0.08) 0%, rgba(14, 24, 16, 0.22) 100%);
}

.result-panel::after {
  content: attr(data-label);
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 49, 37, 0.78);
  color: #fffaf2;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-before {
  background-image:
    linear-gradient(135deg, rgba(105, 100, 84, 0.42), rgba(74, 61, 45, 0.22)),
    linear-gradient(180deg, #8d9576 0%, #6d604a 100%);
}

.result-after {
  background-image:
    linear-gradient(135deg, rgba(31, 141, 65, 0.24), rgba(26, 62, 24, 0.12)),
    linear-gradient(180deg, #8fd078 0%, #2a6b2f 100%);
}

.result-copy {
  padding: 22px 22px 24px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.review-author {
  font-size: 0.96rem;
  color: var(--muted);
  margin-top: 14px;
}

.qr-card {
  display: grid;
  place-items: center;
  padding: 28px;
}

.qr-card img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 18px;
  background: white;
  padding: 16px;
}

.booking-copy {
  align-self: start;
}

.booking-note,
.contact-card {
  margin-top: 22px;
  padding: 24px;
}

.contact-line {
  display: block;
  margin-top: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.booking-form {
  padding: 28px;
}

.booking-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--ink);
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(45, 106, 58, 0.2);
  border-color: rgba(45, 106, 58, 0.38);
}

.submit-button {
  width: 100%;
  margin-top: 6px;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(23, 32, 25, 0.08);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.footer-grid p,
.footer-links {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

@media (max-width: 1080px) {
  .feature-grid,
  .hero-grid,
  .booking-grid,
  .qr-grid,
  .results-grid,
  .services-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .topbar-shell,
  .topbar-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .topbar-shell {
    padding: 10px 0;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .nav-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 24px;
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-photo-primary {
    inset: 18px 18px 102px 18px;
  }

  .hero-photo-secondary {
    right: 18px;
    bottom: 18px;
    width: 140px;
    height: 110px;
  }

  .result-images {
    grid-template-columns: 1fr;
  }

  .result-panel {
    min-height: 210px;
  }
}
