:root {
  --forest: #17472b;
  --forest-dark: #082b18;
  --forest-soft: #dce8dd;
  --leaf: #4f8a5c;
  --sun: #d2a94d;
  --ink: #18201a;
  --muted: #687069;
  --paper: #f5f5f0;
  --white: #fff;
  --line: #d9ddd6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  cursor: pointer;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: 64px;
  line-height: 0.98;
}

:focus-visible {
  outline: 3px solid #86b790;
  outline-offset: 3px;
}

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

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--forest-dark);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline {
  border-color: #aab4aa;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* Header */
.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
}

.brand-symbol {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
}

.brand-symbol i {
  position: absolute;
  width: 14px;
  height: 9px;
  border: 2px solid #79c58a;
  border-radius: 100% 0 100% 0;
  transform-origin: right bottom;
}

.brand-symbol i:first-child {
  top: 2px;
  left: 0;
  transform: rotate(20deg);
}

.brand-symbol i:nth-child(2) {
  top: 1px;
  right: 0;
  transform: rotate(76deg);
}

.brand-symbol i:last-child {
  bottom: 2px;
  left: 8px;
  transform: rotate(-28deg);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: #89ce97;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-phone {
  display: grid;
  gap: 4px;
  text-align: right;
}

.header-phone strong {
  font-size: 15px;
}

.header-phone span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--forest-dark);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--forest-dark);
  background-image: url("assets/hero-wide.png");
  background-position: center;
  background-size: cover;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 10, 0.93) 0%, rgba(3, 18, 10, 0.7) 42%, rgba(3, 18, 10, 0.17) 76%),
    linear-gradient(0deg, rgba(3, 18, 10, 0.68), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 126px;
  padding-bottom: 38px;
}

.weather {
  width: max-content;
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 6px 14px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(9, 25, 16, 0.52);
  backdrop-filter: blur(14px);
}

.weather-sun {
  width: 36px;
  height: 36px;
  border: 2px solid #f4ca68;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(244, 202, 104, 0.1);
}

.weather div {
  display: grid;
  gap: 2px;
}

.weather strong {
  font-size: 21px;
}

