/* ==========================================================================
   FONTS — local
   - Luxury: display (headings)
   - PP Neue Montreal: body / UI (Thin · Book · Medium · Bold + italics)
   ========================================================================== */
@font-face {
  font-family: Satoshi-Medium;
  src: url("../assets/fonts/satoshi/Satoshi-Medium.otf") format("opentype");
}

@font-face {
  font-family: Alliance;
  src: url("../assets/fonts/alliance-font/Alliance-4-Regular.otf")
    format("opentype");
}

:root {
  /* Brand colors */
  --brand: #940128;
  --brand-2: #930128;
  --brand-dark: #6a0020;

  /* Navy / dark */
  --navy: #182236;
  --navy-2: #1f2a44;
  --navy-deep: #182136;

  /* Surfaces */
  --paper: #ffffff;
  --paper-2: #f9f9f9;
  --paper-3: #f6f6f6;

  /* Text */
  --ink: #454545;
  --ink-2: #6a6a6a;
  --line: #e5e6e9;

  /* White alphas (used in dark sections) */
  --w-90: rgba(255, 255, 255, 0.9);
  --w-72: rgba(255, 255, 255, 0.72);
  --w-60: rgba(255, 255, 255, 0.6);
  --w-40: rgba(255, 255, 255, 0.4);
  --w-12: rgba(255, 255, 255, 0.12);
  --w-08: rgba(255, 255, 255, 0.08);
  --w-03: rgba(255, 255, 255, 0.03);

  /* Navy alphas */
  --n-92: rgba(24, 34, 54, 0.92);
  --n-72: rgba(24, 34, 54, 0.72);
  --n-55: rgba(24, 34, 54, 0.55);
  --n-20: rgba(24, 34, 54, 0.2);
  --n-10: rgba(24, 34, 54, 0.1);

  /* Gradients (from Figma) */
  --grad-num: linear-gradient(135deg, var(--navy) 0%, var(--brand) 110%);
  --grad-num-light: linear-gradient(135deg, #fff 0%, var(--brand) 110%);
  --grad-hero: linear-gradient(
    180deg,
    transparent 0%,
    rgba(24, 34, 54, 0.55) 35%,
    rgba(24, 34, 54, 0.92) 100%
  );
  --grad-section: linear-gradient(
    180deg,
    rgba(24, 34, 54, 0.55) 0%,
    rgba(24, 34, 54, 0.92) 100%
  );
  --grad-partner: radial-gradient(
    ellipse at top left,
    rgba(24, 34, 54, 0.6),
    rgba(24, 34, 54, 0.96) 70%
  );

  /* Type stacks — Figma uses Luxury (display) + Satoshi (body); we ship the
     "Luxury" file plus PP Neue Montreal in /assets/fonts/ and use them
     directly. The system fonts below are last-resort fallbacks only. */
  --display: "Luxury", "Times New Roman", serif;
  --Satoshi-Medium: Satoshi-Medium;
  --Alliance: Alliance;
  /* Radii (in vw at 1920 baseline) */
  --r-card: 0.94vw; /* ~18px */
  --r-btn: 0.625vw; /* ~12px */
  --r-form: 1.46vw; /* ~28px */
  --r-pill: 999px;
  --r-nav: 1.875vw; /* ~36px */

  /* Shadows */
  --shadow-soft: 0 0.73vw 2.08vw rgba(24, 34, 54, 0.1);
  --shadow-strong: 0 1.04vw 3.12vw rgba(24, 34, 54, 0.22);
  --shadow-cta: 0 0.42vw 1.25vw rgba(148, 1, 40, 0.32);

  /* Section vertical padding (in vw) */
  --section-pad: 5.21vw; /* ~100px */
  --section-pad-sm: 3.13vw; /* ~60px */

  /* ---------------------------------------------------------------
     Responsive type scale — Figma sizes mapped to clamp()
     min:  readable floor for narrow viewports
     fluid: vw value at 1920 reference
     max:  Figma design size in px
     Mobile-specific media queries continue to override these
     for small screens (<992px) — clamps only protect the
     middle range (≈900–1700px) from shrinking too small.
     --------------------------------------------------------------- */
  --fs-12: clamp(10px, 0.625vw, 12px);
  --fs-14: clamp(12px, 0.729vw, 14px);
  --fs-15: clamp(12px, 0.78vw, 15px);
  --fs-16: clamp(13px, 0.833vw, 16px);
  --fs-18: clamp(14px, 0.938vw, 18px);
  --fs-20: clamp(15px, 1.04vw, 20px);
  --fs-21: clamp(15px, 1.094vw, 21px);
  --fs-24: clamp(18px, 1.25vw, 24px);
  --fs-28: clamp(20px, 1.46vw, 28px);
  --fs-31: clamp(20px, 1.63vw, 31.279px);
  --fs-32: clamp(22px, 1.667vw, 32px);
  --fs-36: clamp(24px, 1.875vw, 36px);
  --fs-40: clamp(26px, 2.083vw, 40px);
  --fs-45: clamp(28px, 2.34vw, 45px);
  --fs-48: clamp(30px, 2.5vw, 48px);
  --fs-50: clamp(30px, 2.6vw, 50px);
  --fs-52: clamp(32px, 2.71vw, 52px);
  --fs-60: clamp(34px, 3.13vw, 60px);
  --fs-64: clamp(34px, 3.33vw, 64px);
  --fs-65: clamp(36px, 3.39vw, 65px);
  --fs-70: clamp(38px, 3.65vw, 70px);
  --fs-72: clamp(40px, 3.75vw, 72px);
  --fs-80: clamp(40px, 4.17vw, 80px);
  --fs-100: clamp(48px, 5.21vw, 100px);
  --fs-145: clamp(56px, 7.55vw, 145px);

  /* line-height tokens (mirror the type scale) */
  --lh-21: clamp(15px, 1.094vw, 21px);
  --lh-24: clamp(18px, 1.25vw, 24px);
  --lh-28: clamp(20px, 1.46vw, 28px);
  --lh-32: clamp(22px, 1.667vw, 32px);
  --lh-36: clamp(24px, 1.875vw, 36px);
  --lh-48: clamp(28px, 2.5vw, 48px);
  --lh-60: clamp(34px, 3.125vw, 60px);
  --lh-72: clamp(36px, 3.75vw, 72px);
}

/* Mobile-up vw recalibration so type stays readable on small screens.
   On <992px we re-anchor vw against a 768 baseline; on <576 against a 414 baseline.
   Achieved by scaling up specific font-size values per breakpoint below. */

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px @ 1920 */
  line-height: 1.78;
  color: var(--ink);
  background: var(--paper);
  padding-right: 0 !important ;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--brand-dark);
}
section {
  position: relative;
}
strong {
  font-weight: 600;
}

/* Lenis */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* Custom container — 90% width, capped at 1720px, centered.
   Replaces Bootstrap .container-xxl across the page. */
.custom-container {
  width: 90vw;
  margin: auto;
}

/* ==========================================================================
   Typography (vw-based — 1920 baseline)
   ========================================================================== */
.h-display,
.h-1,
.h-2,
.h-3 {
  font-family: var(--Alliance);
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
.h-display {
  font-size: var(--fs-80);
} /* 80px @ 1920 — hero */
.h-2 {
  font-size: var(--fs-48);
} /* 48px */
.h-3 {
  font-size: var(--fs-36);
} /* 36px */

.text-brand {
  color: var(--brand) !important;
}
.text-white-72 {
  color: var(--w-72) !important;
}
.text-white-60 {
  color: var(--w-60) !important;
}
.text-white {
  color: #fff !important;
}

.body-l {
  font-family: var(--Satoshi-Medium);
  font-size: var(--fs-18); /* 18px */
  line-height: 1.78; /* 32/18 */
  color: var(--ink);
  margin: 0 0 1em;
  max-width: 36em;
}
.section-dark .body-l,
.why-georgia .body-l,
.partnerships .body-l {
  color: var(--w-72);
  max-width: 38em;
}

/* Eyebrow (Satoshi 14px uppercase + accent line) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.83vw; /* ~16px */
  font-family: var(--Satoshi-Medium);
  font-size: var(--fs-14); /* 14px */
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1.25vw;
}
.eyebrow::before {
  content: "";
  width: 1.875vw;
  height: 1px; /* ~36px x 1px */
  background: currentColor;
}
.eyebrow-light {
  color: #fff;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  font-family: var(--Satoshi-Medium);
  font-size: var(--fs-18); /* 18px */
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-btn);
  padding: 0.73vw 1.46vw; /* ~14 28 */
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42vw;
  white-space: nowrap;
}
.btn-lg {
  padding: 0.94vw 1.67vw;
  font-size: var(--fs-18);
}
.btn-xl {
  padding: 1.04vw 2.08vw;
  font-size: var(--fs-20);
}
.btn-sm {
  padding: 0.52vw 1vw;
  font-size: var(--fs-14);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}
