/* FOA Group — Premium Modern Design */
:root {
  --gold: #c9a962;
  --gold-light: #e0c98a;
  --gold-dark: #9a7b3c;
  --ink: #0c0c0c;
  --ink-soft: #1a1a1a;
  --ink-muted: #2a2a2a;
  --paper: #f7f5f0;
  --paper-dark: #ebe7de;
  --text: #1a1a1a;
  --text-soft: #5a5a5a;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.25);
  --radius: 4px;
  --radius-lg: 16px;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ─── Utilities ─── */
.foa-container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}
.foa-container--narrow { width: min(900px, calc(100% - 48px)); }

.foa-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.foa-overline::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.foa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.foa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
  z-index: -1;
  opacity: 0.08;
}
.foa-btn:hover::before { transform: scaleX(1); transform-origin: left; }

.foa-btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.foa-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 169, 98, 0.35);
}

.foa-btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.foa-btn--outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.foa-btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.2);
}
.foa-btn--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.foa-btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.foa-btn--dark:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ─── Reveal Animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ─── Page Loader ─── */
.foa-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.foa-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.foa-loader__inner {
  text-align: center;
}
.foa-loader__inner img {
  width: 120px;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
  animation: foaPulse 1.4s ease infinite;
}
.foa-loader__bar {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1px;
}
.foa-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: foaLoadBar 1s var(--ease) infinite;
}
@keyframes foaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes foaLoadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ─── Header / Nav ─── */
.foa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s;
}
.foa-header.is-scrolled,
.foa-header.is-solid {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.foa-header__inner {
  width: min(1400px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.foa-header__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.foa-header__logo:hover img { opacity: 0.8; }

.foa-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.foa-nav a {
  position: relative;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}
.foa-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.foa-nav a:hover,
.foa-nav a.is-active {
  color: var(--white);
}
.foa-nav a:hover::after,
.foa-nav a.is-active::after {
  transform: scaleX(1);
}

.foa-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.foa-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.foa-lang a {
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 6px;
  border-radius: 3px;
  transition: all 0.3s;
}
.foa-lang a:hover,
.foa-lang a.is-active {
  color: var(--ink);
  background: var(--gold);
}

.foa-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.foa-burger:hover { border-color: var(--gold); }
.foa-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}
.foa-burger span:nth-child(2) { width: 12px; margin-left: 6px; }
.menu-open .foa-burger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-open .foa-burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-open .foa-burger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.foa-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 60px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.menu-open .foa-mobile-menu {
  visibility: visible;
  opacity: 1;
}
.foa-mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.menu-open .foa-mobile-menu nav a {
  opacity: 1;
  transform: none;
}
.menu-open .foa-mobile-menu nav a:nth-child(1) { transition-delay: 0.1s; }
.menu-open .foa-mobile-menu nav a:nth-child(2) { transition-delay: 0.15s; }
.menu-open .foa-mobile-menu nav a:nth-child(3) { transition-delay: 0.2s; }
.menu-open .foa-mobile-menu nav a:nth-child(4) { transition-delay: 0.25s; }
.menu-open .foa-mobile-menu nav a:nth-child(5) { transition-delay: 0.3s; }
.foa-mobile-menu nav a small {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-family: var(--font-body);
}
.foa-mobile-menu nav a span {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 400;
}
.foa-mobile-menu nav a:hover { color: var(--gold); }
.foa-mobile-menu__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  opacity: 0;
  transition: opacity 0.5s 0.35s;
}
.menu-open .foa-mobile-menu__footer { opacity: 1; }
.foa-mobile-menu__social {
  display: flex;
  gap: 16px;
}
.foa-mobile-menu__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s;
}
.foa-mobile-menu__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Main ─── */
.foa-main {
  min-height: 100vh;
}
.foa-main--padded {
  padding-top: var(--nav-h);
}

