:root {
  --deep-green: #1E6B3A;
  --fresh-green: #4CAF50;
  --lime: #A8D62A;
  --gold: #FFC300;
  --warm-orange: #F28C1A;
  --charcoal: #1F2933;
  --bg: #F8FAFC;
  --bg-soft: #F1F5F9;
  --surface: #ffffff;
  --line: #E2E8F0;
  --text: var(--charcoal);
  --muted: #64748B;
  --green: var(--deep-green);
  --green-soft: var(--fresh-green);
  --orange: var(--warm-orange);
  --yellow: var(--gold);
  --ink: var(--charcoal);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.wp-site-blocks {
  padding-top: 0;
}

.wp-site-blocks > * + * {
  margin-block-start: 0;
}

.admin-bar .topbar {
  top: 32px;
}

.hc-front-main {
  display: block;
}

.hc-content-shell {
  width: min(980px, calc(100% - 56px));
  min-height: 56vh;
  margin-inline: auto;
  padding: 86px 0 72px;
}

.hc-content-shell .wp-block-post-title,
.hc-content-shell .wp-block-heading {
  color: var(--charcoal);
}

.hc-content-shell .wp-block-post-title a {
  color: var(--charcoal);
  text-decoration: none;
}

.hc-content-shell .wp-block-post-title a:hover,
.hc-content-shell .wp-block-query-pagination a {
  color: var(--deep-green);
}

.hc-content-shell .wp-block-post-excerpt__excerpt,
.hc-content-shell .wp-block-post-content,
.hc-content-shell p {
  color: #475569;
}

.wp-block-button__link,
.wp-element-button {
  background: linear-gradient(120deg, var(--deep-green) 0%, var(--fresh-green) 100%);
  border-radius: 999px;
  color: #fff;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

@media (max-width: 782px) {
  .admin-bar .topbar {
    top: 46px;
  }
}

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

.container {
  width: min(1240px, calc(100% - 56px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, white 8%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 126px;
  gap: 24px;
  position: relative;
}

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

.brand-logo {
  margin: 0;
  flex-shrink: 0;
  max-width: none;
}

.brand-logo a {
  display: flex;
  align-items: center;
}

.brand-logo img,
.wp-block-site-logo.brand-logo img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.wp-block-site-logo.brand-logo svg,
.wp-block-image img[src$=".svg"],
.wp-block-image img[src*=".svg?"] {
  display: block;
  height: auto;
  max-width: 100%;
}

.wp-block-site-logo.brand-logo svg {
  height: auto;
}

.brand-text strong {
  display: block;
  font-size: 1.32rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-text p {
  margin: 0;
}

.brand-name,
.brand-name a {
  color: var(--charcoal);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.brand-text small,
.brand-tagline {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-weight: 700;
  margin-top: 0.18rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 800;
}

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

.hc-navigation {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hc-navigation a {
  color: var(--muted);
  text-decoration: none;
}

.hc-navigation a:hover {
  color: var(--green);
}

.wp-block-navigation__responsive-container-open {
  width: 46px;
  height: 46px;
  border: 1px solid #d7e0ea;
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  align-items: center;
  justify-content: center;
}

.wp-block-navigation__responsive-container.is-menu-open {
  background: rgba(248,250,252,0.98);
  color: var(--charcoal);
  padding: 24px;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  align-items: flex-start;
  gap: 18px;
}

.wp-block-button.btn-contact {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.wp-block-button.btn-contact .wp-block-button__link,
.wp-block-button.btn-contact .wp-element-button {
  background: var(--orange);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.55rem;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d7e0ea;
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 84px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 48px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8e98a9;
  font-weight: 700;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.hero-title {
  margin: 18px 0 16px;
  display: grid;
  gap: 0;
}

.hero-title .hero-title-line {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-title .tone-1 { color: var(--green); }
.hero-title .tone-2 { color: var(--green-soft); }
.hero-title .tone-3 { color: #c7ced9; }

.hero-lead {
  max-width: 620px;
  color: #465b77;
  font-size: 1.08rem;
  margin-bottom: 34px;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 1.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--deep-green) 0%, var(--fresh-green) 100%);
  box-shadow: 0 12px 26px rgba(31, 122, 67, 0.24);
}

.btn-secondary {
  color: var(--green);
  border: 1px solid var(--green);
  background: transparent;
}

.wp-block-button.btn-primary .wp-block-button__link {
  background: linear-gradient(120deg, var(--deep-green) 0%, var(--fresh-green) 100%);
  box-shadow: 0 12px 26px rgba(31, 122, 67, 0.24);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions .wp-block-button.btn-secondary .wp-block-button__link,
.hero-actions .wp-block-button.btn-secondary .wp-block-button__link.wp-element-button {
  background: transparent !important;
  background-image: none !important;
  border: 1px solid var(--green) !important;
  border-radius: 999px;
  box-shadow: none !important;
  color: var(--green) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions .wp-block-button.btn-primary,
.hero-actions .wp-block-button.btn-secondary {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.hero-card {
  position: relative;
  margin-top: 100px;
  background: var(--surface);
  border-radius: 32px;
  padding: 30px 28px;
  box-shadow: 0 22px 50px rgba(16, 29, 59, 0.14);
  border: 1px solid #e3e8ef;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 0 13px 0 13px;
  background: var(--yellow);
  box-shadow: 0 10px 18px rgba(255, 196, 0, 0.25);
}

.hero-list {
  display: grid;
  gap: 16px;
}

.hero-list-item {
  display: grid;
  grid-template-columns: 8px 1fr;
  column-gap: 12px;
  row-gap: 0;
  align-items: center;
}

.hero-list-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 1px;
  grid-row: 1 / span 2;
}

.hero-list-item.dot-orange::before { background: var(--orange); }
.hero-list-item.dot-green::before { background: var(--green-soft); }
.hero-list-item.dot-lime::before { background: var(--lime); }

.hero-list-label {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #95a1b1;
  font-weight: 700;
  margin: 0;
}

.hero-list-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 2px;
  margin-bottom: 0;
}

.pillars {
  margin-top: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 8vw, 120px);
  color: #96a2b3;
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(1.4rem, 2.3vw, 2.25rem);
}

.pillars p {
  margin: 0;
}

.pillars .p1 { color: var(--yellow); }
.pillars .p2 { color: var(--orange); }
.pillars .p3 { color: var(--lime); }

.competencies {
  margin-top: 54px;
  background: var(--bg-soft);
  border-top: 1px solid #e4e8ef;
  border-bottom: 1px solid #e4e8ef;
  padding: 74px 0 82px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6fa823;
  font-weight: 800;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
}

.section-title {
  margin: 14px 0 28px;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
  max-width: none;
  white-space: nowrap;
}

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

.cards > * {
  margin-block-start: 0 !important;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid #e0e6ee;
  padding: 22px 18px 20px;
  box-shadow: 0 6px 18px rgba(15, 29, 59, 0.05);
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 0;
}

.card-icon.green { background: #edf8ef; color: var(--green); }
.card-icon.gray { background: #eef1f6; color: #65758b; }
.card-icon.orange { background: #fff5e8; color: var(--orange); }
.card-icon.yellow { background: #fffbe8; color: #a88600; }

.card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.3;
}

.card ul {
  margin: 0;
  padding-left: 1rem;
  color: #65758b;
  font-size: 0.83rem;
  display: grid;
  gap: 5px;
}

.founder {
  padding: 94px 0 84px;
}

.founder-card {
  background: var(--surface);
  border: 1px solid #dfe5ee;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 48px rgba(16, 29, 59, 0.16);
  padding: 34px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
}

.portrait {
  background: linear-gradient(180deg, #0e1f43 0%, #081733 100%);
  border-radius: 26px;
  min-height: 320px;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: 24px;
  color: #8ea7d0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.portrait p {
  margin: 0;
}

.portrait-image {
  margin-bottom: auto;
  margin-top: auto;
}

.portrait-image img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.55;
}

.expert-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  color: #8390a4;
  font-weight: 700;
}

.expert-kicker {
  margin-top: 0;
}

.expert-kicker p {
  margin: 0;
}

.expert-kicker-logo {
  margin: 0;
}

.expert-kicker-logo img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.founder h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.chip {
  background: #f3f6fb;
  border: 1px solid #dbe2ec;
  color: #516178;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.58rem;
  border-radius: 7px;
  margin: 0;
}

.quote {
  font-size: 1.06rem;
  color: #3e4f69;
  font-style: italic;
  max-width: 780px;
  margin-bottom: 20px;
}

.wp-block-button.btn-dark {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.wp-block-button.btn-dark .wp-block-button__link {
  min-height: 44px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  padding: 0 1.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wp-block-button[style*="min-height"] .wp-block-button__link,
.wp-block-button[style*="min-height"] .wp-element-button {
  min-height: inherit;
}

.band {
  border-top: 1px solid #e0e6ee;
  border-bottom: 1px solid #e0e6ee;
  background: #eef2f7;
}

.band-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ca9ba;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.band-row p {
  margin: 0;
}

.footer {
  padding: 88px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.3fr) minmax(180px, 0.55fr) minmax(160px, 0.45fr) minmax(220px, 0.7fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.footer-brand p {
  color: #5a6c85;
  max-width: 360px;
  margin: 30px 0 28px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.wp-block-social-links.socials {
  display: flex;
  gap: 10px;
  padding-left: 0;
  margin: 0;
}

.wp-block-social-links.socials .wp-social-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #dbe2ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7b90;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
}

.wp-block-social-links.socials .wp-social-link a {
  padding: 0;
}

.footer h4 {
  margin: 2px 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: #8190a6;
}

.footer-menu {
  display: grid;
  gap: 18px;
}

.footer-menu .wp-block-navigation-item__content {
  color: #10213b;
  font-size: 1.03rem;
  font-weight: 700;
}

.vcard {
  background: #eef3f8;
  border: 1px solid #dce3ed;
  border-radius: 26px;
  min-height: 190px;
  display: grid;
  place-items: center;
  color: #8b98ac;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.vcard p {
  margin: 0;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid #dde4ed;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: #9aa7b8;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-card { margin-top: 8px; max-width: 640px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-card { grid-template-columns: 1fr; }
  .portrait { min-height: 250px; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
}

@media (max-width: 860px) {
  .container { width: min(1240px, calc(100% - 32px)); }
  .nav-wrap { min-height: 78px; padding: 10px 0; }
  .wp-block-site-logo.brand-logo { max-width: min(42vw, 260px); }
  .brand-text strong { font-size: 1.05rem; }
  .brand-name,
  .brand-name a { font-size: 1.05rem; }
  .brand-text small { font-size: 0.56rem; letter-spacing: 0.1em; }
  .brand-tagline { font-size: 0.56rem; letter-spacing: 0.1em; }
  .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border: 1px solid #dbe3ed;
    border-radius: 0 0 22px 22px;
    background: rgba(248,250,252,0.98);
    box-shadow: 0 18px 32px rgba(31,41,51,0.12);
  }
  .topbar.is-open .nav-menu { display: grid; }
  .nav-links {
    display: grid;
    gap: 4px;
  }
  .nav-links a {
    display: block;
    padding: 0.82rem 0.2rem;
    font-size: 0.86rem;
  }
  .nav-menu .btn-contact {
    width: 100%;
    min-height: 48px;
  }
  .hero { padding-top: 62px; }
  .hero-title .hero-title-line { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero-lead { font-size: 1rem; }
  .pillars { margin-top: 80px; font-size: clamp(1.25rem, 8vw, 1.9rem); }
  .section-title { white-space: normal; max-width: 560px; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 56px; }
  .footer-bottom { font-size: 0.68rem; margin-top: 44px; }
  .btn-primary,
  .btn-secondary { width: 100%; }
  .founder-card { padding: 22px; border-radius: 24px; }
  .vcard { min-height: 140px; }
}