.btn-outline-brand {
  color: var(--brand);
  border-color: var(--brand);
  background: transparent;
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-2);
  color: #fff;
  border-color: var(--navy-2);
  transform: translateY(-1px);
}
.btn-ghost {
  color: #fff;
  border-color: var(--w-40);
  background: transparent;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.94vw;
  margin-top: 1.67vw;
}

/* ==========================================================================
   NAVBAR (fixed, transparent over hero, white text)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1vw 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.3s,
    padding 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s;
}
.site-header.is-scrolled {
  background: rgba(24, 34, 54, 0.92);
  padding: 0.82vw 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0.31vw 1.25vw rgba(0, 0, 0, 0.18);
}
.site-header .navbar {
  padding: 0;
}
.site-header .navbar-brand {
  padding: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.brand-logo {
  width: auto;
  height: 4.5vw; /* ~86px */
  filter: brightness(0) invert(1);
}

/* Nav links — white text, light | dividers between items, right-aligned */
.main-nav {
  gap: 0;
  align-items: center;
  flex-direction: row;
}
.main-nav .nav-item + .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.83vw; /* ~16px tall divider */
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--Satoshi-Medium);
  font-weight: 300;
  font-size: var(--fs-16); /* 16px */
  padding: 0.42vw 1.25vw; /* 8 24 — breathing room around | */
  display: inline-flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #fff;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 1.25vw;
  right: 1.25vw;
  bottom: -0.1vw;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

/* Contact Now — pill, burgundy filled, white text, phone icon */
.site-header .btn-brand {
  border-radius: var(--r-pill);
  padding: 0.73vw 1.46vw;
  font-size: var(--fs-16); /* 16px */
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-header .btn-brand:hover {
  box-shadow: 0 0.42vw 1.04vw rgba(148, 1, 40, 0.32);
}

/* ==========================================================================
   CUSTOM HAMBURGER — animated 3 bars → X
   ========================================================================== */
.hamburger {
  display: none; /* visible only on mobile */
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hamburger:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.hamburger-box {
  position: relative;
  width: 26px;
  height: 18px;
  display: inline-block;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.6, 0.05, 0.28, 1.55),
    top 0.25s ease-in-out 0.15s,
    bottom 0.25s ease-in-out 0.15s,
    width 0.25s ease;
}
.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  left: 0;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  top: 8px;
}

/* Active state — bars morph to X */
.hamburger--active .hamburger-inner {
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 0.15s;
}
.hamburger--active .hamburger-inner::before {
  top: 0;
  transform: rotate(0deg);
  transition-delay: 0.15s, 0s, 0s, 0s;
  width: 0;
  opacity: 0;
}
.hamburger--active .hamburger-inner::after {
  top: 0;
  transform: rotate(-90deg);
  transition-delay: 0.15s, 0s, 0s, 0s;
}

/* ==========================================================================
   CUSTOM MOBILE MENU (slide-out from right)
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.35s;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 380px);
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.18, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu-head .brand-logo {
  height: 36px;
  filter: brightness(0) invert(1);
}

.mobile-menu-body {
  padding: 20px 22px 28px;
}
.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
  transition:
    color 0.2s,
    padding 0.2s;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  padding-left: 12px;
}
.mobile-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--brand);
  transform: translateY(-50%);
  transition: width 0.25s;
}
.mobile-nav a:hover::before {
  width: 8px;
}
.mobile-menu-body .btn {
  justify-content: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9vw 0 6vw; /* clears fixed nav */
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  width: 111.43%;
  height: 111.44%;
  left: -10.58%;
  top: -12.56%;
  max-width: none;
  object-fit: cover;
}
/* Carousel fills the full hero background */
.hero-bg-wrap .carousel,
.hero-bg-wrap .carousel-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg-wrap .carousel-item {
  height: 100%;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 11, 0.72) 0%,
    rgba(5, 7, 11, 0.45) 40%,
    rgba(5, 7, 11, 0.55) 65%,
    rgba(24, 34, 54, 0.95) 100%
  );
}

/* Decorative 3 vertical lines bottom-right of hero */
.hero-decor-lines {
  position: absolute;
  right: 5vw;
  bottom: 2.5vw;
  display: flex;
  gap: 0.42vw;
  z-index: 0;
}
.hero-decor-lines span {
  display: block;
  width: 1px;
  height: 5.21vw; /* 100px */
  background: var(--w-40);
}
.hero-decor-lines span:nth-child(2) {
  height: 7.81vw;
}
.hero-decor-lines span:nth-child(3) {
  height: 6.25vw;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Hero headline — Figma: Luxury Regular 48/72, uppercase, white */
.hero-title {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-48); /* 48px @ 1920 */
  line-height: var(--lh-72); /* 72px */
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #fff;
  margin: 1.04vw 0 1.46vw; /* 20 28 */
}
.hero-title .text-brand {
  color: var(--brand) !important;
}

/* Hero body — Figma: Satoshi Regular 18/32, capitalize style */
.hero-body {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: 1.78; /* 32/18 */
  color: var(--w-72);
  max-width: 36em;
  margin: 0 0 1.67vw;
}
.hero-body strong {
  color: #fff;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.94vw;
  margin-top: 1.04vw;
}

/* HERO FORM CARD — Figma exact */
.hero-form-card {
  background: var(--w-03);
  backdrop-filter: blur(0.94vw);
  -webkit-backdrop-filter: blur(0.94vw);
  border: 1px solid var(--w-12);
  border-radius: var(--r-form);
  padding: 2.08vw 2.08vw 1.67vw; /* ~40 40 32 */
  color: #fff;
  box-shadow: var(--shadow-strong);
}

/* Form title — Figma: Luxury Regular 40px / line 60 / tracking -1.35 */
.hero-form-card .form-title {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-40); /* 40px */
  line-height: var(--lh-60); /* 60px */
  letter-spacing: -0.034em; /* -1.35px on 40px */
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
/* Form sub — Figma: Satoshi Light 16/24 */
.hero-form-card .form-sub {
  font-family: var(--Satoshi-Medium);
  font-weight: 300;
  font-size: var(--fs-16); /* 16px */
  line-height: 1.5; /* 24/16 */
  color: var(--w-72);
  margin: 0.42vw 0 0;
}
.form-divider {
  border: 0;
  border-top: 1px solid var(--w-12);
  margin: 1.25vw 0; /* 24px */
}

/* Labels — Figma: Satoshi Regular 14px white */
.hero-form-card .form-label {
  color: #fff;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px */
  letter-spacing: 0.02em;
  margin-bottom: 0.625vw; /* 12 */
}
.opt {
  color: var(--w-60);
  font-weight: 400;
  font-size: var(--fs-12);
}

/* Inputs — Figma: Satoshi Regular 18px / placeholder rgba(255,255,255,.6) tracking 0.4 */
.hero-form-card .form-control,
.hero-form-card .form-select,
.hero-form-card .input-group-text {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--w-12);
  color: #fff;
  border-radius: 0.625vw; /* 12px */
  padding: 0.83vw 1.04vw; /* 16 20 */
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  letter-spacing: 0.022em; /* tracking 0.4 / 18 */
  line-height: 1.4;
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  background: var(--w-08);
  /* border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(148, 1, 40, 0.2); */
  color: #fff;
}

.hero-form-card .form-control::placeholder {
  color: var(--w-60);
}
.hero-form-card .input-group .form-control {
  border-left: 0;
}
.hero-form-card .input-group-text {
  border-right: 0;
}

.hero-form-card .form-select option {
  background-color: var(--navy);
  color: #fff;
}

/* Channel button group — Figma: Phone (selected white) | WhatsApp | Telegram | Email */
.channel-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5vw; /* 8 */
}
.channel-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--w-12);
  color: var(--w-72);
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px */
  padding: 0.73vw 0.31vw;
  border-radius: 0.52vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0;
}
.channel-btn i {
  font-size: var(--fs-16);
}
.channel-btn:hover {
  background-color: #fff !important;
  color: #fff;
}
.btn-check:checked + .channel-btn {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* Checkbox + label */
.hero-form-card .form-check {
  padding-left: 1.6em;
  margin-top: 0.83vw;
}
.hero-form-card .form-check-label {
  color: var(--w-72);
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px */
  cursor: pointer;
}

.form-check-input {
  width: 20px;
  height: 20px;
}

.invalid-feedback.d-block-on-invalid {
  display: block;
}

.hero-form-card .form-check-input {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--w-40);
  margin-top: 0.25em;
}
.hero-form-card .form-check-input:checked,
.form-check-input:checked {
  background-color: var(--brand);
  border-color: transparent;
}

/* Submit — Figma: Satoshi Regular 18px, #f9f9f9 on #930128 */
.hero-form-card button[type="submit"] {
  font-family: var(--Satoshi-Medium);
  font-weight: 500;
  font-size: var(--fs-18); /* 18px */
  color: var(--paper-2); /* #f9f9f9 */
  background: var(--brand-2);
  border-color: var(--brand-2);
  border-radius: 0.625vw;
  padding: 1.04vw 1.46vw; /* 20 28 */
}

