:root {
  --ink: #0b100d;
  --ink-soft: #121a14;
  --paper: #f8f6f0;
  --paper-alt: #efece3;
  --white: #ffffff;
  --text: #172019;
  --muted: #647067;
  --green: #46aa48;
  --green-dark: #2f7d36;
  --green-soft: #dfeedd;
  --earth: #bf795e;
  --earth-soft: #efdcd2;
  --line: rgba(23, 32, 25, .12);
  --shadow: 0 30px 80px rgba(21, 34, 24, .14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { background: var(--ink); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 9, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
@supports (backdrop-filter: blur(12px)) {
  .topbar { background: rgba(8, 12, 9, .84); backdrop-filter: blur(16px); }
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; color: #fff; }
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.12);
}
.brand > span { display: grid; min-width: 0; line-height: 1.18; }
.brand strong { font-size: .92rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand small { margin-top: 5px; color: rgba(255,255,255,.58); font-size: .74rem; }
.nav { display: flex; align-items: center; gap: 27px; color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 750; }
.nav a { transition: color .2s ease, background .2s ease, transform .2s ease; }
.nav a:hover { color: #fff; transform: translateY(-1px); }
.nav-contact { padding: 9px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(70,170,72,.18), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(191,121,94,.16), transparent 30%),
    linear-gradient(145deg, #0b100d 0%, #111913 62%, #0b0e0c 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}
.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
  padding: 88px 0 104px;
}
.hero-copy { animation: rise .7s ease both; }
.kicker {
  margin: 0 0 18px;
  color: #8bd28a;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker-dark { color: var(--green-dark); }
.hero h1 {
  margin: 0;
  max-width: 8.2ch;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 850;
  letter-spacing: -.06em;
  line-height: .92;
}
.hero h1 span { color: #a8d9a3; }
.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.48;
}
.hero-note { max-width: 620px; margin: 13px 0 0; color: rgba(255,255,255,.57); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 820;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 22px; height: 22px; fill: currentColor; }
.button-primary { background: var(--green); color: #081009; box-shadow: 0 16px 34px rgba(70,170,72,.23); }
.button-primary:hover { background: #55b756; box-shadow: 0 20px 42px rgba(70,170,72,.3); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); }
.button-full { width: 100%; }
.hero-data {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 30px;
  color: rgba(255,255,255,.82);
}
.hero-data > div:not(.hero-divider) { display: grid; gap: 2px; }
.hero-data span { color: rgba(255,255,255,.42); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; }
.hero-data strong, .hero-data a { font-size: .93rem; font-weight: 780; }
.hero-divider { width: 1px; background: rgba(255,255,255,.12); }

.hero-art { position: relative; display: grid; place-items: center; animation: rise .8s .08s ease both; }
.logo-frame {
  width: min(100%, 455px);
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 44px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 34px 90px rgba(0,0,0,.46);
  position: relative;
  z-index: 2;
}
.logo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; background: #000; }
.tree-halo {
  position: absolute;
  width: 112%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(70,170,72,.16);
  box-shadow: 0 0 0 58px rgba(255,255,255,.018), 0 0 0 118px rgba(255,255,255,.012);
}
.hero-art > p { margin: 20px 0 0; color: rgba(255,255,255,.42); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; text-align: center; }

.split-heading {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}
.split-heading h2,
.section-title h2,
.support-heading h2,
.modality-copy h2,
.contact-main h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 850;
}
.about-copy { padding-top: 12px; }
.about-copy p { margin: 0; font-size: clamp(1.06rem, 1.7vw, 1.28rem); color: #445047; }
.about-copy p + p { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }

.attention { background: var(--paper-alt); }
.section-title { max-width: 780px; margin: 0 auto; text-align: center; }
.section-title h2 { max-width: 12ch; margin-inline: auto; }
.section-title > p:last-child { max-width: 650px; margin: 18px auto 0; color: var(--muted); }
.cards { display: grid; gap: 22px; margin-top: 52px; }
.cards-two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  position: relative;
  min-height: 340px;
  padding: clamp(30px, 4.6vw, 50px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(23,32,25,.07);
  background: #fff;
  box-shadow: 0 18px 54px rgba(25, 38, 27, .07);
}
.card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -88px;
  bottom: -100px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: .5;
}
.card-green { --accent: var(--green-dark); --accent-soft: var(--green-soft); }
.card-earth { --accent: var(--earth); --accent-soft: var(--earth-soft); }
.card-index { position: absolute; right: 26px; top: 20px; font-size: 3.4rem; font-weight: 900; letter-spacing: -.07em; color: rgba(23,32,25,.055); }
.icon-circle {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 22px;
  background: var(--accent-soft);
  color: var(--accent);
}
.icon-circle svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { position: relative; z-index: 1; margin: 0; max-width: 15ch; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.08; letter-spacing: -.035em; }
.card p { position: relative; z-index: 1; margin: 14px 0 0; color: var(--muted); }

.support { position: relative; overflow: hidden; }
.support::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70,170,72,.18), transparent 68%);
}
.support-heading { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: end; gap: 50px; }
.support-heading h2 { max-width: 10ch; }
.support-heading > p { margin: 0 0 8px; max-width: 520px; color: rgba(255,255,255,.56); }
.support-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 64px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); overflow: hidden; }
.support-card { min-height: 260px; padding: 34px; background: #0d130f; }
.support-card span { color: #8bd28a; font-size: .76rem; font-weight: 850; letter-spacing: .16em; }
.support-card h3 { margin: 64px 0 0; font-size: clamp(1.45rem, 2.3vw, 2rem); letter-spacing: -.035em; line-height: 1.08; }
.support-card p { margin: 13px 0 0; color: rgba(255,255,255,.5); }

.modalities { background: var(--paper); }
.modality-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23,32,25,.07);
  box-shadow: var(--shadow);
}
.modality-visual { position: relative; display: grid; place-items: center; min-height: 420px; overflow: hidden; background: var(--ink); }
.modality-visual img { position: relative; z-index: 2; width: min(60%, 245px); border-radius: 30px; box-shadow: 0 24px 68px rgba(0,0,0,.46); }
.rings,
.rings::before,
.rings::after { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.rings { width: 300px; height: 300px; }
.rings::before { content: ""; inset: -58px; }
.rings::after { content: ""; inset: 48px; border-color: rgba(70,170,72,.2); }
.modality-copy { padding: clamp(42px, 7vw, 88px); display: flex; flex-direction: column; justify-content: center; }
.modality-copy h2 { max-width: 11ch; }
.location-chip {
  width: fit-content;
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper-alt);
  color: #425047;
  font-weight: 780;
}
.location-chip svg { width: 20px; height: 20px; fill: none; stroke: var(--earth); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact { background: var(--paper-alt); }
.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 7vw, 86px); align-items: end; }
.contact-main h2 { max-width: 12ch; }
.contact-location { margin: 20px 0 4px; color: var(--muted); }
.big-phone { display: inline-block; margin-top: 4px; color: var(--green-dark); font-size: clamp(2.15rem, 5.2vw, 4.5rem); line-height: 1; letter-spacing: -.055em; font-weight: 900; }
.contact-box { padding: 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid rgba(23,32,25,.08); box-shadow: 0 18px 55px rgba(24,38,27,.07); }
.contact-logo { width: 78px; height: 78px; margin-bottom: 24px; padding: 5px; background: #080808; border-radius: 20px; }
.contact-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; }
.contact-box p { margin: 0 0 18px; color: var(--muted); }

