:root {
  --bg: #f3efe6;
  --surface: #fffdf9;
  --surface-2: #e5efe2;
  --ink: #1a2318;
  --muted: #55614f;
  --line: rgba(26, 35, 24, 0.14);
  --green: #274b34;
  --green-2: #3c6a47;
  --gold: #c5952f;
  --gold-dark: #72520d;
  --gold-2: #e7c979;
  --shadow: 0 24px 60px rgba(24, 37, 24, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 201, 121, 0.28), transparent 30%),
    linear-gradient(180deg, #eef5ea 0%, var(--bg) 28%, #f8f4ec 100%);
  font: 16px/1.6 Georgia, "Times New Roman", serif;
}

body.has-mobile-cta {
  padding-bottom: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--green);
  font: 700 0.9rem/1 "Arial", sans-serif;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(243, 239, 230, 0.82);
  border-bottom: 1px solid rgba(39, 75, 52, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: block;
  text-decoration: none;
  min-width: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  display: block;
  width: clamp(70px, 7vw, 96px);
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-kicker,
.eyebrow {
  font: 700 0.72rem/1.2 "Arial", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
}

.brand-name {
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.94rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font: 600 0.92rem/1 "Arial", sans-serif;
  color: var(--green);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-dark);
}

.nav a[aria-current="page"] {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font: 700 0.92rem/1 "Arial", sans-serif;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1d180c;
  box-shadow: 0 14px 28px rgba(197, 149, 47, 0.22);
  border: 0;
  cursor: pointer;
}

.button-ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(39, 75, 52, 0.16);
}

.button:hover,
.button-ghost:hover,
.button:focus-visible,
.button-ghost:focus-visible {
  transform: translateY(-1px);
}

.quick-note {
  margin-top: 1rem;
  color: rgba(248, 244, 236, 0.82);
  font: 600 0.86rem/1.4 "Arial", sans-serif;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.quote-card,
.contact-card,
.cta-band {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.2rem;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-callout {
  margin-top: 1.35rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  border-bottom: 1px solid var(--line);
  font: 700 0.82rem/1.2 "Arial", sans-serif;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-callout a {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-callout a:hover,
.hero-callout a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--green);
  font: 700 0.74rem/1.35 "Arial", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-proof li::before {
  content: "\2713";
  position: absolute;
  top: -0.02em;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.hero-panel {
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(39, 75, 52, 0.95), rgba(27, 50, 35, 0.93)),
    #1d3324;
  color: #f8f4ec;
}

.panel-photo {
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3)),
    url("/wp-content/themes/alan-soden-static/site/assets/project-images/hero.webp") center/cover;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.section {
  padding: 1.2rem 0 4rem;
}

.section-head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 48rem;
  color: var(--muted);
}

.section-head.compact {
  margin-bottom: 0;
}

.grid-3,
.grid-2,
.town-grid,
.quote-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

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

.section-card,
.quote-card,
.contact-card {
  padding: 1.45rem;
}

.section-card h3,
.quote-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.22rem;
  line-height: 1.05;
}

.section-card p,
.quote-card p,
.contact-card p,
.section-card li,
.contact-card li {
  color: var(--muted);
}

.card-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--green);
  font: 700 0.88rem/1 "Arial", sans-serif;
  text-decoration: none;
}

.meta-line {
  color: var(--green-2);
  font: 700 0.78rem/1.2 "Arial", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-art {
  min-height: 180px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background-position: center;
  background-size: cover;
}

.art-lawn { background-image: url("/wp-content/themes/alan-soden-static/site/assets/project-images/lawn.webp"); }
.art-landscape { background-image: url("/wp-content/themes/alan-soden-static/site/assets/project-images/bushes.webp"); }
.art-hardscape { background-image: url("/wp-content/themes/alan-soden-static/site/assets/project-images/patios.webp"); }
.art-wall { background-image: url("/wp-content/themes/alan-soden-static/site/assets/project-images/retaining-wall.webp"); }
.art-drainage { background-image: url("/wp-content/themes/alan-soden-static/site/assets/project-images/stone.webp"); }
.art-seasonal { background-image: url("/wp-content/themes/alan-soden-static/site/assets/project-images/mulch.webp"); }

.project-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.project-photo {
  min-height: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28)),
    url("/wp-content/themes/alan-soden-static/site/assets/project-images/project.webp") center/cover;
}

.project-copy {
  display: grid;
  gap: 1rem;
}

.project-copy .section-head h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.2rem);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li + li {
  margin-top: 0.5rem;
}

.town-grid span {
  display: block;
  position: relative;
  padding: 0.25rem 0 0.25rem 1rem;
  font: 700 0.86rem/1.2 "Arial", sans-serif;
  color: var(--green);
}

