:root {
  --green-950: #123f20;
  --green-800: #155728;
  --green-600: #1f6b36;
  --green-100: #edf4df;
  --cream: #f0e6c8;
  --cream-soft: #faf3dc;
  --gold: #c6a84d;
  --ink: #172019;
  --muted: #657268;
  --line: #d9e3da;
  --soft: #fbf7e5;
  --shadow: 0 16px 34px rgba(21, 87, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

#services,
#yard-check,
#work,
#quote,
#service-area,
#faq,
#about {
  scroll-margin-top: 88px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(240, 230, 200, 0.94);
  color: var(--green-950);
  box-shadow: 0 10px 26px rgba(18, 63, 32, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(240, 230, 200, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 242px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 800;
}

.brand-logo {
  width: 48px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  filter: none;
}

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

.brand-name strong {
  color: var(--green-600);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.34rem;
  letter-spacing: 0;
}

.brand-name small {
  margin-top: 2px;
  color: var(--green-800);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.header-cta,
.button.light {
  background: var(--cream);
  color: var(--green-950);
}

.button.primary {
  background: var(--green-800);
  color: white;
  box-shadow: 0 12px 24px rgba(21, 87, 40, 0.22);
}

.button.secondary {
  border: 1px solid rgba(240, 230, 200, 0.72);
  background: rgba(240, 230, 200, 0.12);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 87, 40, 0.22);
  background: rgba(255, 255, 255, 0.38);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-950);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-950);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 63, 32, 0.88) 0%, rgba(18, 63, 32, 0.66) 45%, rgba(18, 63, 32, 0.14) 100%),
    linear-gradient(0deg, rgba(18, 63, 32, 0.68) 0%, rgba(18, 63, 32, 0) 58%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  padding: 150px clamp(20px, 6vw, 74px) clamp(36px, 8vw, 82px);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cream);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6.4vw, 5.75rem);
  line-height: 0.98;
}

h2 {
  color: var(--green-950);
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 1.08;
}

h3 {
  color: var(--green-950);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(240, 230, 200, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.section,
.quote-band,
.yard-check,
.service-area-section,
.about-section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section > *,
.quote-band > *,
.yard-check > *,
.service-area-section > *,
.about-section > * {
  min-width: 0;
}

.section-heading,
.project-gallery,
.service-grid,
.yard-check,
.service-area-section,
.faq-list,
.about-section {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading p,
.quote-intro p,
.yard-check-copy p,
.about-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.quote-band {
  max-width: none;
  background: var(--green-950);
  color: white;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.quote-band h2 {
  color: white;
}

.quote-intro {
  position: sticky;
  top: 110px;
}

.quote-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-tip {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 230, 200, 0.26);
  border-radius: 8px;
  background: rgba(240, 230, 200, 0.1);
  color: var(--cream);
  font-weight: 800;
}

.mini-contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-contact a {
  display: inline-flex;
  width: fit-content;
  color: var(--cream);
  font-weight: 800;
}

.how-it-works {
  margin-top: 28px;
}

.how-it-works h3 {
  margin-bottom: 12px;
  color: white;
}

.how-it-works ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: quote-step;
}

.how-it-works li {
  position: relative;
  min-height: 50px;
  padding-left: 50px;
  color: rgba(255, 255, 255, 0.78);
}

.how-it-works li::before {
  counter-increment: quote-step;
  content: counter(quote-step);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green-950);
  font-weight: 900;
}

.how-it-works strong,
.how-it-works span {
  display: block;
}

.how-it-works strong {
  color: white;
}

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

.service-card {
  overflow: hidden;
  min-height: 184px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 40, 27, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card > div {
  padding: 22px;
}

.service-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-grid:not(.service-grid-featured) .service-card {
  padding: 24px;
}

.service-grid:not(.service-grid-featured) .service-card > div {
  padding: 0;
}

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

.service-card:hover {
  border-color: rgba(52, 122, 76, 0.34);
  box-shadow: 0 16px 34px rgba(16, 40, 27, 0.09);
  transform: translateY(-4px);
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--green-800);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.yard-check {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  background: var(--green-100);
}

.yard-tool {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(13, 103, 47, 0.18);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.yard-tool label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 800;
}

.yard-tool .yard-custom {
  display: none;
}

.yard-tool.show-custom .yard-custom {
  display: grid;
  grid-column: 1 / -1;
}

.yard-result {
  grid-column: 1 / -1;
  min-height: 70px;
  padding: 16px 18px;
  border-left: 5px solid var(--green-600);
  background: var(--soft);
  border-radius: 8px;
  color: var(--green-950);
  font-weight: 700;
}

.yard-tool .button {
  grid-column: 1 / -1;
}

.project-gallery {
  display: grid;
  gap: 26px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 24px;
  background: var(--green-950);
  color: white;
  border-radius: 8px;
}

.project-copy h3 {
  color: white;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.project-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ba-frame {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
  border-radius: 8px;
}

.ba-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-photo:not([hidden]) + span {
  background: rgba(6, 57, 28, 0.9);
}

.placeholder {
  background:
    linear-gradient(135deg, rgba(13, 103, 47, 0.14), rgba(245, 237, 203, 0.62)),
    repeating-linear-gradient(45deg, rgba(6, 57, 28, 0.08) 0 12px, rgba(6, 57, 28, 0.02) 12px 24px);
}

.placeholder.after {
  background:
    linear-gradient(135deg, rgba(13, 103, 47, 0.28), rgba(245, 237, 203, 0.68)),
    repeating-linear-gradient(45deg, rgba(6, 57, 28, 0.08) 0 12px, rgba(6, 57, 28, 0.02) 12px 24px);
}

.ba-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(6, 57, 28, 0.86);
  color: white;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.privacy-note {
  padding: 14px 16px;
  border: 1px solid rgba(245, 237, 203, 0.38);
  border-radius: 8px;
  background: rgba(245, 237, 203, 0.08);
}

.service-area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
  border-top: 1px solid rgba(21, 87, 40, 0.1);
  border-bottom: 1px solid rgba(21, 87, 40, 0.1);
}

.service-area-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 8px 12px;
  border: 1px solid rgba(21, 87, 40, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-950);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  background: var(--green-100);
}

.values-grid {
  display: grid;
  gap: 14px;
}

.values-grid article {
  padding: 22px;
  border: 1px solid rgba(13, 103, 47, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--cream-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(16, 40, 27, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-950);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--green-950);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  max-width: 100%;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.field-help {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.quote-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-600);
  outline: 3px solid rgba(52, 122, 76, 0.18);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--green-600);
  font-weight: 800;
}

