@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  src: url("assets/fonts/InterVariable.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #15191d;
  --muted: #5d6670;
  --line: #d8dee3;
  --paper: #f7f5ef;
  --white: #ffffff;
  --green: #476a55;
  --green-dark: #24382d;
  --blue: #285a75;
  --rust: #b05f3c;
  --shadow: 0 18px 50px rgba(21, 25, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(71, 106, 85, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(40, 90, 117, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 58%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(216, 222, 227, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(36, 56, 45, 0.18);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--green-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(71, 106, 85, 0.1);
  color: var(--ink);
}

main {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100vh - 79px));
  padding: clamp(52px, 7vw, 88px) clamp(18px, 6vw, 84px) clamp(36px, 6vw, 72px);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  color: #354049;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.button svg,
.icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button.primary {
  background: var(--green-dark);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.profile-panel {
  display: grid;
  gap: 18px;
  align-self: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-panel img {
  width: 100%;
  max-width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
}

.profile-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.profile-panel .profile-name {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.section,
.section-band,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 84px);
}

.section-band {
  background: #e8ece5;
  border-block: 1px solid rgba(71, 106, 85, 0.18);
}

.section-inner,
.section-heading,
.split-section,
.contact-section {
  max-width: 1160px;
  margin-inline: auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
}

.two-column p,
.section-heading p,
.split-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 620px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin-inline: auto;
}

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

.service-card {
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  background: #eef4f0;
  border: 1px solid rgba(71, 106, 85, 0.18);
  border-radius: 8px;
  color: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.split-copy {
  max-width: 680px;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  padding: 18px 0 18px 18px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.52);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 4px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 60px);
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--white);
}

.contact-section .section-kicker,
.contact-section p {
  color: #c9d9cf;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #e9f1ed;
  font-style: normal;
}

.contact-card strong {
  color: var(--white);
}

.contact-card a {
  color: var(--white);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 24px clamp(18px, 4vw, 56px) 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a,
.site-footer button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.text-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-main {
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 84px);
}

.legal-content {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
}

.legal-content h4,
.legal-content h5 {
  margin: 18px 0 8px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.legal-content h5 {
  color: var(--green-dark);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.service-page {
  max-width: 1120px;
}

.service-page .legal-content > section {
  margin-top: 34px;
}

.service-visual {
  margin: 30px 0 34px;
  overflow: hidden;
  background: #e8ece5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.lead-text {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

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

.service-detail-grid div {
  min-height: 210px;
  padding: 22px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-detail-grid h2 {
  margin-top: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.16;
}

.service-detail-grid p {
  margin-bottom: 0;
}

.inline-links,
.related-links {
  color: var(--muted);
}

.related-links {
  margin-top: 28px;
}

.inline-links a,
.related-links a {
  color: var(--green-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-list div {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.faq-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-list h2 {
  margin-top: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-cta {
  margin-top: 36px;
  padding: 24px;
  background: #eef4f0;
  border: 1px solid rgba(71, 106, 85, 0.18);
  border-radius: 8px;
}

.legal-cta h2 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .profile-panel,
  .contact-card {
    max-width: 440px;
  }

  .profile-panel img {
    max-width: 220px;
    height: 280px;
  }

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

  .three-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-block: 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid rgba(71, 106, 85, 0.16);
    background: rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    opacity: 0;
    transition:
      max-height 220ms ease,
      padding 180ms ease,
      border-width 180ms ease,
      opacity 160ms ease;
  }

  .site-header.menu-open .nav-links {
    max-height: 320px;
    padding: 8px;
    border-width: 1px;
    opacity: 1;
  }

  .nav-links a {
    padding: 11px 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .icon-box {
    margin-bottom: 28px;
  }

  .contact-section {
    border-radius: 0;
  }

  .legal-content {
    padding: 24px;
  }

}