.hero-form-card .invalid-feedback {
  color: #fff;
}

.hero-form-card button[type="submit"]:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* ==========================================================================
   MEDIA BAR
   ========================================================================== */
.media-bar {
  background: var(--navy-deep);
  padding: 1.25vw 0;
  border-top: 1px solid var(--w-08);
  border-bottom: 1px solid var(--w-08);
}
.media-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 2.5vw;
  justify-content: center;
}
.media-label {
  font-family: var(--Satoshi-Medium);
  font-weight: 300;
  font-size: var(--fs-14);
  letter-spacing: 0.04em;
  color: var(--w-40);
  white-space: nowrap;
}
.media-divider {
  width: 1px;
  height: 1.67vw;
  min-height: 20px;
  background: var(--w-12);
  flex-shrink: 0;
}
.media-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 2.8vw;
  align-items: center;
}
.media-logo-img {
  height: 26px;
  width: auto;
  opacity: 0.75;
  display: block;
  transition: opacity 0.25s ease;
}
.media-logo-img:hover {
  opacity: 1;
}
.media-logos span {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-28);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: var(--w-72);
  line-height: 1;
}

/* ==========================================================================
   SECTION SHELL — backgrounds, overlays
   ========================================================================== */
.bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* ==========================================================================
   WHY GEORGIA — Macro Case (towers bottom-left, 2-col offset layout)
   ========================================================================== */
.why-georgia {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 4vw 0 30vw 0;
  isolation: isolate;
  overflow: hidden;
}

.why-georgia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/overview/overview.jpg") no-repeat center
    center/cover;
  z-index: -2;
  width: 100%;
  height: 100%;
  /* background-size: 100% 100%; */
}

.why-overlay {
  position: absolute;
  inset: 0;
  background:
    /* darken sky/top so headline reads */
    linear-gradient(
      180deg,
      rgba(24, 34, 54, 0.78) 0%,
      rgba(24, 34, 54, 0.35) 35%,
      rgba(24, 34, 54, 0.65) 100%
    ),
    /* keep right side darker (where the stats are) so towers don't bleed there */
    linear-gradient(
        90deg,
        transparent 0%,
        transparent 40%,
        rgba(24, 34, 54, 0.85) 70%,
        rgba(24, 34, 54, 0.95) 100%
      );
  z-index: -1;
}
.why-content {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw 6vw;
}
.why-left {
  padding-top: 3vw;
}
.why-right {
  padding-top: 20vw;
} /* offset down — copy starts mid-section */

.why-headline {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-48); /* 48px @ 1920 */
  line-height: 1.18; /* tighter, matches Figma */
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.25vw;
}
.why-sub {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-36); /* 36px */
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.94vw;
}

.why-body {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px — matches Figma small body */
  line-height: 1.78; /* 25/14 */
  color: var(--w-72);
  text-transform: capitalize;
  letter-spacing: 0.01em;
  margin: 0 0 1.5vw;
  width: 30em;
  max-width: 100%;
}

/* eyebrow override for this section — uppercase Satoshi, smaller, with em-dash */
.why-georgia .eyebrow {
  font-size: var(--fs-14);
  letter-spacing: 0.18em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.04vw;
}

.why-georgia .eyebrow::before {
  width: 1.04vw; /* shorter dash */
  height: 1px;
  background: currentColor;
}

.why-cta {
  border-radius: var(--r-pill);
  padding: 0.83vw 1.46vw;
  font-size: var(--fs-16);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.why-cta:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.why-stats {
  margin-top: 2.08vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.08vw 4vw;
}
.why-stat {
  display: flex;
  flex-direction: column;
}
.why-num {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-100); /* 100px — matches Figma */
  line-height: 1;
  letter-spacing: -0.012em;
  color: #fff;
  display: inline-block;
}
.why-num sup {
  font-size: 0.3em; /* ~30px on 100px */
  font-weight: 400;
  margin-left: 0.1em;
  vertical-align: baseline;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.why-label {
  margin-top: 0.42vw;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px */
  line-height: 1.4;
  color: var(--w-72);
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   STATS GRID (2x2 layout)
   ========================================================================== */
.stats-grid {
  display: grid;
  gap: 2.5vw 3.13vw; /* ~48 60 */
  margin-top: 2.08vw;
}
.stats-2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stat {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.04vw;
  border-left: 1px solid var(--w-12);
}
.stats-light .stat {
  border-left-color: var(--n-10);
}

.stat-num {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-80); /* 80px */
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--grad-num-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stats-light .stat-num {
  background: var(--grad-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num small {
  font-size: 0.42em;
  margin-left: 0.1em;
  letter-spacing: 0.02em;
  vertical-align: 0.4em;
  opacity: 0.8;
}
.stat-label {
  margin-top: 0.94vw;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: 1.78;
  color: var(--w-72);
}
.stats-light .stat-label {
  color: var(--ink);
}

/* ==========================================================================
   TRACK RECORD
   ========================================================================== */
.track-record {
  background: #fff;
  padding: 5.21vw 0 0;
  position: relative;
  overflow: hidden;
}
.track-top {
  position: relative;
  z-index: 2;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw 5vw;
  align-items: start;
}

/* 2 × 2 stats grid (left half) */
.track-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.13vw 4vw; /* ~60 76 */
}
.track-stat {
  display: flex;
  flex-direction: column;
}
.t-num {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-100); /* 100px @ 1920 */
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--brand);
  display: inline-block;
}
.t-num sup {
  font-size: 0.3em; /* ~30px */
  font-weight: 400;
  margin-left: 0.1em;
  vertical-align: 1.6em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
}
.t-label {
  margin-top: 0.42vw;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-16); /* 16px */
  line-height: 1.4;
  color: var(--ink);
  text-transform: capitalize;
}

/* Right column — copy + CTAs */
.track-copy {
  padding-top: 1vw;
}
.track-record .eyebrow {
  color: var(--brand);
  margin-bottom: 1.04vw;
}
.track-title {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-48); /* 48px */
  line-height: 1.18;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.46vw;
}
.track-body {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-16); /* 16px */
  line-height: 1.78;
  color: var(--ink);
  text-transform: capitalize;
  letter-spacing: 0.01em;
  margin: 0 0 1.67vw;
  max-width: 32em;
}
.track-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.94vw;
}
.track-record .btn {
  border-radius: var(--r-pill);
  padding: 0.83vw 1.46vw;
  font-size: var(--fs-16); /* 16px */
}

/* Bottom scene — full-width Tbilisi towers image */
.track-scene {
  position: relative;
  width: 100%;
  height: 38vw; /* ≈730px at 1920 */
  margin-top: 3.13vw;
  background: url("../assets/images/sections/track-2.webp") no-repeat center
    bottom;
  background-size: cover;
}
.track-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, transparent 22%);
  pointer-events: none;
}
/* Fade the bottom of the park image into the navy of the next section */
.track-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(24, 34, 54, 0.6) 60%,
    var(--navy) 100%
  );
  pointer-events: none;
}

/* ==========================================================================
   PARTNERSHIPS — dark, logo grid
   ========================================================================== */
.partnerships {
  position: relative;
  background: var(--navy);
  padding: 5.21vw 0; /* ~100px */
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
/* Batumi towers silhouette — full bleed */
.partner-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/sections/partnerships.webp") no-repeat
    center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: -2;
}
/* Single subtle gradient — keeps towers visible while preserving copy contrast */
.partner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 34, 54, 0.25) 0%,
    rgba(24, 34, 54, 0.35) 40%,
    rgba(24, 34, 54, 0.55) 75%,
    rgba(24, 34, 54, 0.7) 100%
  );
  z-index: -1;
}
/* Decorative rotated line top-left */
.partner-decor {
  position: absolute;
  left: -10%;
  top: -6%;
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: rotate(-32deg);
  pointer-events: none;
}
.partner-content {
  position: relative;
  z-index: 1;
}

/* 2-column row — copy left, logos right */
.partner-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 4vw;
  align-items: center;
  min-height: 36vw; /* ≈700 at 1920 */
}

.partner-copy {
  padding-left: 1vw;
}
.partner-title {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-64);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.46vw;
}
.partner-body {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px */
  line-height: 1.78;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  max-width: 30em;
  margin: 0;
}