.weather small,
.weather > span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.weather > span:last-child {
  grid-column: 1 / -1;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-copy {
  max-width: 770px;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-copy .eyebrow {
  color: #83d092;
}

.hero-copy h1 {
  margin-bottom: 26px;
  font-size: 82px;
  line-height: 0.92;
}

.hero-copy > p:last-of-type {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.55;
}

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

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.video-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-link > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.video-link small {
  color: rgba(255, 255, 255, 0.63);
}

.play {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.hero-facts {
  display: flex;
  gap: 34px;
}

.hero-facts span {
  max-width: 150px;
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
}

.hero-facts strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

/* Portfolio */
.portfolio-section {
  background: var(--paper);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid #cbd1ca;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
}

.filter-button.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

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

.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(19, 55, 31, 0.06);
}

.project-card[hidden] {
  display: none;
}

.project-visual {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: #cbd5ca;
}

.garden-before,
.garden-after,
.garden-after img {
  width: 100%;
  height: 100%;
}

.garden-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 200%;
  max-width: none;
  object-fit: fill;
}

.garden-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.garden-after img {
  width: 200%;
  max-width: none;
  object-fit: fill;
  transform: translateX(-50%);
}

.project-visual > input[type="range"] {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.garden-handle {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-dark);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.garden-handle::before {
  position: absolute;
  top: -100vh;
  bottom: -100vh;
  left: 50%;
  width: 2px;
  background: var(--white);
  content: "";
  transform: translateX(-50%);
}

.garden-label {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  padding: 6px 8px;
  border-radius: 3px;
  color: var(--white);
  background: rgba(7, 31, 17, 0.66);
  font-size: 11px;
}

.garden-label-before {
  left: 12px;
}

.garden-label-after {
  right: 12px;
}

.plan-toggle {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  color: var(--white);
  background: rgba(7, 31, 17, 0.72);
  font-size: 11px;
  font-weight: 750;
}

.site-plan {
  position: absolute;
  z-index: 6;
  inset: 12px;
  overflow: hidden;
  border: 1px solid rgba(23, 71, 43, 0.22);
  border-radius: 5px;
  background:
    linear-gradient(rgba(23, 71, 43, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 71, 43, 0.06) 1px, transparent 1px),
    #eff4ec;
  background-size: 22px 22px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-plan.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.site-plan > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-plan > button {
  position: absolute;
  z-index: 4;
  top: 9px;
  right: 9px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 19px;
}

.plan-house,
.plan-terrace,
.plan-lawn,
.plan-water {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid var(--forest);
  color: var(--forest-dark);
  font-size: 10px;
  font-weight: 750;
}

.plan-house {
  top: 12%;
  left: 12%;
  width: 44%;
  height: 27%;
  background: #d4d2c7;
}

.plan-terrace {
  top: 40%;
  left: 20%;
  width: 38%;
  height: 14%;
  background: #ddd2bd;
}

.plan-lawn {
  right: 10%;
  bottom: 12%;
  width: 44%;
  height: 42%;
  border-radius: 48% 42% 36% 50%;
  background: #b9d8b7;
}

.plan-water {
  right: 12%;
  bottom: 16%;
  width: 32%;
  height: 30%;
  border-color: #4d8792;
  border-radius: 50%;
  background: #b8dce1;
}

.plan-path {
  position: absolute;
  top: 34%;
  left: 48%;
  width: 35%;
  height: 42%;
  border-right: 12px solid #cabd9b;
  border-radius: 0 55% 45% 0;
  transform: rotate(16deg);
}

.plan-trees i {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #356f45;
  border-radius: 50%;
  background: #77a878;
}

.plan-trees i:first-child {
  top: 15%;
  right: 18%;
}

.plan-trees i:nth-child(2) {
  right: 8%;
  bottom: 11%;
}

.plan-trees i:nth-child(3) {
  bottom: 8%;
  left: 12%;
}

.plan-trees i:last-child {
  top: 54%;
  left: 8%;
}

.project-photo {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.project-body {
  padding: 20px;
}

.project-location {
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-body h3 {
  min-height: 58px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.project-meta span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 10px;
}

.project-meta b {
  color: var(--ink);
  font-size: 15px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Packages */
.packages-section {
  background: #e9eee7;
}

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

.package-card {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #cbd4ca;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.7);
}

.package-card.featured {
  border-color: var(--forest);
  box-shadow: 0 22px 50px rgba(23, 71, 43, 0.13);
  transform: translateY(-10px);
}

.package-card.is-selected {
  box-shadow: inset 0 0 0 2px var(--forest), 0 22px 50px rgba(23, 71, 43, 0.13);
}

.popular-label {
  margin: -30px -30px 24px;
  padding: 10px 30px;
  border-radius: 7px 7px 0 0;
  color: var(--white);
  background: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-leaf {
  color: var(--leaf);
  font-size: 28px;
}

.package-card h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.package-card header p {
  min-height: 70px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.package-price {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 30px;
}

.package-price small {
  margin-right: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.package-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--forest);
  content: "✓";
  font-weight: 850;
}

.package-button {
  width: 100%;
  margin-top: auto;
  border-color: #aeb8ae;
  background: transparent;
}

.package-card.is-selected .package-button {
  color: var(--white);
  background: var(--forest);
}

.consult-strip {
  min-height: 104px;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 7px;
  color: var(--white);
  background: var(--forest-dark);
}

.consult-strip img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.consult-strip > div {
  display: grid;
  gap: 5px;
}

.consult-strip strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.consult-strip span {
  color: rgba(255, 255, 255, 0.68);
}

/* Calculator */
.calculator-section {
  background: var(--white);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: 70px;
  align-items: start;
}

.calculator-copy {
  position: sticky;
  top: 100px;
}

.calculator-copy h2 {
  margin-bottom: 22px;
}

.calculator-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.calculator-note {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.calculator-note strong {
  color: var(--forest);
}

.calculator-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.calculator-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.calculator-controls,
.estimate-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.calculator-controls {
  padding: 28px;
}

.range-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  font-weight: 750;
}

.range-heading output {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
}

#area-range {
  --range-progress: 33.33%;
  width: 100%;
  height: 6px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(to right, var(--forest) var(--range-progress), #d6dbd4 var(--range-progress));
  appearance: none;
}

#area-range::-webkit-slider-thumb {
  width: 23px;
  height: 23px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
  appearance: none;
}

#area-range::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
}

.range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
}

.work-options {
  margin: 38px 0 0;
  padding: 0;
  border: 0;
}

.work-options legend {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 25px;
}

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

.work-grid label {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid #cbd2ca;
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.work-grid input {
  position: absolute;
  opacity: 0;
}

.work-grid i {
  position: relative;
  width: 38px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #aeb4ae;
  transition: background 180ms ease;
}

.work-grid i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform 180ms ease;
}

.work-grid input:checked ~ i {
  background: var(--forest);
}

.work-grid input:checked ~ i::after {
  transform: translateX(16px);
}

.work-grid label:has(input:checked) {
  border-color: #8aad91;
}

.estimate-card {
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.estimate-card > img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.estimate-card > div {
  padding: 24px;
}

.estimate-card p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.estimate-card > div > strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
}

.estimate-card > div > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.estimate-card dl {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.estimate-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.estimate-card dt {
  color: rgba(255, 255, 255, 0.62);
}

.estimate-card dd {
  margin: 0;
}

.estimate-card .button {
  width: 100%;
  color: var(--forest-dark);
  background: #a6d0aa;
}

.estimate-card small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  text-align: center;
}

/* Calendar */
.calendar-section {
  background: #edf1ea;
}

.season-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.season-tab {
  min-height: 76px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid #cbd3ca;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.52);
  text-align: left;
}

.season-tab span {
  font-weight: 800;
}

.season-tab small {
  color: var(--muted);
}

.season-tab.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.season-tab.is-active small {
  color: rgba(255, 255, 255, 0.66);
}

.season-panel {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px;
  padding: 30px;
  border: 1px solid #cbd3ca;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.55);
}

.season-copy h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
}

.season-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.season-copy > a {
  display: inline-flex;
  gap: 18px;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 750;
}

.season-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 26px;
}

.season-meter span {
  color: var(--muted);
  font-size: 11px;
}

.season-meter i {
  grid-column: 1 / -1;
  height: 4px;
  overflow: hidden;
  background: #d5dbd3;
}

.season-meter b {
  width: 34%;
  height: 100%;
  display: block;
  background: var(--forest);
  transition: width 260ms ease;
}

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

.season-task {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.season-task-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--forest-soft);
  font-size: 11px;
  font-weight: 850;
}

.season-task h4 {
  margin: 20px 0 10px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.season-task p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.season-task footer {
  margin-top: auto;
}

.season-task footer > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.task-progress {
  height: 3px;
  background: #dfe3dc;
}

.task-progress i {
  height: 100%;
  display: block;
  background: var(--forest);
}

/* Brief */
.brief-section {
  background: var(--paper);
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.brief-form,
.brief-aside {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.brief-form {
  padding: 28px;
}

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

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

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

.field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid #cdd3cc;
  border-radius: 4px;
  color: var(--ink);
  background: #fbfcf9;
  outline: 0;
}

.field textarea {
  min-height: 94px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
}

.field .is-invalid {
  border-color: #b64f3f;
}

.field-error {
  min-height: 14px;
  color: #a64234;
  font-size: 10px;
}

.upload-zone {
  min-height: 96px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 14px;
  border: 1px dashed #aeb9ad;
  border-radius: 5px;
  cursor: pointer;
}

.upload-zone.is-dragging {
  border-color: var(--forest);
  background: var(--forest-soft);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-zone > span:first-of-type {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 21px;
}

.upload-zone > span:nth-of-type(2) {
  display: grid;
  gap: 5px;
}

.upload-zone small {
  color: var(--muted);
}

.upload-zone button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 19px;
}

.appointment {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.appointment-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.appointment-heading > div {
  display: grid;
  gap: 4px;
}

.appointment-heading > div:last-child {
  text-align: right;
}

.appointment-heading span {
  color: var(--muted);
  font-size: 10px;
}

.date-scroller {
  display: grid;
  grid-template-columns: repeat(7, minmax(54px, 1fr));
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.date-option {
  min-height: 64px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid #ccd2cb;
  border-radius: 4px;
  background: var(--white);
}

.date-option span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.date-option.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.date-option.is-active span {
  color: rgba(255, 255, 255, 0.7);
}

.time-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.time-options button {
  min-height: 42px;
  border: 1px solid #ccd2cb;
  border-radius: 4px;
  background: var(--white);
}

.time-options button.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.appointment-error {
  min-height: 14px;
  display: block;
  margin-top: 8px;
  color: #a64234;
  font-size: 10px;
}

.consent {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--forest);
}

.submit-button {
  width: 100%;
  justify-content: space-between;
  margin-top: 14px;
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  min-height: 20px;
  margin-top: 11px;
  color: var(--forest);
  font-size: 12px;
  text-align: center;
}

.form-status.is-error {
  color: #a64234;
}

.brief-aside {
  overflow: hidden;
}

.brief-aside > img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.visit-list {
  display: grid;
  padding: 8px 24px;
}

.visit-list div {
  display: grid;
  gap: 5px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.visit-list div:last-child {
  border-bottom: 0;
}

.visit-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.region {
  display: grid;
  gap: 6px;
  margin: 0 18px 18px;
  padding: 18px;
  border-radius: 5px;
  color: var(--white);
  background: var(--forest-dark);
}

.region span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--forest-dark);
}

.footer-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.footer-inner > div {
  display: grid;
  gap: 4px;
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 5px;
  color: var(--white);
  background: var(--forest-dark);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1120px) {
  h2 {
    font-size: 54px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .hero-copy h1 {
    font-size: 70px;
  }

  .hero-facts {
    gap: 18px;
  }

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

  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .calculator-copy {
    position: static;
    max-width: 780px;
  }
}

@media (max-width: 860px) {
  h2 {
    font-size: 46px;
  }

  .container {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding: 86px 0;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(6, 35, 19, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 740px;
  }

  .hero-photo {
    object-position: 45% center;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

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

  .hero-facts {
    width: 100%;
    justify-content: space-between;
  }

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

  .package-card {
    min-height: 0;
  }

  .package-card.featured {
    transform: none;
  }

  .calculator-workspace {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .estimate-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .season-panel {
    grid-template-columns: 1fr;
  }

  .brief-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
    text-align: center;
  }

  .footer-inner > div {
    text-align: center;
  }
}

@media (max-width: 620px) {
  h2 {
    font-size: 40px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    object-position: 42% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 18, 10, 0.88), rgba(3, 18, 10, 0.3)),
      linear-gradient(0deg, rgba(3, 18, 10, 0.8), transparent 62%);
  }

  .weather {
    display: none;
  }

  .hero-copy {
    margin-top: 150px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-bottom {
    margin-top: auto;
  }

  .hero-facts {
    display: none;
  }

  .filter-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 6px;
    overflow-x: auto;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

  .project-visual,
  .project-photo {
    aspect-ratio: 1.12;
  }

  .consult-strip {
    grid-template-columns: 54px 1fr;
  }

  .consult-strip img {
    width: 54px;
    height: 54px;
  }

  .consult-strip .button {
    grid-column: 1 / -1;
  }

  .calculator-controls {
    padding: 22px;
  }

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

  .estimate-card {
    display: block;
  }

  .estimate-card > img {
    aspect-ratio: 1.55;
  }

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

  .season-panel {
    padding: 20px;
  }

  .season-tasks {
    grid-template-columns: 1fr;
  }

  .season-task {
    min-height: 230px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .brief-form {
    padding: 20px;
  }

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

  .appointment-heading > div:last-child {
    text-align: left;
  }

  .date-scroller {
    grid-template-columns: repeat(7, 54px);
  }

  .upload-zone {
    grid-template-columns: 40px 1fr auto;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
