/* ============================================================
   Main entry — loads tokens, base, header, mega, mobile.
   Plus prototype-only hero + after-hero section.
   ============================================================ */

@import "tokens.css";
@import "base.css";
@import "header.css";
@import "mega-menu.css";
@import "mobile-nav.css";

/* ============================================================
   Hero — image background, overlay gradient, light content.
   Header sits over the top of this section.
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--topbar-h) + var(--header-h) + 80px);
  padding-bottom: 48px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 11, 0.78) 0%,
      rgba(10, 10, 11, 0.55) 28%,
      rgba(10, 10, 11, 0.48) 50%,
      rgba(10, 10, 11, 0.68) 90%,
      rgba(10, 10, 11, 0.82) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  color: var(--white);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.hero__title {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: var(--fs-18);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__actions .btn { height: 48px; padding: 0 var(--sp-6); }

.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

/* Meta strip pinned to the bottom of the hero */
.hero__meta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  margin-top: auto;            /* pushes the strip to the bottom of the hero */
  padding: 80px var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  color: var(--white);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__meta-num {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero__meta-label {
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 48px; }
  .hero__meta-num { font-size: var(--fs-20); }
}


/* ============================================================
   After-hero empty section — placeholder spacing
   ============================================================ */

.after-hero {
  background: var(--white);
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 96px var(--gutter);
}

.after-hero__inner {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.after-hero__eyebrow {
  font-size: var(--fs-11);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--text-muted);
}

.after-hero__text {
  font-size: var(--fs-18);
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-size: var(--fs-13);
  font-weight: 600;
  border-radius: var(--r-2);
  transform: translateY(-200%);
  transition: transform var(--dur) var(--ease);
  z-index: 1000;
}

.skip-link:focus { transform: translateY(0); }


/* =========================================================
   Cookie consent banner
   Injected via main.js block #09 on first visit.
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  background: var(--ink, #141414);
  color: var(--white, #fff);
  box-shadow: 0 24px 48px -16px rgba(20, 20, 20, .35);
  transform: translateY(calc(100% + 24px));
  transition: transform var(--dur, .35s) var(--ease, cubic-bezier(.22,.61,.36,1));
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 880px;
    margin: 0 auto;
  }
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
}

@media (max-width: 767.98px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 18px 20px;
  }
}

.cookie-banner__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cookie-banner__title {
  font-family: "Inter", "Noto Sans Georgian", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--white, #fff);
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .8);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--white, #fff);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--dur, .25s) var(--ease, cubic-bezier(.22,.61,.36,1));
}

.cookie-banner__text a:hover {
  color: var(--red, #e11932);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 479.98px) {
  .cookie-banner__actions { flex-direction: column; align-items: stretch; }
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: var(--white, #fff);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background var(--dur, .25s) var(--ease, cubic-bezier(.22,.61,.36,1)),
              border-color var(--dur, .25s) var(--ease, cubic-bezier(.22,.61,.36,1));
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--white, #fff);
}

.cookie-banner__btn--all {
  background: var(--red, #e11932);
  border-color: var(--red, #e11932);
}

.cookie-banner__btn--all:hover {
  background: #c2152b;
  border-color: #c2152b;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
    transform: translateY(0);
  }
}