/* ─── Hero Slider ─── */
.foa-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}
.foa-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}
.foa-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.foa-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.foa-hero__slide.is-active .foa-hero__bg {
  transform: scale(1);
}
.foa-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.4) 50%, rgba(8, 8, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.6) 0%, transparent 40%);
  z-index: 1;
}
.foa-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: var(--nav-h);
  color: var(--white);
}
.foa-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}
.foa-hero__slide.is-active .foa-hero__location {
  animation: foaFadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.foa-hero__title {
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
}
.foa-hero__slide.is-active .foa-hero__title {
  animation: foaFadeUp 0.9s 0.45s var(--ease-out) forwards;
}
.foa-hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}
.foa-hero__slide.is-active .foa-hero__subtitle {
  animation: foaFadeUp 0.8s 0.6s var(--ease-out) forwards;
}
.foa-hero__cta {
  opacity: 0;
  transform: translateY(20px);
}
.foa-hero__slide.is-active .foa-hero__cta {
  animation: foaFadeUp 0.8s 0.75s var(--ease-out) forwards;
}

@keyframes foaFadeUp {
  to { opacity: 1; transform: none; }
}

.foa-hero__controls {
  position: absolute;
  bottom: 40px;
  right: 56px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}
.foa-hero__arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}
.foa-hero__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.foa-hero__counter {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}
.foa-hero__counter strong {
  color: var(--gold);
  font-weight: 500;
}
.foa-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
}
.foa-hero__progress span {
  display: block;
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 0.3s linear;
}
.foa-hero__progress span.is-animating {
  transition: width 6s linear;
  width: 100%;
}

.foa-hero__empty {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 40px;
  position: relative;
  z-index: 2;
}
.foa-hero__empty h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0;
}
.foa-hero__empty p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ─── Ticker ─── */
.foa-ticker {
  background: var(--gold);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}
