:root {
  --ink: #17221d;
  --forest: #0f3328;
  --pine: #1d4a3b;
  --moss: #687b52;
  --soil: #67503d;
  --stone: #e9ece3;
  --paper: #fffaf1;
  --white: #ffffff;
  --ember: #c76034;
  --line: rgba(23, 34, 29, 0.14);
  --shadow: 0 18px 48px rgba(15, 51, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", sans-serif;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(9, 23, 18, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  padding: 6px 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 25, 18, 0.86) 0%, rgba(8, 25, 18, 0.56) 44%, rgba(8, 25, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 25, 18, 0.72) 0%, rgba(8, 25, 18, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  margin: auto auto 13vh clamp(18px, 7vw, 92px);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0;
  color: var(--ember);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b27e;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

.desktop-inline {
  display: inline;
}

.mobile-line {
  display: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

p {
  margin-bottom: 0;
}

.nowrap {
  white-space: nowrap;
}

.heading-stack span {
  display: block;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--white);
  background: var(--ember);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: min(760px, calc(100% - 36px));
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(10, 28, 21, 0.46);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
  scroll-margin-top: 96px;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 18px;
  color: rgba(23, 34, 29, 0.78);
  font-size: 17px;
}

.photo-section {
  background: var(--stone);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  color: rgba(23, 34, 29, 0.68);
  font-size: 17px;
}

.section-heading.compact {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.case-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-card.large {
  grid-row: span 2;
}

.case-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.case-card.large img {
  height: 600px;
}

.case-body {
  padding: 24px;
}

.case-body p:not(.tag) {
  color: rgba(23, 34, 29, 0.68);
}

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

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

.service-item {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-item svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--pine);
}

.service-item p {
  color: rgba(23, 34, 29, 0.66);
}

.proof-section {
  color: var(--white);
  background: var(--forest);
}

.proof-section .section-kicker {
  color: #f2b27e;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
}

.reason-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.reason-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.reason-list span {
  color: #f2b27e;
  font-weight: 900;
}

.reason-list h3 {
  margin-bottom: 6px;
}

.reason-list p {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-section {
  background: #f3efe5;
}

.asset-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr 0.8fr 0.8fr;
  gap: 12px;
  align-items: stretch;
}

.asset-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  background: var(--white);
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flow-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--pine);
  border-radius: 999px;
  font-weight: 900;
}

.flow-list p {
  color: rgba(23, 34, 29, 0.64);
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(rgba(15, 51, 40, 0.86), rgba(15, 51, 40, 0.86)),
    url("images/garden_work/01_pruned_residential_garden_after.jpg") center / cover;
}

.contact-section .section-kicker {
  color: #f2b27e;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-grid p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.contact-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.1);
  backdrop-filter: blur(12px);
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.contact-panel dl div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-row label,
.form-row legend {
  color: rgba(23, 34, 29, 0.84);
  font-size: 13px;
  font-weight: 900;
}

.form-row label span {
  margin-left: 8px;
  color: var(--ember);
  font-size: 11px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 34, 29, 0.2);
  border-radius: 8px;
  font: inherit;
  line-height: 1.5;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.file-upload {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.file-input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pine);
  border-radius: 8px;
  cursor: pointer;
}

.file-button svg {
  width: 17px;
  height: 17px;
}

.file-count {
  color: rgba(23, 34, 29, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--ember);
  outline: 3px solid rgba(199, 96, 52, 0.18);
}

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

.check-grid label {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: var(--white);
  border: 1px solid rgba(23, 34, 29, 0.15);
  border-radius: 8px;
}

.check-grid input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--ember);
}

.input-help,
.form-note,
.form-status {
  color: rgba(23, 34, 29, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.input-help {
  margin-top: -2px;
}

.form-status:empty {
  display: none;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.68);
  background: #0b1b15;
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    margin: auto 18px 118px;
  }

  .hero-proof {
    left: 18px;
    right: 18px;
    justify-content: flex-start;
  }

  .split-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .case-card.large {
    grid-row: auto;
  }

  .case-card img,
  .case-card.large img {
    height: 340px;
  }

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

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

@media (max-width: 620px) {
  body {
    line-height: 1.85;
  }

  .site-header {
    position: absolute;
  }

  .brand small {
    display: none;
  }

  .nav {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .desktop-inline {
    display: none;
  }

  .mobile-line {
    display: block;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  h3 {
    font-size: 18px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: auto 16px 132px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions,
  .panel-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    bottom: 18px;
    gap: 6px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .section {
    padding: 64px 0;
  }

  .case-card img,
  .case-card.large img {
    height: 300px;
  }

  .service-item,
  .flow-list li {
    min-height: auto;
  }

  .asset-strip,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .asset-strip img {
    height: 240px;
  }

  .reason-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 20px;
  }

  .reason-list p {
    grid-column: 1 / -1;
  }

  .contact-panel {
    padding: 20px;
  }

  .consult-form {
    padding: 20px;
  }

  .contact-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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