:root {
  --bg: #ffffff;
  --ink: #1a2016;
  --muted: #4a5346;
  --soft: #f6f7f1;
  --line: #e7e9df;
  --dark: #151b12;
  --yellow: #ffcf00;
  --yellow-soft: #ffe577;
  --green: #7cd500;
  --green-dark: #4d8f10;
  --red: #c8102e;
  --blue: #0f6d86;
  --radius: 8px;
  --shadow: 0 24px 60px -24px rgba(26, 32, 22, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 27, 18, 0.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}

.nav-inner,
.container,
.footer-inner {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link img,
.site-footer img {
  width: 82px;
  height: auto;
}

.nav-actions,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 34px;
}

.nav-links {
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 14px 26px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--yellow-soft);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-small {
  min-height: 38px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #ffffff;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 45%;
  opacity: 0.42;
  filter: saturate(0.94) contrast(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 27, 18, 0.98) 0%, rgba(21, 27, 18, 0.9) 34%, rgba(21, 27, 18, 0.54) 68%, rgba(21, 27, 18, 0.78) 100%),
    linear-gradient(180deg, rgba(21, 27, 18, 0.54), rgba(21, 27, 18, 0) 34%, rgba(21, 27, 18, 0.9) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 207, 0, 0.55) 35%, rgba(124, 213, 0, 0.55) 65%, transparent);
}

.hero-glow,
.sun-glow {
  position: absolute;
  pointer-events: none;
}

.hero-glow {
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 78% at 50% 118%, rgba(255, 207, 0, 0.5) 0%, rgba(255, 229, 119, 0.26) 22%, rgba(124, 213, 0, 0.16) 46%, rgba(21, 27, 18, 0) 72%);
}

.sun-glow {
  z-index: 1;
  left: 50%;
  bottom: -14%;
  width: min(760px, 90vw);
  height: min(760px, 90vw);
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 100%, rgba(255, 215, 40, 0.42) 0%, rgba(255, 207, 0, 0.1) 38%, transparent 62%);
  filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 150px 0 154px;
  text-align: left;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 350;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.stats-strip {
  position: relative;
  z-index: 4;
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(21, 27, 18, 0.4);
}

.stat {
  min-width: 0;
  padding: 32px 20px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.42rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0;
}

.stat:nth-child(2) strong {
  color: var(--green);
}

.stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: #ffffff;
}

.section-muted {
  background: var(--soft);
}

.split,
.leadership-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: start;
}

.split h2,
.section-heading h2,
.leadership-grid h2,
.contact-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.split p,
.leadership-grid p,
.contact-grid p,
.market-card p,
.partner-body p,
.feature-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.feature-card,
.partner-card,
.market-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-card {
  padding: 32px;
}

.accent-line {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}

.feature-card h3,
.market-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  font-weight: 800;
}

.feature-card p {
  margin-bottom: 0;
}

.practice-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.practice-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.practice-item > span {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.practice-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

.practice-item p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.horizon {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow) 38%, var(--green) 62%, transparent);
}

.section-heading {
  max-width: 840px;
  margin: 0 0 56px;
  text-align: left;
}

.section-heading .section-label {
  margin-bottom: 18px;
}

.partner-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.partner-card {
  overflow: hidden;
}

.partner-band {
  height: 4px;
}

.partner-turboden .partner-band {
  background: var(--red);
}

.partner-enogia .partner-band {
  background: var(--blue);
}

.partner-body {
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.partner-body img {
  width: auto;
  height: 38px;
  align-self: flex-start;
  margin-bottom: 20px;
  object-fit: contain;
}

.partner-meta {
  margin-bottom: 16px;
  color: var(--red) !important;
  font-size: 0.86rem !important;
  font-weight: 800;
}

.partner-enogia .partner-meta {
  color: var(--blue) !important;
}

.partner-link {
  align-self: flex-start;
  margin: 2px 0 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--green-dark) 50%, transparent);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.partner-link:hover {
  border-color: var(--yellow);
  color: var(--ink);
}

.partner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid #eceee4;
}

.partner-stats div,
.partner-stats dt,
.partner-stats dd {
  min-width: 0;
}

.partner-stats dt {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
}

.partner-stats dd {
  margin: 3px 0 0;
  color: #7b8473;
  font-size: 0.78rem;
}