.foa-ticker__track {
  display: flex;
  width: max-content;
  animation: foaTicker 30s linear infinite;
}
.foa-ticker__track span {
  padding: 0 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 28px;
}
.foa-ticker__track span::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--ink);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes foaTicker {
  to { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.foa-section {
  padding: 100px 0;
}
.foa-section--dark {
  background: var(--ink);
  color: var(--white);
}
.foa-section--muted {
  background: var(--paper-dark);
}
.foa-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.foa-section__head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-top: 12px;
  color: inherit;
}
.foa-section--dark .foa-section__head h2 { color: var(--white); }

.foa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.foa-link:hover {
  border-color: var(--gold-dark);
  gap: 14px;
}
.foa-section--dark .foa-link { color: var(--gold); }
.foa-section--dark .foa-link:hover { border-color: var(--gold); }

/* ─── Intro Block ─── */
.foa-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.foa-intro h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  margin: 16px 0 28px;
  color: var(--ink);
}
.foa-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 20px;
  font-weight: 300;
}
.foa-intro-showcase {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.foa-intro-showcase--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(8, 8, 8, 0.5) 0%, transparent 35%),
    radial-gradient(ellipse at center, transparent 55%, rgba(8, 8, 8, 0.35) 100%);
  pointer-events: none;
}
.foa-intro-showcase--video {
  aspect-ratio: 16 / 9;
  min-height: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.foa-intro-showcase--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.foa-intro-showcase__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 8, 8, 0.25);
  cursor: pointer;
  touch-action: manipulation;
}
.foa-intro-showcase__loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 30px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
  cursor: pointer;
  touch-action: manipulation;
}
.foa-intro-showcase__loading i {
  filter: drop-shadow(0 0 12px rgba(201, 169, 98, 0.45));
}
.foa-intro-showcase__loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.foa-intro-showcase--video .foa-intro-showcase__frame {
  z-index: 3;
  inset: 18px;
  border: 1.5px solid rgba(201, 169, 98, 0.55);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.14);
  animation: none;
}
.foa-intro-showcase--video .foa-intro-showcase__frame--delay {
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: none;
}
.foa-intro-showcase--video .foa-intro-controls {
  z-index: 4;
}
.foa-intro-showcase__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 98, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.12) 0%, transparent 45%),
    linear-gradient(145deg, #141414 0%, #0c0c0c 50%, #1a1510 100%);
}
.foa-intro-showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: foaGridDrift 20s linear infinite;
  opacity: 0.7;
}
.foa-intro-showcase__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.foa-intro-showcase__orb--1 {
  width: 180px;
  height: 180px;
  background: rgba(201, 169, 98, 0.35);
  top: 8%;
  right: 10%;
  animation: foaOrbFloat 8s ease-in-out infinite;
}
.foa-intro-showcase__orb--2 {
  width: 140px;
  height: 140px;
  background: rgba(201, 169, 98, 0.2);
  bottom: 12%;
  left: 8%;
  animation: foaOrbFloat 10s ease-in-out infinite reverse;
}
.foa-intro-showcase__frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 12px;
  pointer-events: none;
  animation: foaFramePulse 4s ease-in-out infinite;
}
.foa-intro-showcase__frame--delay {
  inset: 42px;
  border-color: rgba(255, 255, 255, 0.08);
  animation-delay: 1.2s;
}
.foa-intro-showcase__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.foa-intro-showcase__ring {
  position: absolute;
  width: min(200px, 48%);
  aspect-ratio: 1;
}
.foa-intro-showcase__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.foa-intro-showcase__ring circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 40 12;
  opacity: 0.55;
  animation: foaRingSpin 18s linear infinite;
  transform-origin: center;
}
.foa-intro-showcase__logo {
  position: relative;
  width: min(110px, 28%);
  z-index: 1;
  animation: foaLogoGlow 3.5s ease-in-out infinite;
}
.foa-intro-showcase__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(201, 169, 98, 0.35));
}
.foa-intro-stats {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: 14px;
  padding: 12px 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.foa-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 18px;
  min-width: 78px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.foa-intro-stat:last-child {
  border-right: 0;
}
.foa-intro-stat strong {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.foa-intro-stat i {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.foa-intro-stat span {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  white-space: nowrap;
}

.foa-intro-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 14px;
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.foa-intro-controls[hidden] {
  display: none;
}
.foa-intro-controls__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.foa-intro-controls__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.foa-intro-controls__btn.is-sound-on {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.foa-intro-controls__progress {
  width: 130px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.foa-intro-controls__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
}

@keyframes foaOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 22px) scale(1.12); }
}
@keyframes foaGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}
@keyframes foaFramePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}
@keyframes foaRingSpin {
  to { stroke-dashoffset: -340; }
}
@keyframes foaLogoGlow {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 640px) {
  .foa-intro-stats {
    left: 12px;
    bottom: 12px;
    padding: 10px 2px;
    border-radius: 12px;
  }
  .foa-intro-stat {
    padding: 0 12px;
    min-width: 56px;
  }
  .foa-intro-stat strong {
    font-size: 20px;
  }
  .foa-intro-stat span {
    font-size: 8px;
  }
  .foa-intro-controls {
    bottom: 12px;
    gap: 10px;
    padding: 8px 10px;
  }
  .foa-intro-controls__btn {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .foa-intro-controls__progress {
    width: 80px;
  }
}

/* ─── Project Cards ─── */
.foa-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foa-project-card {
  display: block;
  color: inherit;
}
.foa-project-card__media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-muted);
}
.foa-project-card__media img,
.foa-project-card__media .bg-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.foa-project-card__media .bg-fill {
  background-size: cover;
  background-position: center;
}
.foa-project-card:hover .foa-project-card__media img,
.foa-project-card:hover .foa-project-card__media .bg-fill {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.foa-project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.foa-project-card:hover .foa-project-card__media::after { opacity: 1; }
.foa-project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  color: var(--ink);
}
.foa-project-card__badge--done {
  background: var(--gold);
}
.foa-project-card__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--ink);
  font-size: 14px;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.4s var(--ease-out);
}
.foa-project-card:hover .foa-project-card__arrow {
  transform: scale(1) rotate(0);
}
.foa-project-card__body {
  padding: 22px 4px 8px;
}
.foa-project-card__body h3 {
  font-size: 26px;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.foa-project-card:hover .foa-project-card__body h3 {
  color: var(--gold-dark);
}
.foa-project-card__body p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Projects page filter */
.foa-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.foa-filter button {
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  color: var(--text-soft);
  background: transparent;
  transition: all 0.35s var(--ease);
}
.foa-filter button:hover,
.foa-filter button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.foa-projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foa-projects-page-grid .foa-project-card.is-hidden {
  display: none;
}

/* ─── Page Hero (inner pages) ─── */
.foa-page-hero {
  position: relative;
  padding: 36px 0 32px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
/* Project inner pages: clear fixed header */
body.has-project-nav .foa-page-hero {
  padding: calc(var(--nav-h) + 32px) 0 36px;
}
.foa-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.foa-page-hero__inner {
  position: relative;
  z-index: 1;
}
.foa-page-hero h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 10px 0 6px;
  color: var(--white);
}
.foa-page-hero p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}
.foa-page-hero .foa-overline {
  font-size: 10px;
}
.foa-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}
.foa-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}
.foa-breadcrumb a:hover { color: var(--gold); }
.foa-breadcrumb span { color: var(--gold); }