/* 3×2 logo card — subtle glass with internal dividers */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.94vw;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.partner-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9vw; /* ~173px */
  padding: 1.67vw 2.08vw;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s;
}
.partner-cell:nth-child(3n) {
  border-right: 0;
}
.partner-cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.partner-cell:hover {
  background: rgba(255, 255, 255, 0.04);
}
.partner-cell img {
  max-height: 3.65vw; /* ~70px */
  max-width: 84%;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.partner-cell:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* ==========================================================================
   PORTFOLIO — alternating cards w/ HUGE numerals
   ========================================================================== */
/* ==========================================================================
   PORTFOLIO — Figma 42:7310
   ========================================================================== */
.portfolio {
  padding: 5.21vw 0 0;
  background: #fff;
  position: relative;
}

/* Section header — centered */
.portfolio-head {
  max-width: 49.27vw; /* 946px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.94vw; /* 18px between eyebrow + title */
}
.portfolio-eyebrow {
  margin: 0;
  letter-spacing: 0;
  font-weight: 400;
  gap: 0.26vw; /* 5px line-to-text */
}
.portfolio-eyebrow::before {
  width: 1.04vw; /* 20px */
}
.portfolio-title {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-48); /* 48px */
  line-height: var(--lh-72); /* 72px */
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy);
  max-width: 45.16vw; /* 867px */
  margin: 0;
}
.portfolio-sub {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: var(--lh-32); /* 32px */
  text-align: center;
  text-transform: capitalize;
  color: var(--ink);
  max-width: 49.27vw; /* 946px */
  margin: 1.04vw 0 0; /* ~20px from title */
}

/* Each address — full-width slab, image right, text left */
.address {
  position: sticky;
  top: 0;
  background: #fff;
  overflow: hidden;
  margin-top: 5vw;
}

.address-grid {
  display: grid;
  min-height: 100dvh; /* sticky reveal still works; grows for tall content */
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
}

.address-body {
  position: relative;
  display: flex;
  align-items: flex-start; /* anchor to top of column so nothing spills off the bottom */
  padding: 12.29vw 0 6.25vw 6.77vw; /* top:236px  bottom:120px  left:130px (extra bottom-pad keeps the Explore Now link off the card edge) */
}
.address-inner {
  position: relative;
  width: 100%;
  max-width: 35.42vw; /* 680px */
  display: flex;
  flex-direction: column;
}

/* Big watermark numeral — sits near the column boundary, top of card */
.address-num {
  position: absolute;
  top: -9.95vw; /* lifts it above content (figma top:45 - body top:236 = -191) */
  left: calc(
    33.33vw - 6.77vw + 6.3vw
  ); /* roughly figma 33.33%+121px translated within body col */
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-145); /* 145px */
  line-height: 1;
  color: var(--brand);
  opacity: 0.15;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* Pill badge — outlined red, rounded full */
.badge-flag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-14); /* 14px */
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 0.625vw 0.83vw; /* 12px 16px */
  border-radius: 2.03vw; /* 39px */
  margin: 0;
  white-space: nowrap;
}

/* Title — Luxury (compressed to fit sticky viewport) */
.address-title {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-64); /* was 80px */
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0.83vw 0 0; /* 16px from pill */
}

/* Tagline — Satoshi Light brand-red */
.address-tagline {
  font-family: var(--Satoshi-Medium);
  font-weight: 300;
  font-size: var(--fs-20); /* was 24px */
  line-height: var(--lh-32); /* was 36px */
  color: var(--brand);
  text-transform: capitalize;
  letter-spacing: 0;
  margin: 0.42vw 0 0; /* 8px gap */
}

/* Description body — navy */
.address-desc {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-16); /* was 18px */
  line-height: var(--lh-28); /* was 32px */
  color: var(--navy);
  text-transform: capitalize;
  letter-spacing: 0;
  margin: 1.04vw 0 0; /* 20px gap */
  max-width: 35.42vw;
}

/* Divider */
.address-divider {
  border: 0;
  border-top: 0.6px solid rgba(24, 34, 54, 0.3);
  width: 100%;
  max-width: 35.42vw;
  margin: 1.04vw 0 0; /* 20px gap */
  opacity: 1;
}

/* Stats — 2-col grid, third stat spans full width */
.address-stats {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 1.875vw; /* 36px */
  row-gap: 1.46vw; /* 28px */
  margin: 1.46vw 0 0; /* 28px gap from divider */
}
.addr-stat {
  display: flex;
  flex-direction: column;
  gap: 0.52vw; /* 10px label-to-value */
}
.addr-stat-full {
  grid-column: 1 / -1;
}
.addr-label {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-16); /* was 18px */
  line-height: var(--lh-24); /* was 32px */
  color: var(--navy);
  text-transform: capitalize;
  letter-spacing: 0;
}
.addr-num {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.52vw; /* 10px */
  line-height: 1;
}
.addr-num-val {
  font-family: var(--Alliance);
  font-weight: 400;
  /* font-size: var(--fs-40);  */
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--brand);
}
.addr-num-suffix {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-24); /* was 31.279px */
  line-height: 1;
  letter-spacing: 0;
  text-transform: capitalize;
  background: linear-gradient(154.17deg, var(--brand) 1.56%, #ffffff 107.58%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.2vw; /* baseline alignment with main */
}

/* Explore Now — vertical stack: text + 39px line under it */
.address-explore {
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.31vw; /* 6px */
  margin: 1.46vw 0 0; /* 28px gap from stats */
  font-family: var(--Satoshi-Medium);
  font-weight: 500;
  font-size: var(--fs-15); /* 15px */
  line-height: 1;
  letter-spacing: 0.13em; /* ~2px */
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  cursor: pointer;
  width: max-content;
  transition:
    color 0.2s,
    gap 0.2s;
}
.address-explore::after {
  content: "";
  display: block;
  width: 2.03vw; /* 39px */
  height: 1px;
  background: currentColor;
  transition: width 0.2s;
}
.address-explore:hover {
  color: var(--brand-dark);
  gap: 0.5vw;
}
.address-explore:hover::after {
  width: 3vw;
}

/* Image column — full bleed to right edge */
.address-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 49.69vw;
}
.address-img-1 {
  background-image: url("../assets/images/projects/tbilisi-tower.webp");
}

.address-img-2 {
  background-image: url("../assets/images/projects/batumi-beachfront.webp");
}
.address-img-3 {
  background-image: url("../assets/images/projects/9.png");
}

.address-img-4 {
  background-image: url("../assets/images/projects/2.png");
}
/* ==========================================================================
   INVESTOR'S MATH — Figma 42:7313
   ========================================================================== */
.investor-math {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.math-card {
  position: relative;
  background: #fff;
  border-radius: 0.985vw; /* 18.907px */
  padding: 7.135vw 5.21vw; /* ~137px 100px */
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 0 4vw;
  overflow: hidden;
  box-shadow: 0 1.25vw 4vw rgba(0, 0, 0, 0.25);
  isolation: isolate;
}
.math-card-bg {
  position: absolute;
  inset: 0 auto 0 0; /* fill the card vertically, anchor left */
  width: 38%;
  max-width: 32vw;
  background-image: url("../assets/images/sections/math-watermark.webp");
  background-size: auto 110%; /* fill height, preserve aspect ratio */
  background-position: 22% center; /* show the towers, hide the track */
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: grayscale(1) contrast(1.05);
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 35%,
    transparent 100%
  );
  mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.math-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.13vw; /* 60px */
  row-gap: 3.13vw;
  justify-items: center;
  width: 100%;
  max-width: 23.65vw; /* 454px */
  margin-left: auto;
  margin-right: auto;
}
.math-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.04vw; /* 20px */
  width: 10.26vw; /* 197px */
}
.math-num {
  display: flex;
  align-items: flex-end;
  gap: 0.7vw; /* 13.342px */
  line-height: 1;
}
.math-num-val {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-70); /* renders ~70px so the 40px glyph height matches */
  line-height: 1;
  letter-spacing: 0;
  color: var(--brand);
}
.math-num-suffix {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-31); /* 31.279px */
  line-height: 1;
  letter-spacing: 0;
  text-transform: capitalize;
  background: linear-gradient(161.2deg, var(--brand) 1.56%, #ffffff 107.58%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.2vw; /* baseline alignment with main number */
}
.math-num-suffix-wide {
  background: linear-gradient(169.1deg, var(--brand) 1.56%, #ffffff 107.58%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.math-stat-label {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: var(--lh-32); /* 32px */
  color: var(--navy);
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}

.math-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 30.52vw; /* 586px */
  background: rgba(0, 0, 0, 0.18);
  align-self: center;
  justify-self: center;
}

.math-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.667vw; /* 32px between groups */
  max-width: 33.33vw; /* 640px */
  justify-self: start;
  padding-left: 2.5vw;
}
.math-eyebrow {
  margin: 0;
  letter-spacing: 0;
  font-weight: 400;
  gap: 0.26vw; /* 5px */
}
.math-eyebrow::before {
  width: 1.04vw; /* 20px */
}
.math-title {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-48); /* 48px */
  line-height: var(--lh-72); /* 72px */
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin: -0.94vw 0 0; /* tighten gap to eyebrow (figma 18px not 32px) */
}
.math-body {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: var(--lh-32); /* 32px */
  color: var(--ink);
  text-transform: capitalize;
  margin: 0;
}

.math-ctas {
  display: flex;
  gap: 0.94vw; /* 18px */
  margin-top: 0.21vw;
}
.math-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42vw; /* 8px */
  padding: 0.625vw 0.83vw; /* 12px 16px */
  border: 0;
  border-radius: 0.625vw; /* 12px */
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: 1;
  color: #f9f9f9;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.math-btn i {
  font-size: var(--fs-24); /* 24px */
  line-height: 1;
}
.math-btn-navy {
  background: var(--navy);
}
.math-btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}
.math-btn-brand {
  background: var(--brand-2);
}
.math-btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   FAQ — Figma 42:7361
   ========================================================================== */