.partner-summary {
  max-width: 760px;
  margin: 44px auto 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.partner-summary span {
  color: var(--green-dark);
}

.leadership-grid {
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
}

.portrait-frame {
  position: relative;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  z-index: 0;
  width: 70%;
  height: 70%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 207, 0, 0.5), rgba(124, 213, 0, 0.5));
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.leader-name {
  margin: 28px 0 5px;
  color: var(--ink) !important;
  font-size: 1.35rem !important;
  font-weight: 800;
  line-height: 1.25 !important;
}

.leader-role {
  margin-bottom: 24px;
  color: var(--green-dark) !important;
  font-size: 0.92rem !important;
  font-weight: 700;
}

.market-card {
  padding: 36px;
}

.market-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.market-title h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.market-title span {
  color: #7b8473;
  font-size: 0.88rem;
  font-weight: 700;
}

.market-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.market-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: baseline;
}

.market-list strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.market-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-story {
  max-width: 880px;
  margin: 64px 0 0;
}

.map-story .section-label {
  margin-bottom: 18px;
}

.map-story h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.map-story p:not(.section-label) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.map-panel {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(80% 90% at 50% 115%, rgba(255, 207, 0, 0.2), rgba(124, 213, 0, 0.09) 46%, transparent 74%),
    #eef2e7;
  box-shadow: 0 24px 60px -44px rgba(26, 32, 22, 0.5);
}

.map-panel iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

.contact-section,
.site-footer {
  background: var(--dark);
  color: #ffffff;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(110% 70% at 50% 118%, rgba(255, 207, 0, 0.3) 0%, rgba(124, 213, 0, 0.12) 42%, transparent 68%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-grid .section-label {
  color: var(--yellow);
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-name {
  margin-bottom: 4px;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 800;
  line-height: 1.3 !important;
}

.contact-role {
  margin-bottom: 26px;
  color: var(--green) !important;
  font-size: 0.88rem !important;
  font-weight: 700;
}

.contact-item span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-item a {
  color: inherit;
}

.contact-item a:hover {
  color: var(--yellow);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid rgba(124, 213, 0, 0.36);
  border-radius: 7px;
  background: rgba(124, 213, 0, 0.1);
  color: #7cd500 !important;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.whatsapp-link:hover {
  border-color: var(--yellow);
  background: rgba(255, 207, 0, 0.12);
  color: var(--yellow) !important;
}

.whatsapp-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.office-photo {
  overflow: hidden;
  margin: 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: 3 / 2;
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-note {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 52px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner div p {
  margin: 12px 0 0;
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-inner > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .split,
  .leadership-grid,
  .contact-grid,
  .partner-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    gap: 44px;
  }

  .portrait-frame {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .nav-inner,
  .container,
  .footer-inner,
  .hero-content {
    width: min(100% - 40px, 1120px);
  }

  .site-nav .button-small {
    min-height: 38px;
    padding-inline: 18px;
  }

  .hero-content {
    padding: 126px 0 102px;
  }

  .hero-bg-image {
    object-position: 58% 48%;
    opacity: 0.34;
  }

  .hero-copy {
    margin-bottom: 32px;
  }

  .eyebrow {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    margin: 0;
  }

  .button {
    width: 100%;
  }

  .stats-strip,
  .feature-grid,
  .partner-stats {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .section {
    padding: 84px 0;
  }

  .feature-grid {
    margin-top: 44px;
  }

  .practice-list {
    margin-top: 44px;
  }

  .practice-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .feature-card,
  .partner-body,
  .market-card,
  .contact-card {
    padding: 28px;
  }

  .partner-stats {
    gap: 14px;
  }

  .market-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .map-story {
    margin-top: 44px;
  }

  .map-panel iframe {
    height: 500px;
  }

  .footer-inner > p {
    text-align: left;
  }
}

/* Language switcher */
.language-switcher{display:flex;align-items:center;gap:3px;padding:3px;border:1px solid rgba(255,255,255,.28);border-radius:999px;background:rgba(255,255,255,.08)}
.lang-button{appearance:none;border:0;background:transparent;color:rgba(255,255,255,.72);font:inherit;font-size:.72rem;font-weight:800;line-height:1;padding:7px 8px;border-radius:999px;cursor:pointer;transition:background .18s ease,color .18s ease}
.lang-button:hover,.lang-button.is-active{background:#fff;color:#1a2016}
@media(max-width:760px){.nav-actions{gap:8px}.nav-links{display:none}.language-switcher{margin-left:auto}.lang-button{padding:7px 7px}.nav-actions>.button{padding-inline:12px}}
html[lang="ka"] body{font-family:Inter,"Noto Sans Georgian",ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