/* ─── About ─── */
.foa-about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.foa-about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 32px;
  color: var(--ink);
}
.foa-about-content .about_text,
.foa-about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 20px;
}
.foa-about-content .about_text p { margin-bottom: 18px; }

.foa-video {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--ink);
}
.foa-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.foa-empty {
  text-align: center;
  padding: 60px 32px;
  border: 1px dashed rgba(201, 169, 98, 0.4);
  border-radius: var(--radius-lg);
  background: rgba(201, 169, 98, 0.04);
}
.foa-empty h2, .foa-empty h3 {
  font-size: 28px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.foa-empty p {
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── Campaigns ─── */
.foa-campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.foa-campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.foa-campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.foa-campaign-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-dark);
}
.foa-campaign-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.foa-campaign-card:hover .foa-campaign-card__img img {
  transform: scale(1.05);
}
.foa-campaign-card__body {
  padding: 28px;
}
.foa-campaign-card__body h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}
.foa-campaign-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  font-weight: 300;
}

/* ─── Contact ─── */
.foa-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.foa-contact-map {
  position: relative;
  background: var(--ink-soft);
  min-height: 400px;
}
.foa-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
.foa-contact-map__info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 28px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  color: var(--white);
}
.foa-contact-map__info h2 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}
.foa-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.foa-contact-item:last-child { margin-bottom: 0; }
.foa-contact-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  width: 18px;
}
.foa-contact-item h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.5);
}
.foa-contact-item p,
.foa-contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.5;
}
.foa-contact-item a:hover { color: var(--gold); }

