:root {
  --green: #007a3d;
  --green-dark: #003f25;
  --green-soft: #e9f4ee;
  --silver: #d8dddc;
  --silver-dark: #6f7d7a;
  --ink: #111820;
  --muted: #536169;
  --line: #e5ebe8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 24, 32, 0.12);
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

.container {
  width: min(100% - 88px, 1220px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 12px 44px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(17, 24, 32, 0.06);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: auto;
  height: 55px;
  object-fit: contain;
  object-position: center;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  color: var(--green-dark);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--silver-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--green);
}

.header-action,
.button,
.consultation-grid a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-action,
.button.primary,
.consultation-grid a {
  color: var(--white);
  background: linear-gradient(180deg, #07884a, #006432);
  box-shadow: 0 12px 24px rgba(0, 122, 61, 0.24);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--green);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(235, 244, 239, 0.82) 100%),
    radial-gradient(circle at 84% 28%, rgba(0, 122, 61, 0.16), transparent 32%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    linear-gradient(116deg, transparent 0 44%, rgba(0, 122, 61, 0.1) 44.2%, transparent 45%),
    repeating-linear-gradient(36deg, rgba(0, 122, 61, 0.05) 0 1px, transparent 1px 22px);
}

.hero-grid {
  position: relative;
  display: grid;
  width: min(94vw, 1700px);
  grid-template-columns: minmax(330px, 38%) minmax(0, 62%);
  gap: min(1.4vw, 24px);
  align-items: center;
  min-height: 750px;
  margin: 0 auto;
  padding: 64px 0;
}

.hero-copy {
  max-width: 545px;
  padding-right: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.eyebrow,
.align-left {
  text-align: left;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.brand-line {
  margin: 24px 0 0;
  color: var(--green);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.55;
}

.subheadline {
  margin: 22px 0 18px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.24;
}

.body-copy,
.hero-copy p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 650px;
  margin: 0;
  overflow: visible;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section {
  padding: clamp(58px, 8vw, 92px) 0;
}

.section h2,
.approach h2,
.contact h2 {
  margin: 0 auto 34px;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  text-align: center;
}

.approach h2,
.contact h2 {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

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

.service-grid article,
.consultation-grid article,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 24, 32, 0.08);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.service-grid h3,
.consultation-grid h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
}

.service-grid p,
.consultation-grid p,
.approach p,
.contact-panel p,
.proof-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.industries {
  background: linear-gradient(180deg, #ffffff, #f6faf8);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.industry-grid img {
  width: 100%;
  aspect-ratio: 410 / 508;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.12);
}

.approach {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 241, 0.95)),
    radial-gradient(circle at 82% 28%, rgba(0, 122, 61, 0.13), transparent 34%);
}

.approach::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 620px;
  height: 240px;
  content: "";
  background: linear-gradient(135deg, transparent 0 32%, rgba(0, 74, 38, 0.9) 32%);
}

.approach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

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

.proof-list article {
  padding: 24px 26px;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
}

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

.consultation-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.consultation-grid a {
  width: 100%;
  margin-top: auto;
}

.contact {
  padding: clamp(58px, 8vw, 96px) 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-dark), #006735);
}

.contact .section-label,
.contact h2,
.contact-lines a,
.contact-panel p {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.contact-panel .button {
  width: 100%;
  margin-top: 24px;
  color: var(--green-dark);
  background: var(--white);
}

.contact-lines,
.inquiry-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-lines a,
.inquiry-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.inquiry {
  background:
    linear-gradient(180deg, #ffffff, #f7faf9),
    radial-gradient(circle at 84% 18%, rgba(0, 122, 61, 0.08), transparent 34%);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.inquiry-grid h2 {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.inquiry-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.inquiry-contact a {
  color: var(--green-dark);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 24, 32, 0.1);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.inquiry-form span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #ccd7d2;
  border-radius: 4px;
  background: #fbfdfc;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(0, 122, 61, 0.22);
  border-color: var(--green);
}

.inquiry-form button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 28px 0;
  color: var(--white);
  background: #08251a;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-grid strong,
.footer-grid span,
.footer-contact a {
  display: block;
}

.footer-grid span,
.footer-grid p,
.footer-contact a {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 24px;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--green);
    border-radius: 4px;
    background: var(--white);
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--green);
  }

  .site-nav.is-open {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px 10px;
  }

  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 42%) minmax(0, 58%);
    min-height: 660px;
    padding: 48px 0 52px clamp(24px, 4vw, 44px);
  }

  .hero-copy {
    max-width: 500px;
    padding-right: 16px;
  }

  .hero-visual {
    min-height: 520px;
    justify-content: flex-end;
  }

  .hero-visual img {
    width: 100%;
    max-width: 860px;
    height: auto;
    object-position: center right;
  }

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

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

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

@media (max-width: 900px) {
  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 20px;
    padding: 34px clamp(20px, 5vw, 44px) 52px;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow {
    display: none;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    min-height: auto;
    justify-content: center;
  }

  .hero-visual img {
    width: 100%;
    max-width: 760px;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .hero h1 {
    order: 2;
    width: 100%;
    margin-top: 4px;
    text-align: left;
  }

  .brand-line {
    order: 5;
    width: 100%;
    margin-top: 4px;
  }

  .subheadline {
    order: 3;
    width: 100%;
    margin: 0;
  }

  .body-copy {
    order: 5;
    width: 100%;
    max-width: 720px;
  }

  .hero-actions {
    order: 4;
    width: 100%;
    margin-top: 2px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 620px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 45px;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero-grid {
    padding: 22px 18px 46px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual img {
    width: 100%;
    max-width: none;
  }

  .service-grid,
  .industry-grid,
  .consultation-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
