:root {
  --pine: #344236;
  --deep-pine: #243027;
  --moss: #6e7751;
  --sage: #a8ae91;
  --clay: #a56543;
  --sand: #e8ddca;
  --cream: #f7f1e7;
  --stone: #c9c0ae;
  --charcoal: #1d211d;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(29, 33, 29, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p:last-child {
  margin-bottom: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 20px;
}

.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: 100;
  background: rgba(247, 241, 231, 0.88);
  border-bottom: 1px solid rgba(52, 66, 54, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 231, 0.96);
  box-shadow: 0 10px 30px rgba(29, 33, 29, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-text {
  display: grid;
  max-width: 180px;
  color: var(--deep-pine);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(29, 33, 29, 0.76);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(52, 66, 54, 0.1);
  color: var(--deep-pine);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(52, 66, 54, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--deep-pine);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(52, 66, 54, 0.22);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 14px;
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--pine);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 174, 145, 0.36), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(165, 101, 67, 0.16), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #efe4d2 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  background: linear-gradient(0deg, rgba(52, 66, 54, 0.08), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 170px);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 60px;
}

.hero-stack .hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-stack .hero-logo img {
  width: min(100%, 280px);
  height: auto;
}

.hero-stack .hero-copy {
  max-width: 760px;
}

.hero-stack .hero-actions {
  justify-content: center;
}

.hero-stack .trust-row {
  justify-content: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--moss);
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-lede,
.section-heading > p:not(.eyebrow),
.body-copy p,
.contact-copy > p,
.cta-box p:not(.eyebrow) {
  color: rgba(29, 33, 29, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.centered-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(52, 66, 54, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--deep-pine);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.72);
  color: var(--deep-pine);
  border: 1px solid rgba(52, 66, 54, 0.2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 8px 12px;
  border: 1px solid rgba(52, 66, 54, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  color: rgba(29, 33, 29, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(52, 66, 54, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.46);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 460px;
  padding: 8px 18px;
  border: 1px solid rgba(52, 66, 54, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(29, 33, 29, 0.12);
}

.hero-card .card-kicker {
  margin-bottom: 2px;
}

.hero-card strong {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.hero-card p {
  font-size: 0.75rem;
  line-height: 1.25;
  margin-bottom: 0;
}

.hero-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  padding: 14px;
  border-radius: 18px;
}

.hero-logo-card img {
  width: 160px;
  height: auto;
  border-radius: 12px;
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-pine);
  font-size: 1.05rem;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-band {
  background: var(--deep-pine);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  padding: 28px 0;
  align-items: center;
}

.intro-grid p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.18;
}

.intro-grid p:last-child {
  color: rgba(255, 253, 248, 0.78);
}

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

.align-center {
  align-items: center;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.body-copy p + p {
  margin-top: 18px;
}

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

.work-cards {
  margin-top: 48px;
}

.feature-card,
.project-card,
.process-step,
.contact-form,
.cta-box {
  border: 1px solid rgba(52, 66, 54, 0.12);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 50px rgba(29, 33, 29, 0.08);
}

.feature-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card > div {
  padding: 24px;
}

.feature-card img {
  width: 100%;
  height: auto;
  background: #efe4d2;
}

.muted {
  background:
    linear-gradient(180deg, rgba(52, 66, 54, 0.06), rgba(168, 174, 145, 0.08)),
    var(--sand);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius-md);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--white);
  font-weight: 850;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--deep-pine);
  color: var(--white);
  box-shadow: var(--shadow);
}

.split-panel h2,
.split-panel h3 {
  color: var(--white);
}

.split-panel .section-heading p:not(.eyebrow),
.split-panel .service-list p {
  color: rgba(255, 253, 248, 0.74);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list div {
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.06);
}

.project-section {
  background: linear-gradient(180deg, var(--cream), #efe3d1);
}

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

.project-card {
  overflow: hidden;
  padding: 0 0 24px;
  border-radius: var(--radius-lg);
}

.project-card h3,
.project-card p {
  padding-inline: 24px;
}

.project-card p {
  color: rgba(29, 33, 29, 0.72);
}

.project-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 800;
  margin-bottom: 24px;
  border-radius: 0;
  object-fit: cover;
}

@media (max-width: 680px) {
  .project-visual {
    aspect-ratio: 16 / 10;
  }
}

.values-mark {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.64);
  box-shadow: 0 18px 55px rgba(29, 33, 29, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--deep-pine);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(165, 101, 67, 0.45);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(168, 174, 145, 0.32), transparent 28%),
    var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(52, 66, 54, 0.08);
  color: var(--deep-pine);
  font-weight: 760;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-pine);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(52, 66, 54, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(165, 101, 67, 0.22);
  border-color: rgba(165, 101, 67, 0.7);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: rgba(29, 33, 29, 0.58);
  font-size: 0.86rem;
}

.page-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(165, 101, 67, 0.16), transparent 28%),
    linear-gradient(180deg, var(--cream), #efe4d2);
}

.about-photo {
  padding: 22px;
  border: 1px solid rgba(52, 66, 54, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2100 / 1400;
  border-radius: 22px;
  object-fit: cover;
}

@media (max-width: 680px) {
  .about-photo img {
    aspect-ratio: 4 / 3;
  }
}

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

.contact-cta {
  background: var(--deep-pine);
}

.cta-box {
  max-width: 860px;
  margin-inline: auto;
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--cream);
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: rgba(255, 253, 248, 0.72);
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  border-radius: 18px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: var(--white);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 74px 0;
  }

  .hero-grid,
  .two-col,
  .split-panel,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .cards-grid,
  .project-grid,
  .process-grid,
  .values-list,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-panel {
    padding: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(52, 66, 54, 0.14);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 60px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: auto;
    height: 58px;
  }

  .brand-text {
    font-size: 1.05rem;
    max-width: 150px;
  }

  .site-nav {
    inset: 74px 14px auto 14px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    padding: 12px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 12px;
    border-radius: 18px;
  }

  .cards-grid,
  .project-grid,
  .process-grid,
  .values-list,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .split-panel,
  .cta-box,
  .contact-form {
    padding: 24px;
  }
}
