﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600&family=Noto+Serif+Georgian:wght@300;400;500;600&display=swap');
/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ──────────────────────────────────────────────── */
body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #0D0D0B;
  color: #EDE8DF;
  font-family: 'Noto Sans Georgian', 'Work Sans', sans-serif;
}

/* ── HEADER ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(13,13,11,.96);
  border-bottom-color: #2A2A25;
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .nav-inner { padding: 0 40px; } }

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  
}
.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: #EDE8DF;
  letter-spacing: -.02em;
  line-height: 1;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-item {
  position: relative;
  z-index: 2;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans Georgian', 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #EDE8DF;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
  position: relative;
  z-index: 2;
  padding: 0;
}
.nav-btn:hover { opacity: 1; }
.nav-btn a,
.nav-anchor {
  color: inherit;
  text-decoration: none;
}
.nav-anchor.active,
.dropdown-link.active {
  color: #C4955A;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background: #12120F;
  border: 1px solid #2A2A25;
  min-width: 220px;
  padding: 8px 0;
  z-index: 10;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}
.dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A8578;
  text-decoration: none;
  transition: color .15s;
}
.dropdown-link:hover { color: #C4955A; }

.lang-btn {
  background: none;
  border: 1px solid #2A2A25;
  cursor: pointer;
  font-family: 'Noto Sans Georgian', 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: #8A8578;
  padding: 5px 12px;
  transition: border-color .2s, color .2s;
}
.lang-btn:hover { border-color: #C4955A; color: #C4955A; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #EDE8DF;
  padding: 8px;
}
@media (max-width: 900px) { .hamburger { display: block; } }

.mobile-menu {
  display: none;
  background: #12120F;
  border-top: 1px solid #2A2A25;
  padding: 24px 20px 32px;
}
.mobile-menu.open { display: block; }
.mobile-menu > a,
.mobile-nav-group {
  display: block;
  border-bottom: 1px solid #2A2A25;
}
.mobile-menu a,
.mobile-toggle {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #EDE8DF;
  text-decoration: none;
}
.mobile-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Noto Sans Georgian', 'Work Sans', sans-serif;
  cursor: pointer;
}
.mobile-toggle svg {
  transition: transform .2s ease;
  color: #8A8578;
}
.mobile-nav-group.open .mobile-toggle svg {
  transform: rotate(180deg);
}
.mobile-submenu {
  display: none;
  padding: 0 0 10px;
}
.mobile-nav-group.open .mobile-submenu {
  display: block;
}
.mobile-submenu a {
  padding: 10px 0 10px 18px;
  color: #8A8578;
  letter-spacing: .08em;
  border-bottom: none;
}
.mobile-submenu a:last-child {
  padding-bottom: 14px;
}
.mobile-link.active {
  color: #C4955A;
}

/* ── SECTION 1: HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #2A2A25;
  padding-inline: 20px;
  padding-bottom: 64px;
  padding-top: 160px;
}
@media (min-width: 640px) { .hero { padding-inline: 40px; padding-bottom: 96px; } }
@media (min-width: 1024px) { .hero { padding-top: 192px; } }

.hero-rule {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 31%;
  border-left: 1px solid #2A2A25;
  display: none;
}
@media (min-width: 1024px) { .hero-rule { display: block; } }

.hero-inner {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-desc {
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #C4955A;
    padding-inline: 0;
    padding-top: 16px;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    gap: 20px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 0.9;
  }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #C4955A;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Noto Serif Georgian', 'Fraunces', serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.07em;
  color: #EDE8DF;
  max-width: 896px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #C4955A;
}

@media (max-width: 460px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-copy,
  .hero-title,
  .hero-desc {
    width: 100%;
    min-width: 0;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 3.5rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }
}

.hero-desc {
  max-width: 384px;
  border-left: 1px solid #C4955A;
  padding-inline: 40px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  color: #EDE8DF;
}
@media (min-width: 1024px) {
  .hero-desc { grid-column: span 3; margin-bottom: 4px; }
}

/* ── SECTION 2: LABEL BAR ────────────────────────────────── */
.label-bar {
  border-bottom: 1px solid #2A2A25;
  background: #141410;
  padding: 24px 20px;
}
@media (min-width: 640px) { .label-bar { padding-inline: 40px; } }

