@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&display=swap");

:root {
  --paper: #f2efe6;
  --surface: #fffdf8;
  --forest: #163627;
  --moss: #284c39;
  --pine: #18251f;
  --muted: #647066;
  --hairline: #d9d1be;
  --yellow: #f1c736;
  --yellow-soft: #fff1a9;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(22, 54, 39, 0.18);
  --radius: 14px;
  --container: 1180px;
  --gutter: 24px;
}

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

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pine);
  background: var(--paper);
  line-height: 1.55;
  font-weight: 500;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--forest);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

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

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

.concept-bar {
  background: var(--pine);
  color: #e8efe9;
  text-align: center;
  font-size: 13px;
  padding: 9px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(242, 239, 230, 0.94);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--forest);
  white-space: nowrap;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--hairline);
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.primary-nav a,
.header-cta,
.btn,
.action-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a {
  padding: 9px 13px;
  color: var(--moss);
}

.primary-nav a:hover {
  background: #e8e1ce;
}

.header-cta {
  padding: 10px 16px;
  background: var(--forest);
  color: var(--white);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  place-items: center;
  gap: 4px;
  padding: 12px;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 999px;
}

.hero {
  padding: 70px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
}

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

h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.locations-grid > div > p,
.media-panel p,
.proof-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.hero-lede {
  font-size: 19px;
  max-width: 620px;
  margin-bottom: 28px;
}

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

.btn {
  padding: 13px 20px;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--yellow-soft);
}

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

.btn-secondary:hover,
.header-cta:hover {
  background: #0f2a1e;
}

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

.operations-board {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  background: var(--forest);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.board-image {
  min-height: 520px;
}

.board-image img,
.image-card img,
.media-panel img,
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  color: var(--white);
}

.board-label {
  margin: 0 0 4px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--yellow);
}

.board-panel a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.board-panel a:hover {
  background: rgba(241, 199, 54, 0.14);
}

.board-panel span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.board-panel strong {
  font-size: 15px;
  color: #f5f0df;
}

.trust-strip {
  padding: 30px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}

.stat {
  padding: 24px;
  border-right: 1px solid var(--hairline);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 38px;
  line-height: 1;
  color: var(--forest);
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

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

.section-heading.compact {
  margin-bottom: 24px;
}

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

.image-card {
  display: grid;
  grid-template-rows: 230px auto auto;
  gap: 12px;
  padding: 12px 12px 20px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
}

.image-card img {
  border-radius: 12px;
}

.image-card span {
  padding-inline: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.image-card strong {
  padding-inline: 8px;
  color: var(--pine);
  font-size: 16px;
}

.image-card:hover {
  border-color: var(--forest);
}

.dark-section {
  background: var(--forest);
  color: var(--white);
}

.dark-section .eyebrow {
  color: var(--yellow);
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.media-panel {
  display: grid;
  grid-template-rows: 250px auto;
  background: var(--moss);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.media-panel > div {
  padding: 28px;
}

.media-panel p {
  color: #c6d1c8;
}

.locations-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.location-photo {
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.branch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.branch-list a {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}

.branch-list a:hover {
  border-color: var(--forest);
}

.branch-list strong {
  font-size: 14px;
}

.branch-list span {
  color: var(--muted);
  font-size: 13px;
}

.action-band {
  padding: 70px 0;
  background: #e7e0ce;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.action-grid a {
  min-height: 64px;
  padding: 12px 14px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--forest);
}

.action-grid a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.proof-section {
  background: var(--forest);
  color: var(--white);
}

.proof-section .eyebrow {
  color: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 38px;
  align-items: center;
}

.proof-grid p {
  color: #cbd6ce;
  font-size: 17px;
}

.proof-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--surface);
  color: var(--pine);
}

.proof-card img {
  margin-bottom: 22px;
}

.proof-card ul,
.faq-list {
  margin: 0;
  padding: 0;
}

.proof-card li {
  margin-left: 18px;
  margin-bottom: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
}

.faq-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
}

.faq-list h3 {
  margin-bottom: 8px;
}

.faq-list p {
  margin-bottom: 0;
}

.owner-cta {
  padding: 48px 0;
}

.owner-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  background: var(--yellow);
  border-radius: 18px;
}

.owner-panel h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 34px;
}

.owner-panel .eyebrow {
  color: var(--forest);
}

.site-footer {
  padding: 46px 0;
  background: var(--pine);
  color: #dce5dd;
}

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

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 0;
  color: #b8c5bd;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links a {
  color: #f4f7f4;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: 118px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .locations-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .operations-board {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .board-image {
    min-height: 320px;
  }

  .stat-grid,
  .card-grid,
  .split-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hairline);
  }
}

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

  .concept-bar {
    font-size: 12px;
  }

  .brand img {
    width: 116px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand span {
    padding-left: 8px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.06;
  }

  h2 {
    font-size: 31px;
  }

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

  .hero-actions,
  .owner-panel,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .btn {
    width: 100%;
  }

  .board-image {
    min-height: 250px;
  }

  .stat-grid,
  .card-grid,
  .split-panels,
  .branch-list,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .image-card {
    grid-template-rows: 210px auto auto;
  }

  .location-photo {
    height: 300px;
  }

  .section {
    padding: 58px 0;
  }

  .owner-panel h2 {
    font-size: 28px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
