:root {
  --green: #07513f;
  --green-2: #0b6a53;
  --deep: #071b18;
  --ink: #10221f;
  --muted: #61716d;
  --paper: #f7faf8;
  --line: #dce6e2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(3, 35, 28, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,81,63,.1);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 210px; min-height: 74px; display: flex; align-items: center; overflow: visible; padding: 6px 0; flex-shrink: 0; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 14px; }
.nav a:not(.nav-cta):hover { color: var(--green); }
.nav-cta { background: var(--green); color: white; padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; border: 1px solid var(--line); background: white; padding: 9px 13px; border-radius: 10px; font-weight: 800; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(15, 111, 86, .27), transparent 35%),
    linear-gradient(135deg, #061916 0%, #082821 58%, #0b3a2f 100%);
  color: white;
  padding: 88px 0 72px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -100px 20%;
  height: 220px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: rotate(-5deg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: 12px; color: #68bda3; margin-bottom: 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 6vw, 78px); line-height: .98; letter-spacing: -.045em; max-width: 760px; margin-bottom: 24px; }
.hero-lead { max-width: 680px; font-size: 19px; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 15px 22px; font-weight: 900; border: 1px solid transparent; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #0f7b5f; color: white; box-shadow: 0 10px 28px rgba(0,0,0,.16); }
.btn-primary:hover { background: #11886a; }
.btn-ghost { border-color: rgba(255,255,255,.25); color: white; background: rgba(255,255,255,.06); }
.hero-points { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points span { border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.82); padding: 8px 12px; border-radius: 999px; font-size: 13px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-card { position: absolute; inset: 0 30px 20px 0; border-radius: 28px; overflow: hidden; background: white; box-shadow: 0 30px 100px rgba(0,0,0,.28); }
.hero-card img { width: 100%; height: 100%; object-fit: contain; padding: 20px; background: linear-gradient(145deg,#f7faf9,#fff); }
.hero-badge { position: absolute; right: 0; bottom: 0; background: white; color: var(--ink); padding: 18px 20px; border-radius: 16px; min-width: 235px; box-shadow: var(--shadow); }
.hero-badge strong, .hero-badge span { display: block; }
.hero-badge span { color: var(--muted); font-size: 13px; margin-top: 3px; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 24px 20px; border-right: 1px solid var(--line); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; padding-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 14px; }
.trust-grid span { color: var(--muted); font-size: 12px; margin-top: 4px; }

.section { padding: 96px 0; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(36px, 4.5vw, 58px); line-height: 1.03; letter-spacing: -.035em; margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { border: 1px solid var(--line); border-radius: 20px; padding: 26px; background: linear-gradient(180deg, #fff, #fbfdfc); min-height: 260px; }
.service-num { width: 40px; height: 40px; border-radius: 12px; background: #e9f5f1; color: var(--green); display: grid; place-items: center; font-weight: 900; margin-bottom: 42px; }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; }

.section-dark { background: var(--deep); color: white; }
.section-head.light p { color: rgba(255,255,255,.65); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.work-card { margin: 0; border-radius: 20px; overflow: hidden; background: #0d2c25; border: 1px solid rgba(255,255,255,.08); }
.work-card img { width: 100%; height: 460px; object-fit: cover; background: #071b18; }
.work-card.tall img { object-fit: contain; }
.work-card figcaption { padding: 18px 20px 22px; }
.work-card figcaption strong, .work-card figcaption span { display: block; }
.work-card figcaption span { color: rgba(255,255,255,.58); font-size: 13px; margin-top: 4px; }

.brand-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.brand-card { border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 12px 40px rgba(6,49,40,.06); }
.brand-image { height: 340px; display: grid; place-items: center; padding: 28px; }
.brand-image.white-bg { background: linear-gradient(145deg,#fafcfb,#f2f7f5); }
.brand-image img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { padding: 24px 26px 28px; }
.brand-label { font-size: 11px; font-weight: 950; letter-spacing: .16em; color: var(--green); }
.brand-copy h3 { font-size: 24px; margin: 8px 0 10px; }
.brand-copy p { color: var(--muted); margin-bottom: 0; }
.brand-list { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.brand-list span { border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 10px 14px; font-weight: 800; font-size: 13px; }

.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.process-head { margin-bottom: 0; position: sticky; top: 120px; align-self: start; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.steps li > span { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: white; font-weight: 900; }
.steps strong { font-size: 20px; }
.steps p { color: var(--muted); margin: 6px 0 0; }

.contact-section { background: linear-gradient(135deg, #08231d, #0b4437); color: white; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-copy h2 { font-size: clamp(38px, 4.5vw, 58px); line-height: 1.02; letter-spacing: -.035em; }
.contact-copy > p { color: rgba(255,255,255,.68); font-size: 17px; }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-cards a { border: 1px solid rgba(255,255,255,.12); padding: 16px 18px; border-radius: 14px; background: rgba(255,255,255,.05); }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: rgba(255,255,255,.55); }
.contact-cards strong { margin-top: 3px; }
.quote-form { background: white; color: var(--ink); border-radius: 24px; padding: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; margin-bottom: 14px; }
.quote-form input, .quote-form textarea { width: 100%; border: 1px solid #cad8d3; background: #fbfdfc; border-radius: 12px; padding: 13px 14px; outline: none; color: var(--ink); }
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(11,106,83,.1); }
.form-submit { width: 100%; border: 0; margin-top: 4px; }
.form-note { color: var(--muted); font-size: 11px; margin: 10px 0 0; text-align: center; }
.hidden { position: absolute !important; left: -9999px !important; }

.footer { background: #061511; color: white; padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 60px; }
.footer-logo { width: 200px; filter: brightness(0) invert(1); opacity: .92; }
.footer p { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid strong { font-size: 13px; margin-bottom: 2px; }
.footer-grid a { color: rgba(255,255,255,.66); font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; color: rgba(255,255,255,.4); font-size: 12px; }

@media (max-width: 980px) {
  .hero-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 520px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(3), .trust-grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .process-head { position: static; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .site-header { position: sticky; }
  .nav-wrap { min-height: 82px; }
  .brand { width: 168px; min-height: 62px; padding: 4px 0; }
  .brand img { width: 100%; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 72px; left: 14px; right: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch; gap: 8px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px 12px; }
  .nav-cta { text-align: center; }
  .hero { padding: 66px 0 52px; }
  h1 { font-size: 48px; }
  .hero-lead { font-size: 17px; }
  .hero-visual { min-height: 430px; }
  .hero-card { inset: 0 12px 32px 0; }
  .hero-badge { right: 0; bottom: 0; min-width: 215px; }
  .section { padding: 72px 0; }
  .service-grid, .brand-showcase, .work-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-num { margin-bottom: 28px; }
  .brand-image { height: 280px; }
  .work-card img { height: 360px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-top: 1px solid var(--line); padding: 18px 0; }
  .trust-grid div:first-child { border-top: 0; }
  .contact-grid { gap: 36px; }
  .quote-form { padding: 20px; }
}