.foa-contact-form {
  padding: 48px 44px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.foa-contact-form h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--ink);
}
.foa-contact-form > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 300;
}
.foa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.foa-form-group {
  margin-bottom: 18px;
}
.foa-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.foa-form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
}
.foa-form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
textarea.foa-form-control {
  resize: vertical;
  min-height: 120px;
}
.foa-form-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}
.foa-form-alert--success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #1a7a45;
}
.foa-form-alert--error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #a32d20;
}
.foa-form-alert ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.foa-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.foa-captcha-row img {
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.foa-captcha-refresh {
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-dark);
  transition: all 0.3s;
}
.foa-captcha-refresh:hover {
  background: var(--gold);
  color: var(--ink);
}
.hp-trap {
  position: absolute;
  left: -99999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* ─── Project Detail ─── */
.foa-project-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
}
.foa-project-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.foa-project-hero__slide.is-active { opacity: 1; z-index: 1; }
.foa-project-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.foa-project-hero__slide.is-active .foa-project-hero__bg { transform: scale(1); }
.foa-project-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 8, 8, 0.75) 0%, transparent 45%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.5) 0%, transparent 60%);
  z-index: 1;
}
.foa-project-hero__content {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  color: var(--white);
  padding-top: calc(var(--nav-h) + 24px);
}
.foa-project-hero__content .foa-hero__location {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.foa-project-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--white);
  max-width: 640px;
}
.foa-project-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.35vw, 15px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.75;
  margin: 0;
}
.foa-project-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.foa-project-hero__actions .foa-btn {
  padding: 12px 24px;
  font-size: 11px;
}
.foa-project-hero__logo {
  position: absolute;
  top: calc(var(--nav-h) + 40px);
  right: 48px;
  z-index: 3;
  max-height: 64px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.foa-virtual-tour {
  position: absolute;
  top: calc(var(--nav-h) + 48px);
  left: 48px;
  z-index: 3;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.16em;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.foa-virtual-tour:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.foa-project-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: stretch;
  height: 64px;
}
.foa-project-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
  white-space: nowrap;
  padding: 0 8px;
}
.foa-project-nav a:last-child { border-right: 0; }
.foa-project-nav a i { font-size: 13px; }
.foa-project-nav a:hover,
.foa-project-nav a.is-active {
  color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
}
.foa-project-nav a.foa-project-nav__cta {
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.foa-project-nav a.foa-project-nav__cta:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.foa-project-body {
  padding: 80px 0 120px;
}
.foa-project-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.foa-project-about-grid .prose {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
}
.foa-project-about-grid .prose p { margin-bottom: 16px; }
.foa-meta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.foa-meta-card h3 {
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--ink);
}
.foa-meta-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.foa-meta-item:last-child { border-bottom: 0; }
.foa-meta-item label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
  font-weight: 500;
}
.foa-meta-item span {
  font-size: 16px;
  color: var(--text);
}
.foa-project-about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--paper-dark);
}
.foa-project-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foa-transport-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  min-height: 500px;
}
.foa-transport-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  background: var(--ink-soft);
}
.foa-transport-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}
.foa-transport-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.foa-transport-info h2 {
  font-size: 28px;
  margin-bottom: 24px;
}
.foa-transport-info p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
}
.foa-transport-info p i {
  color: var(--gold);
  margin-top: 3px;
}
.foa-transport-info .foa-btn { margin-top: 16px; align-self: flex-start; }

.foa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.foa-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-muted);
}
.foa-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.foa-gallery-item:hover img { transform: scale(1.06); }
.foa-gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 12, 0.4);
  color: var(--white);
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.foa-gallery-item:hover::after { opacity: 1; }
.foa-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Lightbox */
.foa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.94);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.foa-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.foa-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.foa-lightbox__close,
.foa-lightbox__prev,
.foa-lightbox__next {
  position: absolute;
  color: var(--white);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 2;
}
.foa-lightbox__close:hover,
.foa-lightbox__prev:hover,
.foa-lightbox__next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.foa-lightbox__close { top: 24px; right: 24px; }
.foa-lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.foa-lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ─── CTA Banner ─── */
.foa-cta {
  position: relative;
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.foa-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.foa-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0 20px;
  color: var(--white);
  position: relative;
}
.foa-cta p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}

/* ─── Footer ─── */
.foa-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.foa-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foa-footer__brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.foa-footer__brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}
.foa-footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.foa-footer__links a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s, padding-left 0.3s;
}
.foa-footer__links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.foa-footer__contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.5;
}
.foa-footer__contact p i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
}
.foa-footer__contact a:hover { color: var(--gold); }
.foa-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.foa-footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: all 0.3s;
}
.foa-footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.foa-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.foa-footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
}
.foa-footer__bottom a:hover { color: var(--gold); }
.foa-footer__slogan {
  color: rgba(201, 169, 98, 0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

/* ─── Side CTA (right edge drawer) ─── */
.foa-side-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 95;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}

.foa-side-cta__tab {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  border: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: -6px 8px 28px rgba(201, 169, 98, 0.35);
  cursor: pointer;
  transition: background 0.3s var(--ease), box-shadow 0.3s;
  writing-mode: sideways-lr;
}
@supports not (writing-mode: sideways-lr) {
  .foa-side-cta__tab {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  }
  .foa-side-cta__tab i {
    transform: rotate(180deg);
  }
}
.foa-side-cta__tab i {
  font-size: 13px;
}
.foa-side-cta__tab:hover,
.foa-side-cta.is-open .foa-side-cta__tab {
  background: var(--gold-light);
  box-shadow: -8px 10px 32px rgba(201, 169, 98, 0.45);
}

.foa-side-cta__panel {
  position: absolute;
  right: 100%;
  top: 50%;
  width: min(300px, calc(100vw - 56px));
  margin-right: 0;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-right: 0;
  border-radius: 16px 0 0 16px;
  padding: 28px 24px 24px;
  color: var(--white);
  box-shadow: -20px 10px 50px rgba(0, 0, 0, 0.35);
  transform: translate(24px, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
  z-index: 1;
}
.foa-side-cta.is-open .foa-side-cta__panel {
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.foa-side-cta__panel[hidden] {
  display: block !important;
}

.foa-side-cta__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}
.foa-side-cta__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.foa-side-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.foa-side-cta__panel h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
}
.foa-side-cta__panel p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}
.foa-side-cta__btn {
  width: 100%;
  margin-bottom: 14px;
}
.foa-side-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.foa-side-cta__phone:hover { color: var(--gold); }