.form-note.error {
  color: #9d2d20;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #0b2714;
  color: white;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
}

.site-footer > div:last-child {
  text-align: right;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.mobile-action-bar {
  display: none;
}

.location-page {
  min-height: 100vh;
}

.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--green-950);
  color: white;
}

.location-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.location-hero h1,
.location-hero p {
  color: white;
}

.location-hero .button.secondary {
  color: white;
}

.location-section {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.location-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(21, 87, 40, 0.16);
  }

  .site-nav.is-open a {
    padding: 12px 0;
  }

  .site-header.is-open + main .hero-content {
    padding-top: 330px;
  }

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

  .quote-layout,
  .yard-check,
  .project-card,
  .location-hero,
  .service-area-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

  .yard-tool {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > div:last-child {
    text-align: left;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  #services,
  #yard-check,
  #work,
  #quote,
  #service-area,
  #faq,
  #about {
    scroll-margin-top: 78px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 96px);
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    height: 48px;
  }

  .brand-name strong {
    font-size: 1.12rem;
  }

  .brand-name small {
    font-size: 0.7rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.58);
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    z-index: 30;
    margin: 0;
    padding: 8px 16px;
    border: 1px solid rgba(21, 87, 40, 0.16);
    border-radius: 8px;
    background: rgba(250, 243, 220, 0.98);
    box-shadow: 0 18px 40px rgba(18, 63, 32, 0.18);
  }

  .site-nav.is-open a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(21, 87, 40, 0.1);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open + main .hero-content {
    padding-top: 118px;
  }

  .hero {
    min-height: 88svh;
    align-items: flex-end;
  }

  .hero-content {
    padding: 118px 18px 92px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.05rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 22px 0;
  }

  .section,
  .quote-band,
  .yard-check,
  .service-area-section,
  .about-section {
    padding: 44px 20px;
  }

  .hero-points span {
    flex: 1 1 120px;
    width: auto;
    text-align: center;
    font-size: 0.9rem;
  }

  .quote-form,
  .yard-tool {
    padding: 18px;
  }

  .quote-form {
    gap: 14px;
    border-radius: 8px;
  }

  .quote-form label {
    gap: 8px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  textarea {
    min-height: 132px;
  }

  .quote-tip,
  .form-note {
    font-size: 0.92rem;
  }

  .how-it-works li {
    min-height: 44px;
  }

  .hero-actions .button,
  .quote-form .button,
  .yard-tool .button {
    width: 100%;
  }

  .service-grid,
  .service-grid-featured,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .full {
    grid-column: auto;
  }

  .services-section .section-heading,
  .gallery-section .section-heading {
    margin-bottom: 18px;
  }

  .service-grid-featured {
    display: flex;
    gap: 14px;
    margin: 0 -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid-featured::-webkit-scrollbar {
    display: none;
  }

  .service-grid-featured .service-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .service-card > div {
    padding: 18px;
  }

  .service-card > img {
    height: 150px;
  }

  .service-card p {
    font-size: 0.94rem;
  }

  .ba-frame {
    min-height: 230px;
  }

  .comparison-grid {
    display: flex;
    gap: 10px;
    margin: 0 -20px;
    padding: 0 20px 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .comparison-grid::-webkit-scrollbar {
    display: none;
  }

  .comparison-grid .ba-frame {
    flex: 0 0 min(78vw, 330px);
    scroll-snap-align: start;
  }

  .project-copy {
    min-height: auto;
    padding: 20px;
  }

  .yard-check {
    align-items: start;
  }

  .yard-tool {
    gap: 12px;
  }

  .yard-result {
    min-height: 0;
    padding: 14px 16px;
  }

  .area-list {
    gap: 8px;
  }

  .area-list li {
    flex: 1 1 140px;
    text-align: center;
  }

  .faq-list summary {
    padding: 16px 18px;
  }

  .location-hero {
    padding: 28px 18px 42px;
  }

  .location-hero img {
    aspect-ratio: 16 / 10;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(240, 230, 200, 0.24);
    border-radius: 8px;
    background: rgba(11, 39, 20, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 8px;
    background: rgba(240, 230, 200, 0.1);
    color: white;
    line-height: 1.05;
  }

  .mobile-action-bar a:nth-child(2) {
    background: var(--cream);
    color: var(--green-950);
  }

  .mobile-action-bar span {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.82;
  }

  .mobile-action-bar strong {
    font-size: 0.95rem;
  }

  .site-footer {
    display: grid;
  }
}