.label-bar-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8A8578;
}
.label-bar-inner span:first-child {
  font-size: 14px;
  color: #EDE8DF;
}

/* ── SECTION 3: LOGO GRID ────────────────────────────────── */
.logo-section {
  max-width: 1400px;
  margin-inline: auto;
  padding: 40px 20px;
}
@media (min-width: 640px) { .logo-section { padding: 64px 40px; } }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid #2A2A25;
  border-top: 1px solid #2A2A25;
}
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.logo-tile {
  position: relative;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #2A2A25;
  border-right: 1px solid #2A2A25;
  background: #DED8CB;
  padding: 20px;
  cursor: default;
}
@media (min-width: 640px) { .logo-tile { min-height: 205px; padding: 28px; } }

.logo-tile.centered {
  grid-column: 1 / -1;
  width: 50%;
  justify-self: center;
  border-left: 1px solid #2A2A25;
  border-top: 1px solid #2A2A25;
}
@media (min-width: 640px) { .logo-tile.centered { width: 33.333%; } }
@media (min-width: 1024px) { .logo-tile.centered { width: 25%; } }

.logo-index {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #746F67;
  opacity: 0;
  transition: opacity 0.3s;
}
.logo-tile:hover .logo-index { opacity: 1; }

.logo-tile img {
  max-height: 112px;
  max-width: 86%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  transition: transform 0.5s, filter 0.5s;
}
@media (min-width: 640px) { .logo-tile img { max-height: 140px; } }
.logo-tile:hover img { transform: scale(1.06); filter: grayscale(0%); }

.logo-underline {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  background: #C4955A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.logo-tile:hover .logo-underline { transform: scaleX(1); }

/* ── SECTION 4: CTA BAND ─────────────────────────────────── */
.cta-band {
  border-block: 1px solid #2A2A25;
  background: #C4955A;
  padding: 64px 20px;
  color: #0D0D0B;
}
@media (min-width: 640px) { .cta-band { padding: 96px 40px; } }

.cta-inner {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) { .cta-inner { grid-template-columns: repeat(12, 1fr); } }

.cta-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
@media (min-width: 1024px) { .cta-label { grid-column: span 3; } }

.cta-text {
  font-size: 18px;
  line-height: 2;
  max-width: 672px;
  align-self: start;
}
@media (min-width: 640px) { .cta-text { font-size: 20px; } }
@media (min-width: 1024px) { .cta-text { grid-column: span 8; } }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background-color: black;
  color: #ffffff;
  overflow: hidden;
  font-family: 'Noto Sans Georgian', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.footer-rule {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform-origin: left;
  animation: footer-grow 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes footer-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.footer-inner {
  max-width: 80rem;       
  margin: 0 auto;
  padding: 4rem 1.5rem;   
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}


.footer-logo {
  height: 5.0rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-brand-text {
  color: snow;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}


.footer-heading {
  font-family: 'Noto Sans Georgian', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.750rem;      
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: snow;
  margin: 0 0 1.25rem 0;
}

.footer-link,
.footer-text {
  font-family: 'Noto Sans Georgian', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.90rem;         
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.025em;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-text {
  color: snow;
}

.footer-text a {
  color: inherit;
  text-decoration: none;
}

.footer-text a:hover {
  color: #ffffff;
}

.footer-text--muted {
  color: rgba(255, 255, 255, 0.3);
}


.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  font-family: 'Noto Sans Georgian', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: snow;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Bottom bar ===== */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-text {
  font-family: 'Noto Sans Georgian', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
}

/* ===== Responsive: tablet (≤1024px) → 2 columns ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-inner {
    padding: 3.5rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}


@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    padding: 3rem 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
    gap: 0.75rem;
  }

  .footer-logo {
    height: 2.75rem;
  }
}

@font-face {
  font-family: 'BPG Nino Mtavruli';
  src: url('../fonts/bpg-nino-mtavruli-normal.otf') format('opentype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

body,
body * {
  font-family: 'BPG Nino Mtavruli', sans-serif !important;
}

.logo-name {
  font-family: 'Fraunces', serif !important;
}






