:root {
  --green-900: #173b24;
  --green-700: #315f2f;
  --green-600: #4f7d3a;
  --cream: #f7f3e8;
  --cream-2: #eef4e7;
  --text: #3f453f;
  --white: #ffffff;
  --line: rgba(23, 59, 36, .16);
  --shadow: 0 18px 45px rgba(23, 59, 36, .14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: linear-gradient(90deg, #092815, var(--green-900));
  color: var(--white);
  box-shadow: 0 8px 26px rgba(7, 27, 13, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .9;
}

.brand strong,
.brand em,
h1,
h2,
h3,
summary,
.button {
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 900;
}

.brand em {
  display: block;
  color: #98c36c;
  font-size: clamp(.8rem, 1.5vw, 1rem);
  font-style: normal;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: .88rem;
  font-weight: 800;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: #cce4af;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--green-600);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-pad {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  max-width: calc(var(--max) + 96px);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 630px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: .93;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.8rem, 8.5vw, 6.9rem);
}

h2 {
  font-size: clamp(2.35rem, 5.8vw, 4.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.hero p {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: .96rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

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

.button-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(79, 125, 58, .25);
}

.button-secondary {
  border-color: var(--green-600);
  background: transparent;
  color: var(--green-900);
}

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

.button-outline-light {
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}

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

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  color: var(--green-900);
  font-size: .88rem;
  font-weight: 900;
}

.mini-icon {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.mini-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero-visual picture,
.hero-visual img {
  display: block;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(23, 59, 36, .24);
}


.band {
  background: var(--cream-2);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p {
  margin: 16px auto 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.step-grid,
.pricing-grid,
.benefit-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 18px;
}

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

.step-card,
.price-card,
.benefit-grid article,
.next-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-card {
  position: relative;
  padding: 34px 26px 28px;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.step-card p,
.price-card p,
.benefit-grid p {
  margin: 12px 0 0;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(79, 125, 58, .55);
  background: linear-gradient(180deg, #fff 0%, #f4f9ed 100%);
}

.card-note {
  color: var(--green-600);
  font-size: .86rem;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.price-card li {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.addon-price {
  color: var(--green-600);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-disclaimer {
  max-width: 860px;
  margin: 24px auto 0;
  color: #586056;
  text-align: center;
  font-size: .95rem;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.area-copy p {
  margin: 18px 0 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.area-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--green-900);
  font-weight: 800;
}

.map-card {
  margin: 0;
}

.map-card svg {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f0dd;
  box-shadow: var(--shadow);
}

.map-card figcaption {
  margin-top: 10px;
  color: #5b6458;
  font-size: .9rem;
  text-align: center;
}

.map-shape {
  fill: #e8edd8;
  stroke: var(--green-600);
  stroke-width: 4;
}

.map-road,
.route,
.arrow {
  fill: none;
  stroke-linecap: round;
}

.map-road {
  stroke: #c4cba9;
  stroke-width: 3;
  stroke-dasharray: 12 10;
}

.route {
  stroke: var(--green-600);
  stroke-width: 4;
  stroke-dasharray: 10 10;
}

.map-trees {
  fill: #8eb264;
}

.map-water {
  fill: #a6d2c4;
}

.city circle {
  fill: var(--green-900);
}

.city text {
  fill: var(--green-900);
  font-size: 19px;
  font-weight: 900;
}

.arrow {
  stroke: var(--green-600);
  stroke-width: 4;
}

.approx {
  fill: var(--green-600);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-12deg);
  transform-origin: 444px 76px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid article {
  padding: 26px;
}

.benefit-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.faq-list {
  display: grid;
  max-width: 960px;
  margin: 0 auto;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 59, 36, .08);
}

summary {
  position: relative;
  min-height: 56px;
  padding: 16px 52px 16px 18px;
  color: var(--green-900);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 18px;
  top: 17px;
  content: "+";
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 59, 36, .92), rgba(23, 59, 36, .82)),
    radial-gradient(circle at 12% 25%, rgba(238, 244, 231, .38), transparent 23%),
    var(--green-900);
  color: var(--white);
}

.final-cta > * {
  max-width: var(--max);
}

.final-cta h2,
.final-cta h3 {
  color: var(--white);
}

.final-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.next-card {
  padding: 26px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  box-shadow: none;
}

.next-card ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  counter-reset: steps;
}

.next-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  counter-increment: steps;
}

.next-card li::before {
  content: counter(steps);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--green-900);
  font-weight: 900;
}

.next-card strong,
.next-card span {
  grid-column: 2;
}

.next-card strong {
  color: var(--white);
}

.next-card span {
  color: rgba(255,255,255,.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 30px;
  padding: 38px clamp(18px, 4vw, 48px) 28px;
  background: #082514;
  color: rgba(255,255,255,.82);
}

.site-footer > * {
  max-width: 420px;
}

.site-footer h2 {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer a {
  color: var(--white);
}

.city-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.city-hero > div,
.city-content {
  max-width: 820px;
}

.city-hero p:not(.local-label),
.city-content p {
  margin: 18px 0 0;
  font-size: clamp(1.03rem, 2vw, 1.16rem);
}

.local-label {
  margin: 0 0 14px;
  color: var(--green-600);
  font-weight: 900;
  text-transform: uppercase;
}

.city-hero-image,
.city-hero-image img {
  display: block;
}

.city-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 28px auto 0;
}

.local-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
}

.local-grid p {
  margin: 12px 0 0;
}

.local-edge .local-grid {
  margin-top: 0;
}

.local-edge article {
  border-top: 5px solid var(--green-600);
}

.local-steps {
  display: grid;
  gap: 14px;
  padding-left: 1.2rem;
  margin: 22px 0 0;
}

.city-content details {
  margin-top: 10px;
}

.footer-brand {
  margin-bottom: 12px;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .9rem;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.booking-hero p:not(.local-label) {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.booking-steps {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-steps h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
  line-height: 1.2;
}

.booking-steps ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  counter-reset: booking-steps;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  counter-increment: booking-steps;
}

.booking-steps li::before {
  content: counter(booking-steps);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.booking-steps strong,
.booking-steps span {
  grid-column: 2;
}

.booking-steps span {
  color: #5a6358;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
  gap: clamp(20px, 4vw, 34px);
  max-width: var(--max);
  margin: 0 auto;
}

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

.booking-panel,
.estimate-card,
.booking-confirmation {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: 24px;
}

.booking-panel legend {
  padding: 0 8px;
  color: var(--green-900);
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field,
.check-row {
  display: grid;
  gap: 8px;
}

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

.field span,
.check-row span {
  color: var(--green-900);
  font-size: .9rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 59, 36, .28);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--text);
  font: inherit;
}

.field input,
.field select {
  padding: 0 12px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(79, 125, 58, .2);
  border-color: var(--green-600);
}

.check-row {
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 59, 36, .28);
  border-radius: var(--radius);
  background: #fffefa;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-actions p {
  max-width: 520px;
  margin: 0;
  color: #5a6358;
  font-size: .94rem;
}

.button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.form-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--green-900);
  font-weight: 800;
}

.form-message.is-error {
  color: #9d2f24;
}

.estimate-card {
  position: sticky;
  top: 100px;
  padding: 26px;
}

.estimate-label {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-card output {
  display: block;
  color: var(--green-900);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.estimate-card p:not(.estimate-label) {
  margin: 16px 0 0;
}

.estimate-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.estimate-list span {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--green-900);
  font-size: .92rem;
  font-weight: 900;
}

.booking-confirmation {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 30px;
  text-align: center;
}

.booking-confirmation p {
  margin: 16px auto 0;
}

.booking-confirmation .button {
  margin-top: 22px;
}

.hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.admin-page {
  background: #eef4e7;
}

.admin-shell {
  width: min(1420px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 44px);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  min-height: 100vh;
}

.admin-login p:not(.local-label) {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1.1rem;
}

.admin-card,
.request-card,
.admin-stat,
.route-group,
.calendar-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
}

.admin-card {
  padding: 24px;
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-topbar,
.admin-section-head,
.request-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

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

.notification-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.notification-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.notification-card p {
  margin: 8px 0 0;
}

.notification-badge,
#notification-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: #f6ead8;
  color: #7a4d12;
  font-size: .86rem;
  font-weight: 900;
}

.notification-badge.is-active,
#notification-badge.is-active {
  background: var(--cream-2);
  color: var(--green-900);
}

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

.admin-stat {
  padding: 20px;
}

.admin-stat strong {
  display: block;
  color: var(--green-900);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
  line-height: .9;
}

.admin-stat span {
  display: block;
  margin-top: 8px;
  color: #5a6358;
  font-weight: 900;
}

.admin-section-head h2,
.admin-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.admin-section-head p {
  margin: 8px 0 0;
}

.admin-filter {
  width: min(240px, 100%);
}

.admin-controls {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(180px, 240px);
  gap: 12px;
  align-items: end;
}

.status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.status-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--green-900);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
}

