/* ka overrides. Cormorant Garamond has no Mkhedruli glyphs, so Georgian
   falls back to Noto Sans Georgian with a reduced type scale.
   Whole rule blocks, so every declaration keeps its selector. */

/* ————————————————————————————————————————————————————
     TOKENS
  ———————————————————————————————————————————————————— */
  :root {
    /* Achromatic palette — OKLCH, no hue */
    --deep:       oklch(0.08 0 0);
    --near:       oklch(0.14 0 0);
    --graphite:   oklch(0.28 0 0);
    --silver:     oklch(0.65 0 0);
    --off:        oklch(0.96 0 0);

    /* Alpha neutrals for overlays */
    --off-4:      oklch(0.96 0 0 / 0.04);
    --off-8:      oklch(0.96 0 0 / 0.08);
    --off-12:     oklch(0.96 0 0 / 0.12);
    --off-20:     oklch(0.96 0 0 / 0.20);
    --off-40:     oklch(0.96 0 0 / 0.40);
    --off-60:     oklch(0.96 0 0 / 0.60);
    --off-80:     oklch(0.96 0 0 / 0.80);
    --deep-60:    oklch(0.08 0 0 / 0.60);
    --deep-80:    oklch(0.08 0 0 / 0.80);

    /* Typography — Cormorant Garamond lacks Mkhedruli; Noto Sans Georgian (light weight) carries both display + body for a clean, modern Georgian rendering */
    --font-display: 'Cormorant Garamond', 'Noto Sans Georgian', system-ui, -apple-system, sans-serif;
    --font-body:    'Inter', 'Noto Sans Georgian', system-ui, -apple-system, sans-serif;

    /* Easing tokens */
    --ease-entrance: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-elegant:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-exit:     cubic-bezier(0.5, 0, 0.75, 0);

    /* Spacing scale */
    --s-1:  0.25rem;
    --s-2:  0.5rem;
    --s-3:  0.75rem;
    --s-4:  1rem;
    --s-6:  1.5rem;
    --s-8:  2rem;
    --s-10: 2.5rem;
    --s-12: 3rem;
    --s-16: 4rem;
    --s-20: 5rem;
    --s-24: 6rem;
    --s-32: 8rem;
    --s-40: 10rem;

    /* Radii */
    --r-sm: 4px;
    --r-md: 10px;
    --r-lg: 18px;
    --r-xl: 28px;

    /* Nav sizing */
    --nav-h: 76px;
  }

.hero__title {
    font-size: clamp(2.6rem, 8.5vw, 7.6rem);
    font-weight: 300;
    letter-spacing: -0.045em;
    line-height: 0.94;
    color: var(--off);
    margin-bottom: var(--s-8);
  }

.section-head__title {
    font-size: clamp(1.7rem, 3.8vw, 3.0rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

.service {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--s-16);
    padding: var(--s-10) var(--s-8) var(--s-8);
    background: oklch(0.11 0 0);
    border: 1px solid var(--off-8);
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 380px;
    transition:
      transform 0.7s var(--ease-elegant),
      border-color 0.5s var(--ease-entrance),
      background-color 0.5s var(--ease-entrance);
  }

.service__body { display: flex; flex-direction: column; gap: var(--s-4); flex: 1; }

.service__title {
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.2;
    min-height: 3.6em;
  }

.car__name {
    font-size: clamp(1.1rem, 1.45vw, 1.3rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }

.advisors__title {
    font-size: clamp(1.6rem, 3.6vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--deep);
  }

@media (min-width: 900px) {
    .contact {
      padding: var(--s-32) 0 var(--s-12);
      min-height: 100vh;
    }
  }

.contact__title {
    font-size: clamp(1.8rem, 4.0vw, 3.2rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
