:root {
  --ink: #f3f4f6;
  --muted: rgba(179, 188, 200, 0.78);
  --quiet: rgba(127, 136, 149, 0.72);

  --gold: #c7a35a;
  --gold-soft: rgba(199, 163, 90, 0.16);

  --graphite: #11161d;
  --charcoal: #0c1015;
  --surface: #171d25;
  --surface-soft: rgba(23, 29, 37, 0.72);
  --surface-deep: #0b0f14;

  --panel: rgba(23, 29, 37, 0.68);
  --line: rgba(179, 188, 200, 0.12);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: min(88vw, 1380px);
  --pad: clamp(86px, 11vw, 168px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(199, 163, 90, 0.045), transparent 26rem),
    radial-gradient(circle at 86% 36%, rgba(179, 188, 200, 0.055), transparent 30rem),
    linear-gradient(180deg, #11161d 0%, #171d25 46%, #0c1015 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.32;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 244, 246, 0.045), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 42%);
  opacity: 0.65;
}

body.popup-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding: var(--pad) 0;
}

.eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  color: var(--muted);
  font-weight: 300;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(17, 22, 29, 0.68);
  border-bottom: 1px solid rgba(179, 188, 200, 0.12);
  backdrop-filter: blur(18px);
  transition: background 0.35s ease, transform 0.35s ease;
}

.site-header.scrolled {
  background: rgba(17, 22, 29, 0.9);
}

.nav-shell {
  width: min(92vw, 1480px);
  min-height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.brand-mark-image {
  overflow: hidden;
  background: #05070a;
}

.brand-mark-image img {
  width: 46px;
  max-width: none;
  height: auto;
  display: block;
  transform: translateY(1px);
}

.brand-copy {
  display: grid;
  gap: 0.04rem;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.brand-copy small {
  color: var(--quiet);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.2rem);
}

.nav-links a {
  position: relative;
  color: rgba(245, 241, 232, 0.74);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 0;
  height: 1px;
  background: rgba(199, 163, 90, 0.14);
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.text-link,
.minimal-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link::after,
.minimal-contact-link::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.text-link:hover::after,
.minimal-contact-link:hover::after {
  width: 58px;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #0c1015;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.6rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-note {
  grid-column: 1 / -1;
  max-width: 860px;
  color: var(--quiet);
  font-size: 0.85rem;
}

#disclaimer-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(14px);
}

.disclaimer-box {
  width: min(100%, 780px);
  max-height: calc(100svh - 3rem);
  overflow: auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: #11151a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.disclaimer-box h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  margin-bottom: 1.4rem;
}

.disclaimer-box p,
.disclaimer-box li {
  color: var(--muted);
  font-size: 0.95rem;
}

.disclaimer-box ul {
  margin: 1.3rem 0 1.8rem;
  padding-left: 1.2rem;
}

.disclaimer-box li {
  margin-bottom: 0.75rem;
}

.disclaimer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.disclaimer-actions button,
.disclaimer-actions a {
  min-width: 158px;
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(199, 163, 90, 0.42);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.disclaimer-actions button:hover,
.disclaimer-actions a:hover {
  background: rgba(199, 163, 90, 0.14);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .statement-grid,
  .leadership-layout,
  .quote-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-cinema {
    min-height: 860px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .strategic-quote blockquote {
    grid-column: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    min-height: 76px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }
  
  .brand-mark-image img {
  width: 36px;
}

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    gap: 0.38rem;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(245, 241, 232, 0.03);
    color: var(--ink);
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 4vw;
    right: 4vw;
    display: grid;
    gap: 0;
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    background: rgba(8, 11, 15, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-cinema {
    min-height: 780px;
    padding-top: 110px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 15vw, 5.1rem);
    line-height: 0.96;
  }

  .leadership-image {
    min-height: 480px;
    background-position: 68% center;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(90vw, 1380px);
    --pad: 72px;
  }

  .hero-cinema {
    min-height: 720px;
  }

  .hero-copy p,
  .split-copy p {
    font-size: 0.98rem;
  }

  .split-statement h2,
  .section-heading h2,
  .leadership-content h2,
  .contact-copy h2,
  .statement-grid h2,
  .strategic-quote blockquote {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    line-height: 1.02;
  }

  .contact-lines {
    font-size: 0.95rem;
  }

  .inquiry-form button,
  .disclaimer-actions button,
  .disclaimer-actions a {
    width: 100%;
  }

    .inquiry-form button,
.contact-form-shell button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(199, 163, 90, 0.42);
  background: transparent;
  color: var(--gold);
  padding: 0.95rem 1.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.inquiry-form button:hover,
.contact-form-shell button:hover {
  background: rgba(199, 163, 90, 0.14);
  color: var(--ink);
  border-color: rgba(199, 163, 90, 0.72);
}
    
}

/* FULLSCREEN CINEMATIC PRELOADER */

.cinematic-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #11161d;
  color: var(--ink);
  transition:
    opacity 1.25s cubic-bezier(.19, 1, .22, 1),
    visibility 1.25s cubic-bezier(.19, 1, .22, 1);
}

.cinematic-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-atmosphere {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 50% 44%, rgba(199, 163, 90, 0.065), transparent 19rem),
    radial-gradient(circle at 18% 18%, rgba(179, 188, 200, 0.055), transparent 24rem),
    linear-gradient(135deg, #0c1015 0%, #171d25 48%, #11161d 100%);
  transform: scale(1.04);
  animation: preloaderAtmosphere 3.4s cubic-bezier(.19, 1, .22, 1) forwards;
}

.preloader-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.preloader-mark {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.preloader-word {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.08rem, 0.45vw, 0.42rem);
  font-family: var(--serif);
  font-size: clamp(3.8rem, 10vw, 9.8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.preloader-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.36em);
  filter: blur(8px);
  animation: preloaderLetter 1.05s cubic-bezier(.19, 1, .22, 1) forwards;
  animation-delay: calc(0.22s + var(--i) * 0.115s);
}

.preloader-logo-letter {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  line-height: 0.9;
}

.preloader-logo-letter img {
  width: clamp(5.6rem, 12.8vw, 12.7rem);
  height: auto;
  display: block;
  transform: translateY(-0.02em);
}

.preloader-divider {
  width: min(240px, 42vw);
  height: 1px;
  margin: clamp(1.35rem, 3vw, 2.4rem) 0 1.1rem;
  overflow: hidden;
  background: rgba(245, 241, 232, 0.12);
}

.preloader-divider::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-102%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderLine 1.25s cubic-bezier(.19, 1, .22, 1) 1.18s forwards;
}

.preloader-mark p {
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: preloaderSubline 0.9s cubic-bezier(.19, 1, .22, 1) 1.55s forwards;
}

@keyframes preloaderAtmosphere {
  to {
    transform: scale(1);
  }
}

@keyframes preloaderLetter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes preloaderLine {
  to {
    transform: translateX(102%);
  }
}

@keyframes preloaderSubline {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .preloader-word {
    gap: 0.22rem;
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .preloader-mark p {
    font-size: 0.64rem;
    letter-spacing: 0.22em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-preloader {
    display: none;
  }
}