.faq {
  padding: var(--section-pad) 0;
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 719fr 945fr;
  gap: 4vw;
  align-items: start;
}
.faq-aside {
  display: flex;
  flex-direction: column;
  gap: 1.667vw; /* 32px */
  max-width: 37.45vw; /* 719px */
  padding-top: 0.52vw;
}
.faq-eyebrow {
  margin: 0;
  letter-spacing: 0;
  font-weight: 400;
  gap: 0.26vw; /* 5px between line + label */
}
.faq-eyebrow::before {
  width: 1.04vw; /* 20px */
}
.faq-title {
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-48); /* 48px */
  line-height: var(--lh-72); /* 72px */
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin: -0.94vw 0 0; /* tighten gap to eyebrow (figma 18px) */
}
.faq-body {
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: var(--lh-32); /* 32px */
  color: var(--ink);
  text-transform: capitalize;
  margin: 0;
}
.faq-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.42vw; /* 8px */
  padding: 0.625vw 0.83vw; /* 12px 16px */
  border: 0;
  border-radius: 0.625vw; /* 12px */
  background: var(--brand-2);
  color: #f9f9f9;
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-18); /* 18px */
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.faq-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  color: #f9f9f9;
}
.faq-cta i {
  font-size: var(--fs-24); /* 24px */
  line-height: 1;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.875vw; /* 36px */
  max-width: 49.22vw; /* 945px */
}

.faq-card.accordion-item {
  background: #fff;
  border: 0.6px solid var(--navy-deep);
  border-radius: 0.625vw; /* 12px */
  overflow: hidden;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    border-radius 0.35s ease;
}
.faq-card.accordion-item:has(.collapse.show) {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  border-radius: 1.25vw; /* 24px when expanded */
}

.faq-q.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.46vw 2.08vw; /* 28px 40px */
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-24); /* 24px */
  line-height: var(--lh-48); /* 48px */
  letter-spacing: 0;
  color: var(--navy-deep);
  text-align: left;
  text-transform: capitalize;
  border-radius: 0.625vw;
  box-shadow: none;
}
.faq-q.accordion-button::after {
  display: none;
}
.faq-q.accordion-button:not(.collapsed) {
  color: #fff;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.faq-q.accordion-button:focus {
  box-shadow: none;
}
.faq-q-text {
  flex: 1 1 auto;
  white-space: normal;
}
.faq-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.34vw; /* 45px */
  height: 2.34vw;
  border-radius: 50%;
  background: var(--brand-2);
  color: #fff;
  font-size: var(--fs-20); /* ~20px arrow */
  transition:
    transform 0.35s ease,
    background-color 0.2s;
}
.faq-q.accordion-button.collapsed .faq-toggle {
  transform: rotate(180deg);
}
.faq-q.accordion-button:hover .faq-toggle {
  background: var(--brand-dark);
}

.faq-a.accordion-body {
  padding: 0 2.08vw 1.46vw; /* match question side padding */
  font-family: var(--Satoshi-Medium);
  font-weight: 400;
  font-size: var(--fs-16); /* 16px */
  line-height: var(--lh-32); /* 32px */
  color: #fff;
  text-transform: capitalize;
  background: transparent;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 5vw 0 30vw 0; /* 100px top */
  isolation: isolate;
  overflow: hidden;
  min-height: 32vw;
}
.footer-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30vw;
  background-image: url("../assets/images/sections/footer-skyline.webp");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.5;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 34, 54, 0) 50%,
    rgba(24, 34, 54, 0.8) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.footer-grid {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 4vw;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  align-items: flex-start;
}
.footer-logo {
  filter: brightness(0) invert(1);
  height: 8.75vw; /* 168px @ 1920 */
  width: auto;
  display: block;
}
.footer-socials {
  display: flex;
  gap: 0.52vw;
  margin: 0;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.82vw; /* 35px */
  height: 1.82vw;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: var(--fs-16);
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.footer-socials a:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5vw;
  padding-top: 0.5vw;
  margin-left: 6vw;
}
.footer-col h6 {
  color: #fff;
  font-family: var(--Alliance);
  font-weight: 400;
  font-size: var(--fs-24); /* 24px */
  line-height: var(--lh-48); /* 48px */
  letter-spacing: 0;
  text-transform: capitalize;
  margin: 0 0 1.25vw;
}
.footer-address {
  font-style: normal;
  font-family: var(--Satoshi-Medium);
  color: #fff;
  font-size: var(--fs-16); /* 16px */
  line-height: var(--lh-32); /* 32px */
  font-weight: 700;
  margin: 0;
}
.footer-address-sm {
  font-size: var(--fs-14); /* 14px */
  line-height: var(--lh-21); /* 21px */
  font-weight: 400;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-links li {
  margin: 0;
}
.footer-links a {
  display: block;
  font-family: var(--Satoshi-Medium);
  font-weight: 700;
  font-size: var(--fs-16); /* 16px */
  line-height: var(--lh-32); /* 32px */
}

.footer-up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.39vw; /* 65px */
  height: 3.39vw;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: var(--fs-24);
  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.2s;
  margin-top: 2.71vw; /* sits below the LOGO height like in figma */
}
.footer-up:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 2.6vw 0 0.78vw;
  opacity: 1;
}
.footer-fine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  font-family: var(--Satoshi-Medium);
  color: #fff;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 3.7vw; /* 71px */
  font-size: var(--fs-18); /* 18px / 16px */
  text-transform: capitalize;
}
.footer-legal > span:nth-child(3) {
  font-size: var(--fs-16); /* 16px */
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.42vw;
  font-size: var(--fs-16);
  font-weight: 400;
  text-transform: capitalize;
}
.footer-credit-mark {
  font-family: var(--Alliance);
  font-weight: 600;
  font-size: var(--fs-20);
  letter-spacing: 0.02em;
}
.footer-credit-mark sup {
  font-size: 0.55em;
  margin-left: 1px;
}

/* ==========================================================================
   COMMON MODAL
   ========================================================================== */
#mainModalPopup .modal-content {
  border: 0;
  border-radius: 1.04vw;
  overflow: hidden;
  box-shadow: 0 1.56vw 4.17vw rgba(0, 0, 0, 0.45);
}
.modal-aside {
  position: relative;
  background: var(--navy) url("../assets/images/projects/tbilisi-tower.webp")
    center / cover;
  min-height: 100%;
  color: #fff;
}
.modal-aside-overlay {
  position: absolute;
  inset: 0;
  padding: 1.875vw 1.46vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.73vw;
  background: linear-gradient(
    180deg,
    rgba(24, 34, 54, 0.4),
    rgba(24, 34, 54, 0.92)
  );
}
.modal-aside .h-3 {
  color: #fff;
  font-size: var(--fs-28);
}
.modal-list {
  font-size: var(--fs-16);
  color: var(--w-72);
}
.modal-list li {
  margin-bottom: 0.31vw;
}
.modal-form-wrap {
  padding: 1.875vw 1.875vw 1.46vw;
}
#mainModalPopup .btn-close {
  margin-bottom: 0.42vw;
}
.modal-title {
  font-family: var(--Alliance);
  font-weight: 500;
  font-size: var(--fs-32);
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.31vw;
}
.modal-sub {
  font-size: var(--fs-16);
  color: var(--ink-2);
  margin-bottom: 1.04vw;
}

#mainModalPopup .form-control,
#mainModalPopup .input-group-text {
  border-radius: 0.52vw;
  border: 1px solid var(--line);
  padding: 0.73vw 0.94vw;
  background-color: #fff;
  font-size: var(--fs-16);
}
#mainModalPopup .form-control:focus {
  /* border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(148, 1, 40, 0.15); */
}
#mainModalPopup .form-label {
  font-size: var(--fs-14);
}
#mainModalPopup .form-check-label {
  font-size: var(--fs-14);
}
.modal-success {
  text-align: center;
  padding: 1.56vw 0.52vw;
}
.modal-success .success-icon i {
  font-size: var(--fs-60);
  color: #22a06b;
}
.modal-success .h-3 {
  font-size: var(--fs-28);
  margin: 0.42vw 0 0.31vw;
}
.modal-success p {
  font-size: var(--fs-18);
}

/* ==========================================================================
   FORM INVALID HELPERS
   ========================================================================== */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: transparent;
}

.form-control.is-valid,
.was-validated .form-control:valid,
.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: transparent;
}

.was-validated .form-check-input:invalid:not(:checked) ~ .form-check-label {
  color: #dc3545;
}
.invalid-feedback {
  font-size: var(--fs-12);
}

/* ==========================================================================
   AOS / motion preferences
   ========================================================================== */

/* ==========================================================================
   RESPONSIVE — scale vw values up at smaller breakpoints
   ========================================================================== */

