:root {
  --bg: #f3f6f1;
  --bg-deep: #0f1a14;
  --surface: #ffffff;
  --ink: #142019;
  --ink-soft: #3d4f44;
  --line: rgba(20, 32, 25, 0.12);
  --green: #1f6b45;
  --green-deep: #134530;
  --sun: #c9a227;
  --mist: rgba(243, 246, 241, 0.82);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(15, 26, 20, 0.18);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

main {
  flex: 1 0 auto;
  padding-top: 4.25rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-size: 0.92em;
  background: rgba(31, 107, 69, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(243, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

body.nav-open .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.nav-open .logo {
  color: #fff;
  position: relative;
  z-index: 60;
}

.site-header.scrolled {
  background: rgba(243, 246, 241, 0.96);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  line-height: 1.1;
  max-width: min(14rem, 58vw);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: #fff !important;
  background: var(--green);
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--green-deep);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease, top 0.25s var(--ease), background 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span {
  background: #fff;
}

.hero {
  color: #f7faf6;
}

.hero-banner {
  background: var(--bg-deep);
  line-height: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  margin: 0 auto;
  object-fit: contain;
}

.hero-bar {
  background: var(--bg-deep);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 3rem);
}

.hero-bar-inner {
  max-width: 40rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-content {
  display: none;
}

.brand-mark {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.01em;
  color: #f4efd8;
  line-height: 1.15;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(247, 250, 246, 0.88);
}

.service-area {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 216, 0.92);
}

.service-area-ink {
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sun);
  color: #1a1608;
}

.btn-primary:hover {
  background: #d9b43a;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.produce,
.about,
.contact {
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 5.5rem;
}

.section-intro {
  max-width: 36rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  text-align: center;
  animation: rise 0.8s var(--ease) both;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 26, 20, 0.05);
}

.product-card .product-label {
  padding: 1rem 1rem 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card p {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.visit-actions {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
}

.section-intro h2,
.about h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-copy,
.about p,
.contact-copy > p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.service-feature.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.service-feature.reverse .service-copy {
  order: 2;
}

.service-feature.reverse .service-visual {
  order: 1;
}

.service-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
}

.service-copy p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  max-width: 28rem;
}

.service-visual {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.9rem;
  box-shadow: 0 12px 32px rgba(15, 26, 20, 0.08);
}

.service-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

.product-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.service-feature:last-of-type {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.property-care {
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.property-care .section-intro {
  margin-bottom: 1.5rem;
}

.property-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.property-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.property-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 400;
  line-height: 1.15;
}

.property-list span {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.gallery {
  background:
    linear-gradient(180deg, transparent, rgba(31, 107, 69, 0.05) 20%, rgba(31, 107, 69, 0.05) 80%, transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0.9rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 26, 20, 0.08);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

.about-panel {
  max-width: 46rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    url("../images/gallery-3.jpg") center / cover;
  background-blend-mode: lighten, normal;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}

.about-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-copy p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34rem;
}

.about-facts {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-facts > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.about-facts dd {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.about-facts a {
  color: var(--green-deep);
}

.about-facts a:hover {
  color: var(--green);
}

.visit-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visit-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visit-card-body {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.visit-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
}

.visit-card-body p {
  margin: 0;
  color: var(--ink-soft);
}

.visit-card-body .btn {
  width: 100%;
}

.btn-ghost-ink {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost-ink:hover {
  background: rgba(31, 107, 69, 0.08);
}

.property-list {
  grid-template-columns: repeat(3, 1fr);
}

.about-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.contact {
  padding-bottom: clamp(5rem, 10vw, 7.5rem);
}

.contact-copy > p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 28rem;
}

.contact-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-meta a {
  color: var(--green-deep);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-meta a:hover {
  color: var(--green);
}

.contact-address {
  font-size: clamp(1.02rem, 2vw, 1.2rem) !important;
  max-width: 22rem;
  line-height: 1.35;
}

.gbp-link {
  font-size: 1rem !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  width: fit-content;
}

.hours {
  margin-top: 2rem;
}

.hours-title {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  max-width: 22rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
}

.hours-list li span:last-child {
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}

.hours-summary {
  margin: 1.25rem 0 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  background: #fbfcfb;
  color: var(--ink);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(31, 107, 69, 0.35);
  border-color: var(--green);
}

.quote-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.call-fab {
  display: none;
}

.page-inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-inner .site-header {
  background: rgba(243, 246, 241, 0.96);
}

.page-inner .thanks-main,
.page-inner .faq-main {
  flex: 1 0 auto;
}

.faq-main {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(7rem, 14vw, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
}

.faq-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.faq-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.faq-foot {
  margin: 2.5rem 0 0;
  color: var(--ink-soft);
}

.faq-foot a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.thanks-main {
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(7rem, 14vw, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
}

.thanks-main h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.thanks-main .section-copy a {
  color: var(--green-deep);
  font-weight: 600;
}

.thanks-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.thanks-ghost:hover {
  background: rgba(31, 107, 69, 0.08);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  background: var(--bg-deep);
  color: rgba(243, 246, 241, 0.82);
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand p {
  margin: 0.35rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-facts > div {
    grid-template-columns: 6.5rem 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .hero-bar {
    padding: 1.75rem 1rem 2rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .produce,
  .about,
  .contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-intro h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-facts > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }

  .contact-meta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .visit-actions .btn {
    min-height: 52px;
  }

  .footer-links {
    gap: 0.85rem 1.25rem;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    margin: 0;
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(15, 26, 20, 0.98);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), visibility 0.25s;
    z-index: 50;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav a {
    color: rgba(243, 246, 241, 0.9);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(243, 246, 241, 0.1);
  }

  .site-nav a:hover {
    color: #fff;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: 0 !important;
    background: var(--sun);
    color: #1a1608 !important;
    border-radius: 999px;
    padding: 0.85rem 1rem !important;
  }

  .nav-cta:hover {
    background: #d9b43a;
    color: #1a1608 !important;
  }

  .call-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    min-width: 3.5rem;
    min-height: 3.5rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 12px 28px rgba(15, 26, 20, 0.28);
  }

  .call-fab:hover {
    background: var(--green-deep);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }
}
