:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --surface: #ffffff;
  --ink: #202124;
  --muted: #62615d;
  --line: #dedbd2;
  --brand: #c69243;
  --brand-dark: #a97834;
  --forest: #16352f;
  --forest-2: #0e2723;
  --soft-green: #e4eee9;
  --shadow: 0 1.125rem 3.125rem rgba(21, 34, 31, 0.13);
  --radius: 8px;
  --container: min(70rem, calc(100vw - 2.5rem));
  --topbar-height: 2.5rem;
  --nav-height: 6.5rem;
  --header-height: calc(var(--topbar-height) + var(--nav-height));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 0.0625rem solid rgba(22, 53, 47, 0.12);
  box-shadow: 0 0.875rem 2.375rem rgba(22, 53, 47, 0.08);
  backdrop-filter: blur(1.125rem);
}

.topbar {
  background: linear-gradient(90deg, var(--forest-2), var(--forest));
  color: #fff;
  font-size: 0.86rem;
}

.topbar-inner {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.topbar-links a {
  position: relative;
  font-weight: 700;
}

.topbar-links a + a::before {
  content: "";
  position: absolute;
  left: -0.625rem;
  top: 50%;
  width: 0.0625rem;
  height: 0.875rem;
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%);
}

.nav-shell {
  height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand img {
  width: 13.75rem;
  height: auto;
}

.main-nav {
  justify-self: center;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 3.125rem;
  padding: 0.3125rem;
  background: rgba(228, 238, 233, 0.72);
  border: 0.0625rem solid rgba(22, 53, 47, 0.08);
  border-radius: 999px;
}

.main-nav a {
  padding: 0.625rem 0.875rem;
  border-radius: 999px;
  color: #33433f;
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--surface);
  color: var(--forest-2);
  box-shadow: 0 0.5rem 1.5rem rgba(22, 53, 47, 0.12);
}

.mobile-nav-cta {
  display: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  padding: 0.75rem 1.375rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #fff;
  font-weight: 800;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0.75rem 1.625rem rgba(14, 39, 35, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.btn:hover {
  background: linear-gradient(135deg, #1f4941, var(--forest-2));
  box-shadow: 0 1rem 2rem rgba(14, 39, 35, 0.28);
  transform: translateY(-0.0625rem);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.small {
  min-height: 42px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 53, 47, 0.14);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(22, 53, 47, 0.1);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

@supports (height: 100svh) {
  .hero {
    height: calc(100svh - var(--header-height));
  }
}

@supports (height: 100dvh) {
  .hero {
    height: calc(100dvh - var(--header-height));
  }
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 25, 24, 0.82), rgba(22, 25, 24, 0.34) 58%, rgba(22, 25, 24, 0.12));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  width: var(--container);
}

.hero-content > * {
  max-width: min(75vw, 66rem);
}

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

.hero .eyebrow {
  color: #f0c98d;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.35rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  margin: 22px 0 0;
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: 88px 0;
}

.section.muted {
  background: var(--soft-green);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 40px;
}

.split-intro > p {
  margin: 0;
  padding-top: 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-item {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(36, 59, 53, 0.12);
}

.proof-item strong {
  display: block;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.feature-band,
.about-hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.feature-band img,
.about-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-band p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.875rem;
}

.faq-list details {
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  color: var(--forest-2);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.page-hero {
  background: var(--forest);
  color: #fff;
}

.page-hero.compact .container {
  padding: 92px 0;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero .eyebrow {
  color: #f0c98d;
}

.services-list {
  display: grid;
  gap: 54px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 46px;
  align-items: center;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row.is-reversed {
  grid-template-columns: 1fr 0.88fr;
}

.service-row.is-reversed img {
  order: 2;
}

.service-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-row p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  max-width: min(92vw, 73.75rem);
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  font-size: 3.2rem;
  padding-bottom: 6px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  outline: 3px solid #f0c98d;
  outline-offset: 3px;
}

.has-lightbox {
  overflow: hidden;
}

.image-hero {
  background: linear-gradient(180deg, var(--soft-green), var(--bg));
  color: var(--ink);
}

.about-hero {
  padding: 88px 0;
}

.about-hero p:not(.eyebrow) {
  color: var(--muted);
}

.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.values-grid article,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.values-grid span,
.contact-card span {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.contact-card strong {
  display: block;
  margin-top: 10px;
  color: var(--forest);
  font-size: 1.3rem;
  word-break: break-word;
}

.map-wrap {
  margin-top: 32px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 27.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content {
  max-width: 52.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #171918;
  color: #e9e5dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 56px;
  padding: 58px 0;
}

.footer-logo {
  width: 150px;
  padding: 8px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 6px;
}

.footer-grid h2 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-weight: 700;
}

.footer-grid p {
  color: #c9c4b9;
}

.footer-link {
  color: #f0c98d !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #c9c4b9;
}

@media (max-width: 900px) {
  :root {
    --header-height: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .topbar-inner {
    height: auto;
    padding: 9px 0;
  }

  .topbar-links {
    gap: 14px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: auto;
    min-height: 5.625rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle span:not(.sr-only) {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(0.375rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-0.375rem) rotate(-45deg);
  }

  .main-nav {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.375rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff, #f4f8f6);
    border: 0.0625rem solid rgba(22, 53, 47, 0.1);
    border-radius: 0.875rem;
    box-shadow: 0 1rem 2.5rem rgba(22, 53, 47, 0.14);
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.875rem 1rem;
    border-radius: 0.625rem;
    color: var(--forest-2);
    font-size: 1rem;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: var(--soft-green);
    box-shadow: none;
  }

  .main-nav a.is-active {
    border-left: 0.25rem solid var(--brand);
    padding-left: 0.75rem;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.375rem;
    background: linear-gradient(135deg, var(--forest), var(--forest-2)) !important;
    color: #fff !important;
    border-left: 0 !important;
    box-shadow: 0 0.75rem 1.5rem rgba(14, 39, 35, 0.18) !important;
  }

  .header-cta {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .split-intro,
  .feature-band,
  .about-hero,
  .service-row,
  .service-row.is-reversed,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-intro > p {
    padding-top: 0;
  }

  .service-row.is-reversed img {
    order: 0;
  }

  .service-grid,
  .proof-grid,
  .values-grid,
  .contact-grid,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 1.75rem, 70rem);
  }

  .brand img {
    width: 166px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .topbar-links {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .topbar-links a + a::before {
    display: none;
  }

  .hero-content {
    padding: 86px 0 70px;
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .proof-grid,
  .values-grid,
  .contact-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .page-hero.compact .container,
  .about-hero {
    padding: 64px 0;
  }

  .lightbox {
    padding: 70px 14px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 72px);
  }

  .lightbox-next {
    right: calc(50% - 72px);
  }
}
