:root {
  --color-paper: #f4f1e9;
  --color-paper-deep: #ece5d8;
  --color-olive: #4f5b43;
  --color-olive-dark: #303828;
  --color-sand: #d8c8b2;
  --color-wood: #8d603e;
  --color-charcoal: #292b27;
  --color-muted: #64685f;
  --color-white: #fffaf1;
  --shadow-soft: 0 20px 50px rgba(41, 43, 39, 0.16);
  --border: 1px solid rgba(41, 43, 39, 0.14);
  --radius: 8px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  min-width: 320px;
  margin: 0;
  color: var(--color-charcoal);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--color-wood);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: 3rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

p {
  margin-bottom: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--color-paper);
  background: var(--color-charcoal);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.page-shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  color: var(--color-paper);
  background: rgba(79, 91, 67, 0.97);
  border-bottom: 1px solid rgba(244, 241, 233, 0.16);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 28px, 1240px);
  min-height: var(--header-height);
  margin-inline: auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand__logo {
  width: 136px;
  height: auto;
  max-height: 56px;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(244, 241, 233, 0.34);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  margin: -4px 0;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  max-height: calc(100svh - var(--header-height));
  padding: 22px 16px 28px;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  color: var(--color-paper);
  background: var(--color-olive);
  border-bottom: 1px solid rgba(244, 241, 233, 0.16);
  transform: translateY(-12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-nav a {
  padding: 13px 8px;
  font-size: 1.05rem;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 241, 233, 0.16);
}

.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(31, 35, 26, 0.82), rgba(31, 35, 26, 0.44) 45%, rgba(31, 35, 26, 0.08)),
    linear-gradient(180deg, rgba(31, 35, 26, 0.25), rgba(31, 35, 26, 0.36));
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 86px 74px;
}

.hero__content p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 250, 241, 0.9);
  font-size: 1.1rem;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-wood);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-label--light {
  color: var(--color-sand);
}

.hero__actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--color-charcoal);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.button--primary {
  color: var(--color-paper);
  background: var(--color-olive);
  border-color: var(--color-olive);
}

.hero .button--primary,
.why-band .button--primary {
  color: var(--color-olive-dark);
  background: var(--color-paper);
  border-color: var(--color-paper);
}

.button--secondary {
  color: var(--color-paper);
  background: rgba(244, 241, 233, 0.08);
  border-color: rgba(244, 241, 233, 0.58);
}

.button:hover {
  transform: translateY(-1px);
}

.intro-band {
  color: var(--color-paper);
  background: var(--color-charcoal);
}

.intro-band__grid {
  display: grid;
  gap: 22px;
  padding-block: 42px;
}

.intro-band h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.intro-band p:not(.section-label) {
  color: rgba(244, 241, 233, 0.82);
}

.section {
  padding-block: 78px;
}

.section--light {
  background: var(--color-paper);
}

.section--sand {
  background: var(--color-paper-deep);
}

.section--contact {
  color: var(--color-paper);
  background: var(--color-olive-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.section-label) {
  color: var(--color-muted);
}

.section-heading--compact {
  max-width: 660px;
}

.feature {
  display: grid;
  gap: 26px;
  align-items: center;
  margin-top: 34px;
}

.feature--first {
  margin-top: 0;
}

.feature__media {
  overflow: hidden;
  background: var(--color-sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature__media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature__copy {
  max-width: 560px;
}

.feature__copy p:not(.section-label) {
  color: var(--color-muted);
}

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

.service-card {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.62);
  border: var(--border);
  border-radius: var(--radius);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.service-card p,
.process-list p,
.contact-copy p {
  color: var(--color-muted);
}

.section-cta {
  margin-top: 28px;
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 190px;
  padding: 22px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-wood);
  font-weight: 850;
}

.process-list h3 {
  font-size: 1.22rem;
}

.why-band {
  padding-block: 64px;
  color: var(--color-paper);
  background: var(--color-olive);
}

.why-band__grid {
  display: grid;
  gap: 26px;
}

.why-band h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.why-band__points {
  display: grid;
  gap: 18px;
  color: rgba(244, 241, 233, 0.86);
}

.contact-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.section--contact .section-label {
  color: var(--color-sand);
}

.section--contact .contact-copy p {
  color: rgba(244, 241, 233, 0.82);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  font-style: normal;
  background: rgba(244, 241, 233, 0.08);
  border: 1px solid rgba(244, 241, 233, 0.18);
  border-radius: var(--radius);
}

.contact-card a,
.contact-card span {
  overflow-wrap: anywhere;
}

.contact-card__label {
  color: var(--color-sand);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-card__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--color-olive-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--color-paper);
  border-radius: var(--radius);
}

.site-footer {
  color: var(--color-paper);
  background: var(--color-charcoal);
}

.site-footer__grid {
  display: grid;
  gap: 26px;
  padding-block: 36px;
}

.brand--footer {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer__bottom {
  color: rgba(244, 241, 233, 0.74);
}

.site-footer__links {
  display: grid;
  gap: 9px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-block: 18px;
  border-top: 1px solid rgba(244, 241, 233, 0.14);
}

.simple-page {
  min-height: 100svh;
  color: var(--color-charcoal);
  background: var(--color-paper);
}

.simple-page__main {
  padding-block: 72px;
}

.simple-page__content {
  max-width: 820px;
}

.simple-page__content h1 {
  color: var(--color-charcoal);
}

.simple-page__content p,
.simple-page__content li {
  color: var(--color-muted);
}

.simple-page__content ul {
  padding-left: 22px;
}

@media (min-width: 700px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .page-shell {
    width: min(100% - 48px, 1180px);
  }

  .intro-band__grid,
  .why-band__grid,
  .contact-grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-height: none;
    padding: 0;
    visibility: visible;
    opacity: 1;
    overflow: visible;
    background: transparent;
    border-bottom: 0;
    transform: none;
    transition: none;
  }

  .site-nav a {
    padding: 12px 10px;
    font-size: 0.95rem;
    border-bottom: 0;
  }

  .hero {
    min-height: 76svh;
  }

  .feature {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 54px;
    margin-top: 74px;
  }

  .feature--first {
    margin-top: 0;
  }

  .feature--reverse .feature__media {
    order: 2;
  }

  .feature--reverse .feature__copy {
    order: 1;
  }

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

@media (max-width: 520px) {
  :root {
    --header-height: 66px;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.34rem;
  }

  .site-header__inner {
    width: min(100% - 22px, 1240px);
  }

  .brand__logo {
    width: 116px;
    max-height: 48px;
  }

  .hero {
    min-height: 80svh;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(31, 35, 26, 0.86), rgba(31, 35, 26, 0.55)),
      linear-gradient(180deg, rgba(31, 35, 26, 0.16), rgba(31, 35, 26, 0.46));
  }

  .hero__content {
    padding-block: 58px 48px;
  }

  .button,
  .contact-card__primary {
    width: 100%;
  }

  .section {
    padding-block: 56px;
  }

  .service-card,
  .process-list li,
  .contact-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover {
    transform: none;
  }
}