body.has-project-nav .foa-side-cta {
  top: calc(50% - 28px);
}

/* ─── Scroll Top ─── */
.foa-scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.foa-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.foa-scroll-top:hover {
  background: var(--gold);
  color: var(--ink);
}
body.has-project-nav .foa-scroll-top { bottom: 80px; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .foa-projects-page-grid { grid-template-columns: repeat(2, 1fr); }
  .foa-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foa-intro { grid-template-columns: 1fr; }
  .foa-intro-showcase { max-width: 480px; aspect-ratio: 16/12; min-height: 340px; }
  .foa-intro-showcase--video { max-width: 640px; aspect-ratio: 16/9; min-height: 0; }
  .foa-contact-grid { grid-template-columns: 1fr; }
  .foa-contact-map iframe { min-height: 360px; }
  .foa-project-about-grid { grid-template-columns: 1fr; }
  .foa-transport-layout { grid-template-columns: 1fr; }
  .foa-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .foa-gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .foa-nav { display: none; }
  .foa-burger { display: flex; }
  .foa-header__actions .foa-lang { display: none; }
  .foa-header__actions .foa-btn .foa-phone-label { display: none; }
  .foa-header__actions .foa-btn { padding: 10px 14px !important; }
  .foa-projects-grid { grid-template-columns: 1fr; }
  .foa-project-nav a span { display: none; }
  .foa-project-nav a i { font-size: 16px; }
  .foa-project-nav a.foa-project-nav__cta span { display: inline; font-size: 10px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .foa-container { width: calc(100% - 32px); }
  .foa-section { padding: 72px 0; }
  .foa-page-hero { padding: 28px 0 24px; }
  body.has-project-nav .foa-page-hero {
    padding: calc(var(--nav-h) + 24px) 0 28px;
  }
  .foa-page-hero h1 { font-size: clamp(24px, 7vw, 32px); }
  .foa-page-hero p { font-size: 13px; }
  .foa-projects-page-grid { grid-template-columns: 1fr; }
  .foa-form-row { grid-template-columns: 1fr; }
  .foa-contact-form { padding: 36px 24px; }
  .foa-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .foa-footer { padding-top: 56px; }
  .foa-hero__controls { bottom: 28px; right: 20px; left: 20px; justify-content: space-between; }
  .foa-hero__title { font-size: clamp(32px, 9vw, 48px); }
  .foa-side-cta__tab { padding: 14px 10px; font-size: 10px; letter-spacing: 0.16em; }
  .foa-side-cta__panel { width: min(280px, calc(100vw - 48px)); padding: 24px 20px 20px; }
  .foa-gallery-grid { grid-template-columns: 1fr; }
  .foa-gallery-item:first-child { grid-column: span 1; }
  .foa-project-hero__content { bottom: 100px; }
  .foa-project-hero__logo { right: 20px; max-height: 40px; }
  .foa-virtual-tour { left: 20px; font-size: 10px; padding: 8px 14px; }
  .foa-project-nav { height: 56px; overflow-x: auto; }
  .foa-cta { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .foa-loader { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
