:root {
  --paper: #f4f0e5;
  --paper-soft: #ebe5d5;
  --surface: #ffffff;
  --forest: #1b342b;
  --moss: #2c4a3e;
  --ink: #17241d;
  --muted: #5b675e;
  --line: #ddd5c2;
  --line-strong: #c8bea8;
  --amber: #f59e0b;
  --amber-dark: #d88906;
  --amber-soft: #fff2d2;
  --inverse: #f8f4ea;
  --inverse-muted: #bdc8bf;
  --shadow: 0 24px 50px -34px rgba(27, 52, 43, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --gutter: 24px;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

::selection {
  background: var(--amber);
  color: var(--forest);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--forest);
  color: var(--inverse);
  padding: 10px 16px;
  transition: transform 160ms ease;
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.concept-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  min-height: 38px;
  padding: 8px var(--gutter);
  background: var(--forest);
  color: var(--inverse);
  font-size: 13px;
  text-align: center;
}

.concept-bar a {
  color: var(--amber);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 213, 194, 0.86);
  background: rgba(244, 240, 229, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  min-width: 58px;
  height: 48px;
  place-items: center;
  border: 1px solid #c47a04;
  border-radius: var(--radius-sm);
  background: var(--amber);
  color: #201506;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding-block: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-login {
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  background: var(--amber);
  color: #211604;
  border-color: #c47a04;
}

.btn-primary:hover {
  background: var(--amber-dark);
}

.btn-secondary {
  background: var(--forest);
  color: var(--inverse);
  border-color: var(--forest);
}

.btn-inverse {
  background: var(--inverse);
  color: var(--forest);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--inverse);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 96px 0 82px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 65%;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), transparent 34%),
    radial-gradient(circle at 78% 15%, rgba(27, 52, 43, 0.18), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 920px;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.66;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 740px;
  margin: 38px 0 0;
}

.hero-facts div {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.hero-facts dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(27, 52, 43, 0.88);
  color: var(--inverse);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.job-board {
  position: absolute;
  right: 20px;
  bottom: -30px;
  width: min(92%, 380px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: var(--inverse);
  padding: 22px;
  box-shadow: var(--shadow);
}

.board-label {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-board ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-board li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  color: var(--inverse-muted);
  font-size: 14px;
  line-height: 1.4;
}

.job-board li span {
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 800;
}

.job-board a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber);
  font-weight: 900;
}

.trust-strip {
  padding: 28px 0;
  background: var(--forest);
  color: var(--inverse);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.trust-grid article {
  min-height: 170px;
  background: var(--moss);
  padding: 24px;
}

.icon-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--amber);
}

.trust-grid h2 {
  margin: 0;
  color: var(--inverse);
  font-size: 18px;
  line-height: 1.25;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--inverse-muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:last-child,
.process-grid > div > p,
.roots-copy p,
.risk-intro p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 334px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(27, 52, 43, 0.04);
}

.service-card > span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  min-height: 60px;
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
}

.service-card p {
  min-height: 76px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.service-card-dark {
  background: var(--forest);
  color: var(--inverse);
  border-color: var(--forest);
}

.service-card-dark p,
.service-card-dark li {
  color: var(--inverse-muted);
}

.process {
  background: var(--paper-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

.process-steps article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
}

.process-steps strong {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #211604;
  font-family: var(--font-mono);
}

.process-steps h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.process-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.work {
  background: var(--forest);
  color: var(--inverse);
}

.work .section-heading h2,
.work .eyebrow {
  color: var(--inverse);
}

.work .section-heading p:last-child {
  color: var(--inverse-muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--moss);
}

.gallery-large {
  grid-row: span 2;
}

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

.gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(244, 240, 229, 0.92);
  color: var(--forest);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.roots-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.owner-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.owner-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 50% 22%;
}

.roots-copy {
  max-width: 700px;
}

.roots-copy h2 {
  margin-bottom: 20px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 10px 16px;
  color: var(--forest);
  font-weight: 900;
}

.risk {
  background: var(--surface);
}

.risk-grid {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 54px;
  align-items: start;
}

.risk-intro {
  position: sticky;
  top: 124px;
}

.risk-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.risk-list article {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.risk-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.risk-list p {
  margin: 0;
  color: var(--muted);
}

.contact {
  padding-top: 44px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--inverse);
  padding: 38px;
}

.contact-panel .eyebrow,
.contact-panel h2 {
  color: var(--inverse);
}

.contact-panel p {
  color: var(--inverse-muted);
  max-width: 640px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  padding: 52px 0;
  background: #112119;
  color: var(--inverse);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.brand-footer .brand-copy small {
  color: var(--inverse-muted);
}

.footer-disclaimer {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--inverse-muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 220px;
  color: var(--inverse);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  color: var(--inverse);
}

.footer-links a:hover {
  color: var(--amber);
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 6px;
    border-top: 1px solid var(--line);
    padding: 12px 0 18px;
  }

  .site-header.is-open .site-nav a {
    min-height: 44px;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
  }

  .hero-grid,
  .process-grid,
  .roots-grid,
  .risk-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .risk-intro {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
  }

  .concept-bar {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding-block: 10px;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 12px;
  }

  .brand-mark {
    min-width: 52px;
    height: 44px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 62px 0 62px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
  }

  .hero-photo {
    min-height: 420px;
  }

  .hero-photo img {
    height: 420px;
  }

  .job-board {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .service-card,
  .process-steps article {
    min-height: auto;
  }

  .service-card h3,
  .service-card p {
    min-height: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-large {
    grid-row: span 1;
  }

  .owner-photo img {
    height: 460px;
  }

  .risk-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-panel {
    padding: 26px;
  }
}

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