.town-grid span::before {
  content: "";
  position: absolute;
  top: 0.67rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.service-area-section {
  padding-bottom: 2.4rem;
}

.estimate-section {
  padding-top: 0;
}

.quote-card {
  background:
    linear-gradient(180deg, rgba(229, 239, 226, 0.7), rgba(255, 253, 249, 0.92));
}

.quote-name {
  margin-top: 0.8rem;
  color: var(--green);
  font: 700 0.88rem/1 "Arial", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-band {
  padding: 1.8rem;
  background:
    linear-gradient(135deg, rgba(39, 75, 52, 0.96), rgba(60, 106, 71, 0.94));
  color: #f8f4ec;
}

.cta-band h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  line-height: 1;
}

.cta-band .eyebrow {
  color: rgba(248, 244, 236, 0.76);
}

.cta-band .button-ghost {
  color: #f8f4ec;
  border-color: rgba(248, 244, 236, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.cta-band .button-ghost:hover,
.cta-band .button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
}

.contact-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(39, 75, 52, 0.05);
  border: 1px solid rgba(39, 75, 52, 0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.mobile-cta {
  display: none;
}

.page-hero {
  padding: 3.2rem 0 1.8rem;
}

.page-hero-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.service-hero-photo {
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
}

.service-hero-photo.compact {
  min-height: 320px;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.1rem;
  width: 0.7rem;
  height: 0.35rem;
  border-left: 3px solid var(--gold-dark);
  border-bottom: 3px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-step {
  padding: 1.45rem;
  border-top: 4px solid var(--gold);
  border-radius: 0 0 20px 20px;
  background: rgba(255, 253, 249, 0.82);
}

.process-step span {
  color: var(--green-2);
  font: 700 0.75rem/1 "Arial", sans-serif;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 0.65rem 0 0.45rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.faq-wrap {
  max-width: 900px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 700;
  font-size: 1.08rem;
}

.faq-item p {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 7rem;
}

.contact-form-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
}

.form-intro h2 {
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.form-intro p,
.form-submit p {
  color: var(--muted);
}

.form-status {
  margin: 1.2rem 0;
  padding: 1rem;
  border-radius: 16px;
  font-weight: 700;
}

.form-status.success {
  background: var(--surface-2);
  color: var(--green);
}

.form-status.error {
  background: #fae7df;
  color: #742d19;
}

.contact-form {
  margin-top: 1.3rem;
}

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

.form-span-2 {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--green);
  font: 700 0.86rem/1.35 "Arial", sans-serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 75, 52, 0.2);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: #fff;
  color: var(--ink);
  font: 400 1rem/1.4 Georgia, "Times New Roman", serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(197, 149, 47, 0.28);
  border-color: var(--gold-dark);
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-submit {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.form-submit p {
  margin: 0;
  font-size: 0.88rem;
}

.photo-stack {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.photo-about {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
    url("/wp-content/themes/alan-soden-static/site/assets/project-images/about.webp");
}

.photo-contact {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
    url("/wp-content/themes/alan-soden-static/site/assets/project-images/contact.webp");
}

.site-footer {
  padding: 2.2rem 0 3rem;
  color: var(--muted);
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.2rem;
  align-items: start;
}

.article-wrap-single {
  grid-template-columns: minmax(0, 840px);
  justify-content: center;
}

.article-card,
.sidebar-card {
  min-width: 0;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-card {
  padding: 2rem;
}

.article-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.article-card p,
.article-card li,
.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
}

.article-cta {
  margin-top: 2rem;
  padding: 1.35rem;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.article-cta h2 {
  margin-top: 0;
}

.article-card ul,
.sidebar-card ul {
  padding-left: 1.2rem;
}

.article-image {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  margin-bottom: 1.35rem;
  background-position: center;
  background-size: cover;
}

.sidebar-card {
  padding: 1.35rem;
  position: sticky;
  top: 6.5rem;
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.source-list,
.post-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.source-list a,
.post-list a {
  color: var(--green);
  text-decoration: none;
}

.source-list a {
  overflow-wrap: anywhere;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  font: 700 0.84rem/1 "Arial", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-meta {
  margin-top: 1rem;
  color: var(--muted);
  font: 600 0.8rem/1.5 "Arial", sans-serif;
}

.footer-logo {
  width: min(190px, 100%);
  margin-bottom: 0.85rem;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .hero-grid,
  .project-strip,
  .grid-3,
  .grid-2,
  .article-wrap,
  .quote-grid,
  .two-col,
  .footer-grid,
  .town-grid {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .process-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    position: static;
  }

  .topbar,
  .nav {
    justify-content: flex-start;
  }

  .brand-sub {
    max-width: 32rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 961px) {
  .single-line-heading {
    font-size: clamp(2rem, 2.7vw, 2.5rem);
    white-space: nowrap;
  }

  .cta-band h2 {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body.has-mobile-cta {
    padding-bottom: 5.5rem;
  }

  .shell,
  .topbar,
  .brand,
  .brand-lockup,
  .brand-mark,
  .nav,
  .hero-grid,
  .hero-copy,
  .hero-panel {
    min-width: 0;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 2rem;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .section-card,
  .quote-card,
  .contact-card,
  .cta-band {
    padding: 1.25rem;
    border-radius: 20px;
  }

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

  .topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .brand-lockup {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .brand-logo {
    width: 76px;
  }

  .brand-mark {
    gap: 0.1rem;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
  }

  .nav a {
    min-height: 44px;
    min-width: 0;
    padding: 0.78rem 0.45rem;
    border-radius: 14px;
    background: rgba(39, 75, 52, 0.05);
    border: 1px solid rgba(39, 75, 52, 0.08);
    text-align: center;
    white-space: normal;
  }

  .nav .button {
    width: 100%;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-sub {
    display: none;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .button-ghost,
  .cta-actions .button,
  .cta-actions .button-ghost {
    width: 100%;
  }

  .lede {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-callout {
    flex-wrap: wrap;
  }

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

  .form-span-2 {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    background: rgba(22, 34, 22, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-cta .button,
  .mobile-cta .button-ghost {
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  .mobile-cta .button-ghost {
    color: #f8f4ec;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
  }
}
