:root {
  --ink: #14231f;
  --ink-soft: #40514b;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --green: #173f35;
  --green-light: #dce9e1;
  --lime: #c6dc76;
  --orange: #e9743f;
  --line: rgba(20, 35, 31, 0.15);
  --shadow: 0 24px 70px rgba(23, 63, 53, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--green);
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.brand-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.nav-links .nav-cta {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--green);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0.55rem;
  color: var(--green);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 7.2vw, 6.6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

p {
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6.75rem, 11vw, 9rem) 0 5rem;
  background:
    radial-gradient(circle at 82% 14%, rgba(198, 220, 118, 0.35), transparent 26rem),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.hero[id],
.section[id],
.policy-card[id] {
  scroll-margin-top: 104px;
}

.hero::after {
  content: "M";
  position: absolute;
  right: -0.02em;
  bottom: -0.28em;
  color: rgba(23, 63, 53, 0.045);
  font-family: Georgia, serif;
  font-size: min(53vw, 48rem);
  line-height: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-lede {
  max-width: 760px;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.5;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  color: var(--green);
  background: var(--lime);
}

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

.button.secondary:hover {
  background: var(--green-light);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 1.4rem 1.4rem 0 0;
}

.stat + .stat {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-intro p:last-child {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-panel {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--green);
  box-shadow: var(--shadow);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 46, 39, 0.88) 100%);
  pointer-events: none;
}

.about-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.about-panel figcaption {
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding: 15rem 2.5rem 2.5rem;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.services-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 280px;
  padding: 1.7rem;
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: 0 20px 50px rgba(23, 63, 53, 0.09);
}

.service-number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 3.8rem;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-light);
  font-size: 0.75rem;
  font-weight: 850;
}

.service-card h3 {
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

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

.industries-section .eyebrow {
  color: var(--lime);
}

.industries-section .section-intro p:last-child {
  color: rgba(255, 253, 248, 0.7);
}

.industries-photo {
  position: relative;
  height: clamp(300px, 36vw, 430px);
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.industries-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(15, 46, 39, 0.88) 100%);
  pointer-events: none;
}

.industries-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.industries-photo figcaption {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3rem);
  right: clamp(1.4rem, 4vw, 3rem);
  bottom: clamp(1.3rem, 3vw, 2.3rem);
  z-index: 1;
  max-width: 650px;
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-card {
  min-height: 290px;
  padding: 2rem 1.5rem;
}

.industry-card + .industry-card {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-card > span {
  display: block;
  margin-bottom: 4.4rem;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.industry-card h3 {
  margin-bottom: 0.8rem;
}

.industry-card p {
  color: rgba(255, 253, 248, 0.67);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 3rem;
}

.trust-strip div {
  display: grid;
  gap: 0.25rem;
}

.trust-strip strong {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.trust-strip span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.82rem;
}

.process-step {
  border-top: 3px solid var(--lime);
  padding-top: 1.5rem;
}

.process-step span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 0.55rem 0 0.8rem;
}

.process-step p {
  color: var(--ink-soft);
}

.cta-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--paper);
  background: var(--green);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.cta-grid p {
  max-width: 680px;
  margin-top: 1.25rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.05rem;
}

.cta-grid .button {
  border-color: var(--lime);
  color: var(--green);
  background: var(--lime);
}

.cta-grid .button:hover {
  color: var(--green);
  background: var(--paper);
}

.page-hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 220, 118, 0.32), transparent 25rem),
    var(--cream);
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.page-hero p:last-child {
  max-width: 740px;
  margin-top: 1.7rem;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(198, 220, 118, 0.3), transparent 24rem),
    var(--paper);
}

.contact-lede {
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.contact-photo {
  height: 230px;
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 63, 53, 0.11);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.contact-details {
  display: grid;
  gap: 1.3rem;
  margin-top: 2.2rem;
}

.contact-item {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  color: var(--ink);
  font-size: 1.04rem;
  font-style: normal;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.83rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 35, 31, 0.2);
  border-radius: 12px;
  padding: 0.86rem 0.95rem;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  min-height: 155px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(198, 220, 118, 0.5);
  border-color: var(--green);
}

.form-note {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.policy-section {
  background: var(--cream);
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.policy-card {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.policy-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.policy-card > p:not(.eyebrow) {
  margin-top: 1.25rem;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 1.8rem;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange);
}

.legal {
  width: min(820px, calc(100% - 2rem));
  margin-inline: auto;
}

.legal-meta {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal article {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.legal h2 {
  margin: 2.6rem 0 0.9rem;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal p + p {
  margin-top: 1rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal a {
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  color: var(--paper);
  background: #0f2e27;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
}

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

.footer-about {
  max-width: 420px;
  margin-top: 1.2rem;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--lime);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  display: block;
  margin: 0.45rem 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.88rem;
  font-style: normal;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.77rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(20, 35, 31, 0.08);
  }

  .nav-links.open {
    display: grid;
  }

  .section-intro,
  .about-grid,
  .cta-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .industry-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .industry-card:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-grid {
    gap: 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero-stats,
  .service-grid,
  .industry-grid,
  .trust-strip,
  .process-grid,
  .field-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .industry-card + .industry-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .industry-card > span {
    margin-bottom: 2.5rem;
  }

  .stat + .stat {
    padding-left: 0;
    border-left: 0;
  }

  .about-panel {
    min-height: 360px;
  }

  .about-panel figcaption {
    padding: 12rem 1.5rem 1.5rem;
  }

  .industries-photo {
    height: 340px;
  }

  .industries-photo img {
    object-position: center center;
  }

  .contact-photo {
    height: 260px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