.status-tab strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--cream-2);
  font-size: .8rem;
}

.status-tab.is-active {
  border-color: var(--green-600);
  background: var(--green-900);
  color: var(--white);
}

.status-tab.is-active strong {
  background: rgba(255,255,255,.18);
}

.request-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.request-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.request-card.is-new {
  border-left: 6px solid var(--green-600);
}

.request-meta {
  margin: 0 0 6px;
  color: var(--green-600);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-card h3 {
  font-size: 1.55rem;
}

.request-card p {
  margin: 8px 0 0;
}

.request-badges,
.request-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.request-badges {
  justify-content: flex-end;
}

.request-badges span,
.request-details span {
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--green-900);
  font-size: .84rem;
  font-weight: 900;
}

.status-pill {
  text-transform: capitalize;
}

.status-new {
  background: #e6f2d7 !important;
}

.status-declined {
  background: #f4ded8 !important;
}

.request-next {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-action,
.delete-action,
.route-map-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(23, 59, 36, .26);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--green-900);
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.quick-action:hover,
.delete-action:hover,
.route-map-link:hover {
  border-color: var(--green-600);
}

.delete-action {
  margin-left: auto;
  border-color: #c99a8e;
  background: #fff7f4;
  color: #7f2f1d;
}

.delete-action:hover {
  border-color: #9d3b24;
}