.btn-close {
  width: 0.85em;
  height: 0.85em;
}

/* When mobile menu collapse height ≤lg breakpoint */

/* ==========================================================================
   RESPONSIVE — all media queries consolidated
   ========================================================================== */

@media (max-width: 1399px) {
  .h-display {
    font-size: 4.6vw;
  }
  .h-2 {
    font-size: 3vw;
  }
  .h-3 {
    font-size: 2.2vw;
  }
  .body-l {
    font-size: 1.15vw;
  }
  .stat-num {
    font-size: 4.6vw;
  }
  .address-title {
    font-size: 4.6vw;
  }
  .hero-title {
    font-size: 3vw;
    line-height: 4.4vw;
  }
  .hero-body {
    font-size: 1.15vw;
  }
  .hero-form-card .form-title {
    font-size: 2.4vw;
    line-height: 3.6vw;
  }
  .hero-form-card .form-control,
  .hero-form-card .form-select {
    font-size: 1.15vw;
    padding: 1vw 1.2vw;
  }
  .hero-form-card .form-label {
    font-size: 0.95vw;
  }
  .channel-btn {
    font-size: 0.95vw;
    padding: 0.9vw 0.4vw;
  }
  .channel-btn i {
    font-size: 1.05vw;
  }
}

@media (max-width: 1199px) {
  .custom-container {
    width: 92%;
  }
  .h-display {
    font-size: 5.2vw;
  }
  .h-2 {
    font-size: 3.5vw;
  }
  .h-3 {
    font-size: var(--fs-50);
  }
  .body-l {
    font-size: 1.4vw;
  }
  .stat-num {
    font-size: 5.2vw;
  }
  .address-title {
    font-size: 5.2vw;
  }
  .btn,
  .btn-lg {
    font-size: 1.2vw;
    padding: 1vw 1.8vw;
  }
  .btn-xl {
    font-size: 1.3vw;
    padding: 1.2vw 2.2vw;
  }
  .why-georgia .eyebrow,
  .eyebrow {
    font-size: 1vw;
  }
  .media-logos span {
    font-size: 2vw;
  }
  .media-logo-img {
    height: 22px;
  }
  .media-label {
    font-size: 1.1vw;
  }
  .hero-title {
    font-size: 3.6vw;
    line-height: 4.8vw;
  }
  .hero-body {
    font-size: 1.35vw;
  }
  .hero-form-card .form-title {
    font-size: 2.8vw;
    line-height: 4vw;
  }
  .hero-form-card .form-sub {
    font-size: 1.15vw;
  }
  .hero-form-card .form-control,
  .hero-form-card .form-select {
    font-size: 1.3vw;
    padding: 1.1vw 1.3vw;
  }
  .hero-form-card .form-label {
    font-size: 1.1vw;
  }
  .channel-btn {
    font-size: 1.05vw;
    padding: 1vw 0.4vw;
  }
  .channel-btn i {
    font-size: 1.2vw;
  }
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
  .custom-container {
    width: 92%;
  }
  .hamburger {
    display: inline-flex;
  }
  .why-georgia {
    min-height: auto;
    padding: 10vw 0 20vw;
  }
  .why-bg {
    background-size: 100% auto;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
  }
  .why-left,
  .why-right {
    padding-top: 0;
  }
  .why-headline {
    font-size: 5.5vw;
  }
  .why-sub {
    font-size: 4vw;
  }
  .why-body {
    width: 100%;
    font-size: 1.95vw;
    margin: 0 0 1.5rem 0;
  }
  .why-cta {
    padding: 1.6vw 3vw;
    font-size: 1.95vw;
  }
  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 5vw 4vw;
  }
  .why-num {
    font-size: 8vw;
  }
  .why-label {
    font-size: 1.95vw;
  }
  /* Navbar mobile sizing — logo + pill CTA + hamburger */
  .site-header {
    padding: 12px 0;
  }
  .site-header.is-scrolled {
    padding: 8px 0;
  }
  .brand-logo {
    height: 52px;
  }
  .navbar-toggler {
    padding: 0.45rem 0.6rem;
  }
  .navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
  }

  .hero {
    min-height: auto;
    padding: 18vw 0 10vw;
  }
  .hero-form-card {
    margin-top: 6vw;
    padding: 5vw;
  }
  .stats-grid {
    gap: 4vw 5vw;
  }
  /* Portfolio — tablet: image stacks above text */
  .address {
    margin-top: 8vw;
  }
  .address-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .address-img {
    min-height: 75vw;
    order: -1;
  }
  .address-body {
    padding: 8vw 5vw 8vw;
  }
  .address-inner {
    max-width: 100%;
  }
  .address-num {
    font-size: 22vw;
    top: -2vw;
    left: auto;
    right: 4vw;
  }
  .portfolio-head {
    max-width: 90vw;
    gap: 2vw;
  }
  .portfolio-title {
    font-size: 5.5vw;
    line-height: 7.5vw;
    max-width: 100%;
  }
  .portfolio-sub {
    font-size: 1.85vw;
    line-height: 3vw;
    max-width: 100%;
  }

  .hero-title {
    font-size: 6vw;
    line-height: 1.15;
  }
  .hero-body {
    font-size: 1.95vw;
    line-height: 1.7;
  }

  .h-display {
    font-size: 8vw;
  }
  .h-2 {
    font-size: 5.5vw;
  }
  .h-3 {
    font-size: 4vw;
  }
  .body-l {
    font-size: 1.95vw;
    line-height: 1.7;
  }

  .why-georgia .eyebrow,
  .eyebrow {
    font-size: 1.6vw;
  }
  .eyebrow::before {
    width: 4vw;
  }

  .stat-num {
    font-size: 9vw;
  }
  .stat-label {
    font-size: 1.95vw;
  }
  .stats-grid {
    gap: 5vw;
  }

  .address-title {
    font-size: 8vw;
  }
  .address-tagline {
    font-size: 2.4vw;
    line-height: 3.6vw;
  }
  .address-desc {
    font-size: 1.85vw;
    line-height: 3vw;
    max-width: 100%;
  }
  .address-divider {
    max-width: 100%;
  }
  .addr-stat {
    gap: 1.4vw;
  }
  .addr-label {
    font-size: 1.85vw;
    line-height: 3vw;
  }
  .addr-num {
    gap: 1vw;
  }
  .addr-num-val {
    font-size: 3.4vw;
  }
  .addr-num-suffix {
    font-size: 2.8vw;
  }
  .badge-flag {
    font-size: 1.5vw;
    padding: 1vw 2vw;
    border-radius: 4vw;
  }
  .address-explore {
    font-size: 1.6vw;
    margin-top: 4vw;
  }
  .address-explore::after {
    width: 4vw;
  }

  .btn {
    font-size: 1.95vw;
    padding: 1.6vw 3vw;
  }
  .btn-lg,
  .btn-xl {
    font-size: 2.1vw;
    padding: 1.8vw 3.4vw;
  }
  .btn-sm {
    font-size: 1.5vw;
    padding: 1vw 2vw;
  }

  .media-logos span {
    font-size: var(--fs-50);
  }
  .media-logo-img {
    height: 28px;
  }
  .media-label {
    font-size: 1.6vw;
  }

  .hero-quick {
    gap: 5vw;
  }
  .hero-quick .qs-num {
    font-size: 4vw;
  }
  .hero-quick .qs-label {
    font-size: 1.4vw;
  }

  .hero-form-card .form-title {
    font-size: 5.5vw;
    line-height: 1.15;
  }
  .hero-form-card .form-sub {
    font-size: 1.95vw;
  }
  .hero-form-card .form-label {
    font-size: 1.65vw;
  }
  .hero-form-card .form-control,
  .hero-form-card .form-select,
  .hero-form-card .input-group-text {
    padding: 2vw 2.6vw;
    font-size: 1.95vw;
    border-radius: 1.2vw;
  }
  .hero-form-card .form-check-label {
    font-size: 1.65vw;
  }
  .channel-btn {
    font-size: 1.6vw;
    padding: 1.6vw 0.4vw;
  }
  .channel-btn i {
    font-size: 1.8vw;
  }
  .hero-form-card button[type="submit"] {
    font-size: 2vw;
    padding: 2vw 3vw;
  }

  /* Partnerships — stack copy + logos */
  .partner-row {
    grid-template-columns: 1fr;
    gap: 6vw;
    min-height: 0;
  }
  .partner-copy {
    padding-left: 0;
    text-align: left;
  }
  .partner-title {
    font-size: 7vw;
  }
  .partner-body {
    font-size: 1.95vw;
  }
  .partner-bg {
    background-size: cover;
    opacity: 0.22;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-cell {
    min-height: 22vw;
    padding: 4vw;
  }
  .partner-cell img {
    max-height: 8vw;
  }
  .partner-cell:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .partner-cell:nth-child(2n) {
    border-right: 0;
  }
  .partner-cell:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--w-08);
  }
  .partner-cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .partner-cell img {
    max-height: 6vw;
  }

  /* Investor's Math — tablet */
  .math-card {
    grid-template-columns: 1fr;
    gap: 6vw;
    padding: 8vw 6vw;
  }
  .math-divider {
    display: none;
  }
  .math-card-bg {
    inset: 0 auto 0 0;
    width: 50%;
    max-width: none;
    background-size: auto 100%;
    background-position: 30% center;
    opacity: 0.16;
  }
  .math-stats {
    max-width: 100%;
    column-gap: 4vw;
    row-gap: 5vw;
  }
  .math-stat {
    width: auto;
    gap: 2vw;
  }
  .math-num-val {
    font-size: 7vw;
  }
  .math-num-suffix {
    font-size: 3.4vw;
  }
  .math-stat-label {
    font-size: 1.85vw;
    line-height: 2.8vw;
  }
  .math-copy {
    max-width: 100%;
    padding-left: 0;
    gap: 3vw;
  }
  .math-title {
    font-size: 5.2vw;
    line-height: 7vw;
    margin: 0;
  }
  .math-body {
    font-size: 1.85vw;
    line-height: 3vw;
  }
  .math-ctas {
    gap: 2vw;
  }
  .math-btn {
    padding: 1.4vw 1.8vw;
    border-radius: 1.4vw;
    gap: 1vw;
    font-size: 1.85vw;
  }
  .math-btn i {
    font-size: 2.4vw;
  }

  /* FAQ — tablet */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
  }
  .faq-aside {
    max-width: 100%;
    gap: 2.5vw;
  }
  .faq-title {
    font-size: 5vw;
    line-height: 6.6vw;
    margin: 0;
  }
  .faq-body {
    font-size: 1.85vw;
    line-height: 3vw;
  }
  .faq-cta {
    padding: 1.4vw 1.8vw;
    border-radius: 1.4vw;
    gap: 1vw;
    font-size: 1.85vw;
  }
  .faq-cta i {
    font-size: 2.4vw;
  }
  .faq-accordion {
    max-width: 100%;
    gap: 3vw;
  }
  .faq-card.accordion-item {
    border-radius: 1.4vw;
  }
  .faq-card.accordion-item:has(.collapse.show) {
    border-radius: 2.4vw;
  }
  .faq-q.accordion-button {
    padding: 3vw 3.6vw;
    font-size: 2.4vw;
    line-height: 1.5;
    gap: 3vw;
  }
  .faq-toggle {
    width: 5vw;
    height: 5vw;
    font-size: var(--fs-50);
  }
  .faq-a.accordion-body {
    padding: 0 3.6vw 3vw;
    font-size: 1.85vw;
    line-height: 3vw;
  }

  /* Footer — tablet */
  .site-footer {
    padding: 8vw 0 3vw;
    min-height: 0;
  }
  .footer-skyline {
    height: 40vw;
  }
  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 5vw 4vw;
    align-items: start;
  }
  .footer-logo {
    height: 14vw;
  }
  .footer-up {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
    margin-top: 0;
  }
  .footer-socials a {
    width: 5vw;
    height: 5vw;
    font-size: 2.4vw;
  }
  .footer-socials {
    gap: 1.5vw;
  }
  .footer-cols {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5vw 3vw;
    margin-left: 0;
  }
  .footer-col h6 {
    font-size: 2.4vw;
    line-height: 1.3;
    margin-bottom: 1.6vw;
  }
  .footer-address {
    font-size: 1.85vw;
    line-height: 1.7;
  }
  .footer-address-sm {
    font-size: 1.7vw;
    line-height: 1.5;
  }
  .footer-links a {
    font-size: 1.85vw;
    line-height: 1.7;
  }
  .footer-divider {
    margin: 5vw 0 2vw;
  }
  .footer-fine {
    font-size: 1.6vw;
  }
  .footer-legal {
    gap: 4vw;
    font-size: 1.5vw;
  }
  .footer-legal > span:nth-child(3) {
    font-size: 1.5vw;
  }
  .footer-credit {
    font-size: 1.6vw;
  }
  .footer-credit-mark {
    font-size: 1.9vw;
  }

  /* Track Record — stack on tablet */
  .track-record {
    padding: 8vw 0 0;
  }
  .track-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
  .track-copy {
    padding-top: 0;
  }
  .track-stats {
    gap: 6vw 5vw;
  }
  .t-num {
    font-size: 11vw;
  }
  .t-label {
    font-size: 1.95vw;
  }
  .track-title {
    font-size: 5.5vw;
  }
  .track-body {
    font-size: 1.95vw;
  }
  .track-record .btn {
    padding: 1.6vw 3vw;
    font-size: 1.95vw;
  }
  .track-scene {
    height: 60vw;
    margin-top: 6vw;
  }
}

