:root {
  --site-bg: #f4f8f3;
  --ink: #122017;
  --brand: #2f6a3e;
  --brand-deep: #214f2d;
  --gold: #d9a441;
  --sticky-offset: 120px;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 10% 4%, rgba(217, 164, 65, 0.18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(47, 106, 62, 0.16), transparent 34%),
    var(--site-bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: "Sora", sans-serif;
}

.top-bar {
  background: var(--brand-deep);
  color: #f3f8f1;
  font-size: 0.95rem;
}

.top-link {
  color: #ffffff;
  text-decoration: none;
}

.top-link:hover {
  color: #e8f4ea;
}

.site-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2px;
  overflow: visible;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.42);
  transform-origin: left center;
}

.navbar-nav .nav-link {
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: var(--brand);
}

.hero-section {
  padding-top: 4.5rem;
}

.hero-title {
  max-width: 20ch;
}

.hero-image,
.about-image,
.gallery-image {
  border-radius: 1rem;
  object-fit: cover;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.service-card {
  border-radius: 0.85rem;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--brand-deep);
}

.cta-panel {
  border-radius: 1.25rem;
  color: #f6fbf7;
  background: linear-gradient(120deg, #1f4b2b, #357547);
}

main [id] {
  scroll-margin-top: calc(var(--sticky-offset) + 12px);
}

.gbp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.gbp-link:hover {
  color: var(--brand);
}

.gbp-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 2.5rem;
  }

  .brand-mark {
    max-width: calc(100% - 64px);
    overflow: hidden;
  }

  .brand-logo {
    height: 36px;
    max-width: 58vw;
    transform: none;
  }
}