.request-note {
  padding: 12px;
  border-radius: var(--radius);
  background: #fffefa;
}

.request-update-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.request-update-form .full {
  grid-column: 1 / -1;
}

.request-update-form .button {
  width: fit-content;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 22px;
}

.route-helper,
.calendar-board {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.route-group,
.calendar-column {
  padding: 16px;
}

.route-group h3,
.calendar-column h3 {
  font-size: 1.4rem;
}

.route-group p {
  margin: 6px 0 10px;
  color: #5a6358;
}

.route-group textarea {
  width: 100%;
  min-height: 70px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.calendar-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.calendar-column {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
}

.calendar-item {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--cream-2);
}

.calendar-item strong {
  color: var(--green-900);
}

.calendar-item span,
.empty-state {
  color: #5a6358;
  font-size: .9rem;
}

@media (max-width: 1020px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--green-900);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .service-area,
  .final-cta,
  .city-hero,
  .booking-hero,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .estimate-card {
    position: static;
    order: -1;
  }

  .admin-login,
  .admin-grid,
  .admin-controls,
  .calendar-board {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

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

  .brand em {
    font-size: .72rem;
  }

  .site-nav {
    left: 10px;
    right: 10px;
  }

  .section-pad {
    padding: 44px 18px;
  }

  .hero {
    gap: 22px;
    padding-top: 36px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.4rem);
    line-height: .9;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero p {
    margin-top: 16px;
    font-size: 1.04rem;
    line-height: 1.48;
  }

  .button-row {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(23, 59, 36, .18);
    object-position: center;
  }

  .trust-list,
  .step-grid,
  .pricing-grid,
  .benefit-grid,
  .local-grid,
  .area-list,
  .form-grid.two-col,
  .admin-stats,
  .request-update-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy .button,
  .final-cta .button {
    width: 100%;
  }

  .trust-list li {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(238, 244, 231, .7);
    font-size: .9rem;
  }

  .mini-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .step-card,
  .price-card,
  .benefit-grid article,
  .next-card {
    box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
  }

  .step-card,
  .price-card,
  .benefit-grid article,
  .booking-panel,
  .estimate-card {
    padding: 22px;
  }

  .booking-actions {
    display: grid;
  }

  .booking-actions .button {
    width: 100%;
  }

  .admin-shell {
    padding: 18px;
  }

  .admin-login {
    min-height: auto;
    padding-block: 32px;
  }

  .admin-topbar,
  .admin-section-head,
  .request-main,
  .notification-card {
    display: grid;
  }

  .admin-actions,
  .admin-actions .button,
  .request-update-form .button {
    width: 100%;
  }

  .request-badges {
    justify-content: flex-start;
  }

  .delete-action {
    width: 100%;
    margin-left: 0;
  }

  .price-card {
    min-height: auto;
  }

  .price-card .button {
    margin-top: 20px;
  }

  .service-area {
    gap: 28px;
  }

  .area-copy p {
    margin-top: 14px;
  }

  .map-card svg {
    min-height: 260px;
    box-shadow: 0 10px 26px rgba(23, 59, 36, .1);
  }

  .city text {
    font-size: 14px;
  }

  .approx {
    display: none;
  }

  .final-cta {
    padding-block: 48px;
  }

  .final-cta p {
    font-size: 1.02rem;
  }

  .site-footer {
    gap: 24px;
  }

  .city-hero {
    gap: 24px;
  }

  .city-hero-image {
    order: -1;
  }

  .city-hero-image img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

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

  .brand em {
    font-size: .68rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 3.75rem);
  }

  .hero-copy {
    max-width: 100%;
  }
}

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