@media (max-width: 575px) {
  .custom-container {
    width: 90%;
  }
  .why-georgia {
    padding: 15vw 0 25vw 0;
  }
  .why-bg {
    background-size: 130% auto;
  }
  .why-headline {
    font-size: 8vw;
  }
  .why-sub {
    font-size: 6vw;
  }
  .why-body {
    font-size: 4vw;
  }
  .why-cta {
    padding: 3vw 5vw;
    font-size: 3.6vw;
  }
  .why-num {
    font-size: 14vw;
  }
  .why-label {
    font-size: 3.4vw;
  }
  .why-stats {
    gap: 6vw 4vw;
  }
  body {
    font-size: 3.6vw;
  }
  :root {
    --section-pad: 12vw;
  }

  .hero {
    padding: 22vw 0 12vw;
    min-height: auto;
  }
  .hero-decor-lines {
    display: none;
  }

  .h-display {
    font-size: 11vw;
  }
  .h-2 {
    font-size: 8vw;
  }
  .h-3 {
    font-size: 6vw;
  }
  .body-l {
    font-size: 4vw;
    line-height: 1.65;
  }

  .why-georgia .eyebrow,
  .eyebrow {
    font-size: 3vw;
  }
  .eyebrow::before {
    width: 7vw;
  }

  /* Stats: 2x2 on mobile, but each cell sized for readability */
  .stat-num {
    font-size: 12vw;
  }
  .stat-label {
    font-size: 3.4vw;
    margin-top: 2vw;
    line-height: 1.4;
  }
  .stats-grid {
    gap: 6vw 5vw;
  }
  .stat {
    padding-left: 3vw;
  }

  /* Portfolio — phone */
  .address {
    margin-top: 12vw;
  }
  .address-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .address-img {
    min-height: 80vw;
    order: -1;
  }
  .address-body {
    padding: 14vw 6vw 8vw;
  }
  .address-inner {
    max-width: 100%;
  }
  .address-num {
    font-size: 36vw;
    top: -8vw;
    left: auto;
    right: -2vw;
    opacity: 0.12;
  }
  .portfolio-head {
    max-width: 92vw;
    gap: 3vw;
  }
  .portfolio-title {
    font-size: 8vw;
    line-height: 11vw;
  }
  .portfolio-sub {
    font-size: 3.6vw;
    line-height: 5.6vw;
  }

  .address-title {
    font-size: 14vw;
    margin-top: 4vw;
  }
  .address-tagline {
    font-size: 4.4vw;
    line-height: 6.4vw;
  }
  .address-desc {
    font-size: 3.6vw;
    line-height: 5.6vw;
    max-width: 100%;
    margin-top: 4vw;
  }
  .address-divider {
    margin-top: 4vw;
    max-width: 100%;
  }
  .badge-flag {
    font-size: 2.8vw;
    padding: 2vw 3vw;
    border-radius: 8vw;
  }
  .address-stats {
    margin-top: 6vw;
    column-gap: 5vw;
    row-gap: 5vw;
  }
  .addr-stat {
    gap: 2vw;
  }
  .addr-label {
    font-size: 3.4vw;
    line-height: 5vw;
  }
  .addr-num {
    gap: 1.6vw;
  }
  /* .addr-num-val {
    font-size: 8vw;
  } */
  .addr-num-suffix {
    font-size: 5vw;
  }
  .address-explore {
    font-size: 3.2vw;
    margin-top: 8vw;
    gap: 1vw;
  }
  .address-explore::after {
    width: 8vw;
  }

  /* Touch-friendly buttons (min ≈44px tap target) */
  .btn {
    font-size: 3.8vw;
    padding: 3.5vw 5vw;
    min-height: 44px;
  }
  .btn-lg,
  .btn-xl {
    font-size: 4vw;
    padding: 4vw 5.5vw;
    min-height: 48px;
  }

  .hero-quick {
    gap: 6vw;
  }
  .hero-quick .qs-num {
    font-size: 7vw;
  }
  .hero-quick .qs-label {
    font-size: 2.8vw;
  }

  .hero-form-card {
    padding: 6vw 5vw;
    border-radius: 4vw;
  }
  .hero-form-card .form-title {
    font-size: 9vw;
    line-height: 1.15;
  }
  .hero-form-card .form-sub {
    font-size: 3.6vw;
  }
  .hero-form-card .form-label {
    font-size: 3.2vw;
  }
  .hero-form-card .form-control,
  .hero-form-card .form-select,
  .hero-form-card .input-group-text {
    padding: 3.6vw 4vw;
    font-size: 3.8vw;
    border-radius: 2.5vw;
  }
  .hero-form-card .form-check-label {
    font-size: 3.2vw;
  }
  .channel-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
  .channel-btn {
    font-size: 3.2vw;
    padding: 3vw 1vw;
    border-radius: 2vw;
  }
  .channel-btn i {
    font-size: 3.6vw;
  }
  .hero-form-card button[type="submit"] {
    font-size: 3.8vw;
    padding: 3.8vw 4vw;
  }
  .hero-title {
    font-size: 9vw;
    line-height: 1.15;
  }
  .hero-body {
    font-size: 4vw;
  }

  .media-bar {
    padding: 5vw 0;
  }
  .media-row {
    justify-content: flex-start;
    gap: 4vw;
  }
  .media-divider {
    display: none;
  }
  .media-logos span {
    font-size: 4.5vw;
  }
  .media-label {
    font-size: 3vw;
  }

  .partner-row {
    gap: 8vw;
  }
  .partner-title {
    font-size: 11vw;
    letter-spacing: 0.04em;
  }
  .partner-body {
    font-size: 3.6vw;
  }
  .partner-bg {
    background-size: cover;
    opacity: 0.18;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-cell {
    min-height: 26vw;
    padding: 5vw 4vw;
  }
  .partner-cell img {
    max-height: 9vw;
  }

  /* Investor's Math — phone */
  .math-card {
    padding: 12vw 6vw;
    gap: 8vw;
  }
  .math-card-bg {
    inset: 0 auto 0 0;
    width: 70%;
    max-width: none;
    background-size: auto 100%;
    background-position: 30% center;
    opacity: 0.1;
  }
  .math-stats {
    column-gap: 6vw;
    row-gap: 8vw;
  }
  .math-num-val {
    font-size: 13vw;
  }
  .math-num-suffix {
    font-size: 6vw;
  }
  .math-stat-label {
    font-size: 3.4vw;
    line-height: 5vw;
  }
  .math-title {
    font-size: 8vw;
    line-height: 10vw;
  }
  .math-body {
    font-size: 3.6vw;
    line-height: 5.6vw;
  }
  .math-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 3vw;
  }
  .math-btn {
    padding: 3vw 4vw;
    border-radius: 3vw;
    font-size: 3.8vw;
    gap: 2vw;
  }
  .math-btn i {
    font-size: 5vw;
  }

  /* FAQ — phone */
  .faq-grid {
    gap: 8vw;
  }
  .faq-title {
    font-size: 8vw;
    line-height: 10vw;
  }
  .faq-body {
    font-size: 3.6vw;
    line-height: 5.6vw;
  }
  .faq-cta {
    padding: 3vw 4vw;
    border-radius: 3vw;
    gap: 2vw;
    font-size: 3.8vw;
  }
  .faq-cta i {
    font-size: 5vw;
  }
  .faq-accordion {
    gap: 4vw;
  }
  .faq-card.accordion-item {
    border-radius: 3vw;
  }
  .faq-card.accordion-item:has(.collapse.show) {
    border-radius: 5vw;
  }
  .faq-q.accordion-button {
    padding: 5vw;
    font-size: 4.4vw;
    line-height: 1.4;
    gap: 4vw;
  }
  .faq-toggle {
    width: 10vw;
    height: 10vw;
    font-size: 5vw;
  }
  .faq-a.accordion-body {
    padding: 0 5vw 5vw;
    font-size: 3.6vw;
    line-height: 5.6vw;
  }

  /* Footer — phone */
  .site-footer {
    padding: 12vw 0 6vw;
  }
  .footer-skyline {
    height: 60vw;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 6vw;
  }
  .footer-logo {
    height: 28vw;
  }
  .footer-socials a {
    width: 11vw;
    height: 11vw;
    font-size: 5vw;
  }
  .footer-socials {
    gap: 3vw;
  }
  .footer-up {
    width: 16vw;
    height: 16vw;
    font-size: 6vw;
    align-self: flex-start;
    margin-top: 0;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 6vw;
    margin-left: 0;
  }
  .footer-col h6 {
    font-size: 5.5vw;
    line-height: 1.3;
    margin-bottom: 3vw;
  }
  .footer-address {
    font-size: 3.8vw;
    line-height: 1.7;
  }
  .footer-address-sm {
    font-size: 3.6vw;
    line-height: 1.6;
  }
  .footer-links a {
    font-size: 3.8vw;
    line-height: 1.9;
  }
  .footer-divider {
    margin: 8vw 0 4vw;
  }
  .footer-fine {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
    font-size: 3.4vw;
  }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5vw;
    font-size: 3.4vw;
  }
  .footer-legal > span:nth-child(3) {
    font-size: 3.2vw;
  }
  .footer-credit {
    font-size: 3.4vw;
  }
  .footer-credit-mark {
    font-size: 4vw;
  }

  .modal-title {
    font-size: 6vw;
  }
  .modal-sub {
    font-size: 3.5vw;
  }
  #mainModalPopup .form-control,
  #mainModalPopup .input-group-text {
    font-size: 3.8vw;
    padding: 3.4vw 4vw;
    border-radius: 2.5vw;
  }
  #mainModalPopup .form-label {
    font-size: 3vw;
  }
  #mainModalPopup .form-check-label {
    font-size: 3vw;
  }

  /* Track Record — phone */
  .track-record {
    padding: 14vw 0 0;
  }
  .track-grid {
    gap: 12vw;
  }
  .track-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8vw 5vw;
  }
  .t-num {
    font-size: 16vw;
  }
  .t-label {
    font-size: 3.4vw;
  }
  .track-title {
    font-size: 8vw;
  }
  .track-body {
    font-size: 4vw;
  }
  .track-record .btn {
    padding: 3vw 5vw;
    font-size: 3.6vw;
    border-radius: 999px;
  }
  .track-scene {
    height: 80vw;
    margin-top: 10vw;
  }
}

