@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
  --forest: #123524;
  --forest-2: #0b241a;
  --green: #1f8a4c;
  --green-light: #35a862;
  --green-tint: #eaf6ee;
  --green-tint-2: #dff2e5;
  --ink: #12201a;
  --ink-soft: #4b5d54;
  --paper: #ffffff;
  --line: #e3ece5;
  --footer-bg: #0a1712;
  --footer-line: #1c3327;
  --footer-text: #b9c9bf;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow: 0 10px 30px rgba(11, 36, 26, 0.08);
  --maxw: 1180px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-loading {
  overflow: hidden;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.preloader-logo {
  width: 120px;
  max-width: 52vw;
}

.preloader-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(18, 53, 36, 0.15);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.preloader-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--green-tint);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--forest-2);
  box-shadow: 0 8px 20px rgba(18, 53, 36, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--forest);
}

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

.btn-light:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: #187a41;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

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

.main-nav a.active {
  color: var(--green);
  border-color: var(--green);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-line);
}

.footer-brand img {
  height: 42px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--footer-text);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--footer-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #7f9187;
  flex-wrap: wrap;
  gap: 10px;
}

/* Icon circle */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--green-light), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

/* Section spacing */
section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-head.left {
  text-align: left;
  margin: 0 0 44px;
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-3px);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

.tint-bg {
  background: var(--green-tint);
}

.stat-strip {
  background: var(--forest);
  border-radius: var(--radius-l);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  color: #fff;
}

.stat-strip .stat b {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  margin-bottom: 4px;
}

.stat-strip .stat span {
  font-size: 0.88rem;
  color: #cfe3d6;
}

.cta-banner {
  background: var(--forest);
  border-radius: var(--radius-l);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
}

.cta-banner h3 {
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner p {
  color: #cfe3d6;
  margin: 0;
}

/* Hero */
.hero {
  padding-top: 64px;
  padding-bottom: 40px;
}

.hero .grid-2 {
  align-items: center;
}

.hero h1 {
  font-size: 3.1rem;
}

.hero h1 .accent {
  color: var(--green);
}

.hero p.lead {
  font-size: 1.08rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/4.3;
  background: linear-gradient(155deg, var(--green-tint-2), var(--paper) 70%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .logo-mark {
  width: 55%;
  opacity: 0.92;
}

.hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.hero-badge .icon-circle {
  width: 42px;
  height: 42px;
}

.hero-badge .icon-circle svg {
  width: 20px;
  height: 20px;
}

.hero-badge strong {
  display: block;
  font-size: 0.92rem;
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 56px 0 0;
}

.page-hero .grid-2 {
  align-items: center;
}

.page-hero h1 {
  font-size: 2.6rem;
}

.page-hero .rule {
  width: 64px;
  height: 3px;
  background: var(--green);
  margin: 14px 0 20px;
}

.page-hero-visual {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: linear-gradient(155deg, var(--green-tint-2), var(--paper) 70%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-visual img {
  width: 46%;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 20px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.step-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.87rem;
  margin: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: center;
}

.feature-item .icon-circle {
  margin: 0 auto 14px;
}

.feature-item h4 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.86rem;
  margin: 0;
}

/* Checklist */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.checklist li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.faq-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 10px;
}

.faq-nav button {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-s);
  border: none;
  background: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-nav button.active {
  background: var(--green-tint);
  color: var(--forest);
  font-weight: 600;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}

.faq-item.open .faq-q {
  color: var(--forest);
}

.faq-plus {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.faq-item.open .faq-plus {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(45deg);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.faq-plus::before {
  width: 11px;
  height: 1.6px;
}

.faq-plus::after {
  width: 1.6px;
  height: 11px;
}

.faq-item.open .faq-plus::before,
.faq-item.open .faq-plus::after {
  background: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner {
  padding: 0 22px 20px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* Contact */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 44px 0;
}

.contact-strip .card {
  padding: 24px;
}

.contact-strip .icon-circle {
  margin-bottom: 14px;
  width: 46px;
  height: 46px;
}

.contact-strip .icon-circle svg {
  width: 22px;
  height: 22px;
}

.contact-strip h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.contact-strip a.value {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-strip span.note {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.form-card,
.office-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  background: #fbfdfb;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  font-size: 0.9rem;
  margin-top: 10px;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  color: var(--green);
}

.form-status.err {
  color: #b3261e;
}

.office-card .rule {
  width: 40px;
  height: 3px;
  background: var(--green);
  margin: 6px 0 18px;
}

.office-line {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.map-box {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 160px;
  margin: 18px 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.hours-row.first {
  border-top: none;
}

/* Team / about */
.value-list li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.value-list li::before {
  content: "•";
  color: var(--green);
}

.team-photo {
  height: 100%;
  min-height: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--green-tint);
  border: 1px solid var(--line);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 3;
}

.quote-card {
  background: var(--green-tint);
  border-radius: var(--radius-m);
  padding: 28px;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--forest);
  position: relative;
  height: 100%;
}

/* Responsive */
@media (max-width: 980px) {

  .grid-2,
  .grid-4,
  .grid-3,
  .steps,
  .feature-row,
  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {

  .main-nav,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .grid-2,
  .grid-4,
  .grid-3,
  .steps,
  .feature-row,
  .contact-strip,
  .footer-grid,
  .stat-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 56px 0;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}