.footer { padding: 32px 0; background: #070a08; color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.footer-brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.footer-brand div { display: grid; line-height: 1.2; }
.footer-brand strong { font-size: .86rem; }
.footer-brand span { margin-top: 4px; color: rgba(255,255,255,.48); font-size: .74rem; }
.footer-meta { display: flex; gap: 20px; color: rgba(255,255,255,.58); font-size: .85rem; }
.footer-meta a:hover { color: #fff; }
.phone-float {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #081009;
  box-shadow: 0 16px 40px rgba(37,113,44,.34);
  transition: transform .2s ease;
}
.phone-float:hover { transform: translateY(-3px) scale(1.03); }
.phone-float svg { width: 31px; height: 31px; fill: currentColor; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  :root { --container: min(760px, calc(100% - 32px)); }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .84rem; }
  .brand small { display: none; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    flex: 0 0 auto;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
  }
  .menu-button span { width: 18px; height: 2px; border-radius: 99px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 13px;
    gap: 4px;
    border-radius: 20px;
    background: #111813;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
  }
  .nav.is-open { display: grid; }
  .nav a { padding: 12px 14px; border-radius: 12px; }
  .nav a:hover { background: rgba(255,255,255,.05); transform: none; }
  .nav-contact { border-radius: 12px; }

  .hero-grid { min-height: 0; grid-template-columns: 1fr; padding: 74px 0 112px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero h1 { max-width: 8ch; }
  .hero-actions { justify-content: center; }
  .hero-data { justify-content: center; text-align: left; }
  .hero-art { margin-top: 18px; }
  .logo-frame { width: min(78vw, 450px); }
  .tree-halo { width: min(88vw, 510px); }

  .split-heading,
  .support-heading,
  .modality-panel,
  .contact-panel { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; }
  .cards-two { grid-template-columns: 1fr; }
  .support-heading { gap: 22px; align-items: start; }
  .support-heading h2 { max-width: 12ch; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 210px; }
  .support-card h3 { margin-top: 48px; }
  .modality-visual { min-height: 340px; }
  .modality-copy h2 { max-width: 13ch; }
  .contact-box { max-width: 620px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); --radius-xl: 26px; --radius-lg: 22px; }
  .section { padding: 84px 0; }
  .brand > span { max-width: 215px; }
  .hero-grid { padding: 58px 0 92px; gap: 46px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.7rem); }
  .hero-lead { margin-top: 24px; font-size: 1.08rem; }
  .hero-actions { width: 100%; display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-data { gap: 14px; }
  .logo-frame { width: min(82vw, 390px); padding: 10px; border-radius: 32px; }
  .logo-frame img { border-radius: 24px; }
  .hero-art > p { max-width: 280px; line-height: 1.6; }
  .cards { margin-top: 38px; }
  .card { min-height: 300px; padding: 30px 26px; }
  .icon-circle { margin-bottom: 38px; }
  .modality-visual { min-height: 290px; }
  .modality-copy { padding: 36px 27px 40px; }
  .contact-main h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .big-phone { font-size: clamp(2.05rem, 10.8vw, 3.15rem); }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
  .footer-meta { width: 100%; justify-content: space-between; }
  .phone-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