@media (max-width: 380px) {
  :root {
    --section-pad: 14vw;
  }
  .h-display {
    font-size: 12vw;
  }
  .h-2 {
    font-size: 9vw;
  }
  .h-3 {
    font-size: 7vw;
  }
  .hero-title {
    font-size: 10vw;
    line-height: 1.15;
  }
  .body-l,
  .hero-body {
    font-size: 4.2vw;
  }
  .stat-num {
    font-size: 13vw;
  }
  .stats-grid {
    gap: 5vw 3vw;
  }
  .stat-label {
    font-size: 3.2vw;
  }
  .address-title {
    font-size: 13vw;
  }
  .big-numeral {
    font-size: 44vw;
    top: -10vw;
  }
  .partner-cell {
    min-height: 26vw;
    padding: 4vw;
  }
  .partner-cell img {
    max-height: 8vw;
  }
  .channel-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   THANK YOU PAGE  (/thank-you.php)
   ============================================================ */
.ty-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.ty-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/sections/hero-bg.webp");
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
  filter: grayscale(1);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.ty-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(7rem, 12vw, 12rem) 1.5rem clamp(5rem, 8vw, 8rem);
  width: 100%;
}

.ty-badge {
  display: block;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1;
  background: var(--grad-num-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.ty-heading {
  font-family: var(--Alliance);
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 400;
  line-height: 0.92;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(1rem, 1.46vw, 1.5rem);
}

.ty-sub {
  font-size: var(--fs-24);
  color: var(--w-72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ty-body {
  font-size: var(--fs-18);
  line-height: var(--lh-32);
  color: var(--w-60);
  max-width: 46ch;
  margin: 0 auto clamp(2.5rem, 4.17vw, 4rem);
}

.ty-body strong {
  color: #fff;
  font-weight: 500;
}

.ty-steps {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 4.17vw, 4rem);
}

.ty-step {
  flex: 0 0 clamp(180px, 17vw, 224px);
  background: var(--w-08);
  border: 1px solid var(--w-12);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 2.5vw, 2.5rem) 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    border-color 0.25s;
}

.ty-step:hover {
  background: var(--w-12);
  border-color: var(--w-40);
}

.ty-step-num {
  display: block;
  font-family: var(--Alliance);
  font-size: var(--fs-52);
  line-height: 1;
  background: var(--grad-num-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.ty-step-label {
  font-size: var(--fs-15);
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.ty-step-desc {
  font-size: var(--fs-13);
  color: var(--w-60);
  margin: 0;
  line-height: var(--lh-21);
}

.ty-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--w-40);
  background: transparent;
  color: #fff;
  font-family: var(--Satoshi-Medium);
  font-size: var(--fs-15);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    border-color 0.22s,
    background 0.22s;
}

.ty-cta:hover {
  border-color: #fff;
  background: var(--w-08);
  color: #fff;
}

@media (max-width: 767px) {
  .ty-heading {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }
  .ty-steps {
    flex-direction: column;
    align-items: center;
  }
  .ty-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }
}
