/* ═══════════════════════════════════════════════════════════
   BRAND TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  --black: #080e0a;
  --deep-green: #0d1a10;
  --green: #14291a;
  --emerald: #2d5c3e;
  --gold: #c9a227;
  --gold-light: #e8c45a;
  --gold-bright: #f5d97a;
  --gold-dark: #7a620e;
  --bronze: #b87333;
  --charcoal: #252b26;
  --off-white: #f0ead8;
  --muted: #9cad9e;
  --line: rgba(201, 162, 39, .2);
  --line-bright: rgba(201, 162, 39, .35);
  --panel: rgba(13, 26, 16, .78);
  --panel-dark: rgba(8, 14, 10, .82);
  --shadow: 0 28px 80px rgba(0, 0, 0, .46);

  /* Shimmer control — updated by JS on scroll */
  --shimmer-progress: 0;
  --shimmer-x: -64%;
  --shimmer-text-shadow:
    0 0 62px rgba(201, 162, 39, .28),
    0 0 14px rgba(245, 217, 122, .14),
    0 10px 34px rgba(0, 0, 0, .45);
}

/* ═══════════════════════════════════════════════════════════
   GOLD SHIMMER KEYFRAMES
   ═══════════════════════════════════════════════════════════ */
@keyframes gold-shimmer-sweep {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

@keyframes gold-text-glow {
  0%, 100% {
    text-shadow:
      0 0 60px rgba(201, 162, 39, .28),
      0 10px 34px rgba(0, 0, 0, .45);
  }
  50% {
    text-shadow:
      0 0 90px rgba(232, 196, 90, .52),
      0 0 28px rgba(201, 162, 39, .36),
      0 10px 34px rgba(0, 0, 0, .45);
  }
}

@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--off-white);
  font-family: Raleway, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 14, 10, .62), rgba(8, 14, 10, .92)),
    url("assets/marble-black.jpg") center / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='0.65' opacity='0.34'%3E%3Cpath d='M-20 80 Q120 60 200 120 Q320 200 380 160 Q460 110 560 180 Q640 240 720 200 Q800 160 920 220'/%3E%3Cpath d='M-20 250 Q120 210 230 280 Q340 360 450 300 Q560 240 690 320 Q790 380 920 330'/%3E%3Cpath d='M60 -20 Q80 110 55 220 Q35 340 110 430 Q170 500 145 620'/%3E%3Cpath d='M590 -20 Q645 120 620 245 Q595 360 668 450 Q735 525 705 620'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 14, 10, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.52), 0 1px 0 rgba(201, 162, 39, 0.12);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand img {
  width: 44px;
  height: 44px;
  animation: logo-spin 10s linear infinite;
}

.brand span {
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  color: rgba(240, 234, 216, .78);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(201, 162, 39, .34);
  background: rgba(201, 162, 39, .08);
  color: var(--gold-light);
  outline: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - 156px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: -4;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, .96) 0%, rgba(8, 14, 10, .78) 42%, rgba(8, 14, 10, .2) 74%, rgba(8, 14, 10, .55) 100%),
    linear-gradient(180deg, rgba(8, 14, 10, .14) 0%, rgba(8, 14, 10, .78) 100%);
}

.hero-frame {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(201, 162, 39, .24);
  pointer-events: none;
}

/* Gold shimmer on decorative accent line */
.hero-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright) 50%, var(--gold));
  background-size: 220% 100%;
  background-position: var(--shimmer-x) center;
  opacity: .55;
}

.hero-mark {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 220px;
  opacity: .12;
  filter: drop-shadow(0 0 44px rgba(201, 162, 39, .22));
}

.hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 74px;
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */
.eyebrow,
.section-kicker,
.card-label,
.intro-strip span,
.status {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  color: var(--gold);
  font-size: 5.25rem;
  line-height: .96;
  text-shadow: var(--shimmer-text-shadow);
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(240, 234, 216, .84);
  font-size: 1.25rem;
  line-height: 1.7;
}

.signature {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(240, 234, 216, .82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.82rem;
  font-style: italic;
  line-height: 1.25;
}

/* ═══════════════════════════════════════════════════════════
   HERO ACTIONS & BUTTONS
   ═══════════════════════════════════════════════════════════ */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.card-cta {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #10140e;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

/* Shimmer sweep on buttons */
.button::after,
.card-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 244, 186, 0) 38%,
    rgba(255, 244, 186, .3) 47%,
    rgba(255, 236, 150, .72) 50%,
    rgba(255, 244, 186, .24) 53%,
    rgba(255, 244, 186, 0) 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: var(--shimmer-x) center;
  opacity: .64;
  pointer-events: none;
}

.button-secondary {
  background: rgba(8, 14, 10, .42);
  color: var(--gold-light);
}

.button:hover,
.button:focus-visible,
.hub-card-active:hover .card-cta,
.hub-card-active:focus-visible .card-cta {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, .2);
  outline: none;
}

/* ═══════════════════════════════════════════════════════════
   INTRO STRIP
   ═══════════════════════════════════════════════════════════ */
.intro-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(13, 26, 16, .78);
}

.intro-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 28px;
}

.intro-inner p {
  margin: 0;
  color: rgba(240, 234, 216, .74);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 92px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

h2 {
  margin-top: 8px;
  color: var(--off-white);
  font-size: 3rem;
  line-height: 1.08;
}

.section-head p:last-child {
  margin: 18px 0 0;
  color: rgba(240, 234, 216, .72);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   HUB GRID & CARDS
   ═══════════════════════════════════════════════════════════ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hub-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(13, 26, 16, .9), rgba(8, 14, 10, .86)),
    url("assets/marble-black.jpg") center / cover no-repeat;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

/* Gold shimmer on card top-border accent */
.hub-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 16%, var(--gold) 36%, var(--gold-bright) 50%, var(--gold) 64%, transparent 100%);
  background-size: 220% 100%;
  background-position: var(--shimmer-x) center;
  opacity: .76;
  transition: width .28s ease;
}

.hub-card-active:hover,
.hub-card-active:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, .42);
  box-shadow: 0 32px 76px rgba(0, 0, 0, .42), 0 0 0 1px rgba(201, 162, 39, .1);
  outline: none;
}

.hub-card-active:hover::after,
.hub-card-active:focus-visible::after {
  width: 100%;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--deep-green);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .82;
  transition: transform .45s ease, opacity .3s ease;
}

.hub-card-active:hover .card-media img,
.hub-card-active:focus-visible .card-media img {
  transform: scale(1.045);
  opacity: .94;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 14, 10, .9) 100%);
}

.card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.card-brand img {
  width: 38px;
  height: 38px;
  animation: logo-spin 10s linear infinite;
}

.card-brand span {
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card-label {
  margin: 0 0 8px;
  color: rgba(201, 162, 39, .78);
}

.hub-card h3 {
  color: var(--off-white);
  font-size: 1.12rem;
  line-height: 1.28;
}

.hub-card p:not(.card-label) {
  margin: 16px 0 0;
  color: rgba(240, 234, 216, .7);
  font-size: .95rem;
}

.card-cta {
  align-self: flex-start;
  margin-top: auto;
  padding-inline: 16px;
}

.status {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(201, 162, 39, .36);
  background: rgba(8, 14, 10, .66);
  color: var(--gold-light);
  font-size: .72rem;
}

.card-media .status {
  position: absolute;
  top: 14px;
  left: 14px;
}

.status-live {
  background: rgba(201, 162, 39, .92);
  color: #10140e;
}

.is-coming-soon { justify-content: flex-end; }

.is-coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(45, 92, 62, .28), transparent 48%),
    linear-gradient(25deg, rgba(184, 115, 51, .14), transparent 58%);
  opacity: .8;
}

.card-symbol {
  position: absolute;
  top: 28px;
  right: 26px;
  color: rgba(201, 162, 39, .16);
  font-family: Cinzel, Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
}

.is-coming-soon .card-body {
  min-height: 315px;
  justify-content: flex-end;
}

.is-coming-soon .status { margin-bottom: 26px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — SHARED LUXURY LAYOUT
   ═══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 14, 10, .88);
  position: relative;
  overflow: hidden;
}

/* Animated shimmer line at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold) 40%,
    var(--gold-bright) 50%,
    var(--gold) 60%,
    var(--gold-dark) 80%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: var(--shimmer-x) center;
  opacity: .74;
}

/* Subtle ambient gradient in footer background */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(201, 162, 39, .05), transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(201, 162, 39, .04), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-bottom: 14px;
}

.footer-contact-links a,
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(240, 234, 216, .72);
  font-size: 13px;
  letter-spacing: .02em;
  transition: color .22s ease;
}

.footer-contact-links a:hover,
.footer-contact-link:hover {
  color: var(--gold-light);
}

.footer-contact-links svg,
.footer-contact-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold-dark);
  transition: color .22s ease;
}

.footer-contact-links a:hover svg,
.footer-contact-link:hover svg {
  color: var(--gold);
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.footer-nav-links a {
  color: rgba(240, 234, 216, .44);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .18s;
}

.footer-nav-links a:hover {
  color: var(--gold-light);
}

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  align-self: center;
  opacity: .72;
  animation: logo-spin 15s linear infinite;
  flex-shrink: 0;
}

.footer-brand-text {
  display: grid;
  gap: 4px;
  align-content: center;
}

.footer-brand span {
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-brand small {
  color: rgba(240, 234, 216, .58);
  font-size: 12px;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   PRIVACY / CONTENT PAGES
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow { margin-bottom: 14px; display: block; }

.page-hero h1 {
  font-size: 3.2rem;
  line-height: 1.05;
  margin: 0 0 20px;
}

.page-hero .lead {
  font-size: 1.05rem;
  margin: 0;
  max-width: 600px;
}

.content-section {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.content-section h2 {
  color: var(--gold-light);
  font-size: 1.15rem;
  letter-spacing: .12em;
  margin: 48px 0 14px;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p {
  color: rgba(240, 234, 216, .72);
  font-size: .97rem;
  line-height: 1.82;
  margin: 0 0 16px;
}

.content-section ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.content-section li {
  color: rgba(240, 234, 216, .72);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.content-section a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-section a:hover { color: var(--gold-bright); }

.content-meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: rgba(13, 26, 16, .6);
  color: rgba(240, 234, 216, .48);
  font-size: .78rem;
  margin-top: 40px;
}

.content-meta strong { color: var(--gold-dark); }

/* ═══════════════════════════════════════════════════════════
   HAMBURGER NAV BUTTON
   ═══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger:hover,
.nav-hamburger:focus-visible {
  border-color: rgba(201, 162, 39, .75);
  background: rgba(201, 162, 39, .07);
  outline: none;
}

.nav-hamburger .bar {
  position: absolute;
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .24s ease, opacity .18s ease;
}

.nav-hamburger .bar:nth-child(1) { transform: translateY(-6px); }
.nav-hamburger .bar:nth-child(3) { transform: translateY(6px); }

.nav.nav-open .nav-hamburger .bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav.nav-open .nav-hamburger .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav.nav-open .nav-hamburger .bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  h1 { font-size: 4.2rem; }
  h2 { font-size: 2.55rem; }

  .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-card { min-height: 400px; }

  .footer-inner { gap: 36px; }
}

@media (max-width: 900px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding: 38px 0;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-contact-links {
    justify-content: flex-start;
  }

  .footer-nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1160px);
    min-height: 68px;
  }

  .brand span { font-size: .86rem; }
  .brand img { width: 38px; height: 38px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 14, 10, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, .13);
    padding: 8px 0 20px;
    z-index: 18;
    animation: nav-drop .22s ease;
  }

  .nav.nav-open .nav-links { display: flex; }

  .nav-links a {
    min-height: 52px;
    width: 100%;
    padding: 0 28px;
    font-size: .8rem;
    justify-content: flex-start;
    border: none;
    border-bottom: 1px solid rgba(201, 162, 39, .07);
    border-radius: 0;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-color: transparent;
    border-bottom: 1px solid rgba(201, 162, 39, .07);
    background: rgba(201, 162, 39, .06);
  }

  .hero { min-height: calc(100svh - 140px); }
  .hero-photo { object-position: center center; }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 14, 10, .56) 0%, rgba(8, 14, 10, .96) 76%),
      linear-gradient(90deg, rgba(8, 14, 10, .72), rgba(8, 14, 10, .42));
  }

  .hero-frame { inset: 18px; }
  .hero-mark { width: 150px; right: 22px; bottom: 24px; }

  .hero-content {
    width: min(100% - 32px, 1160px);
    padding: 76px 0 54px;
  }

  h1 { font-size: 3rem; }
  .lead { font-size: 1.05rem; }
  .signature { font-size: 1.45rem; }

  .hero-actions {
    display: grid;
    gap: 12px;
    max-width: 360px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
  }

  .intro-inner {
    width: min(100% - 32px, 1160px);
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 22px 0;
  }

  .section {
    width: min(100% - 32px, 1160px);
    padding: 68px 0 76px;
  }

  h2 { font-size: 2rem; }

  .hub-grid { grid-template-columns: 1fr; }
  .hub-card { min-height: 0; }
  .card-body { padding: 23px; }
  .card-symbol { font-size: 6.2rem; }
  .is-coming-soon .card-body { min-height: 260px; }

  .page-hero h1 { font-size: 2.4rem; }
}

/* ─── Floating Mobile Fab Nav ─────────────────────────────── */

.fab-nav {
  display: none;
  transition: opacity 0.3s ease;
}

.fab-nav.nav-is-scrolling {
  opacity: 0.12;
  pointer-events: none;
}

@media (max-width: 760px) {
  .nav-hamburger {
    display: none;
  }

  .fab-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    gap: 2px;
    background: rgba(8, 8, 6, 0.88);
    border: 1px solid rgba(201, 162, 39, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 6px;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.44);
  }

  .fab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 50px;
    min-height: 50px;
    padding: 8px 4px;
    border-radius: 9px;
    color: rgba(240, 234, 216, 0.55);
    text-decoration: none;
    font-family: Cinzel, Georgia, serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .fab-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .fab-item:hover,
  .fab-item:focus-visible {
    background: rgba(201, 162, 39, 0.10);
    color: var(--gold-light);
    outline: none;
  }

  .fab-item.is-active {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
  }

  .fab-item--cta {
    color: var(--gold);
    border-top: 1px solid rgba(201, 162, 39, 0.24);
    margin-top: 6px;
    padding-top: 12px;
  }

  .fab-item--cta:hover,
  .fab-item--cta:focus-visible {
    background: rgba(201, 162, 39, 0.16);
    color: var(--gold-light);
  }
}

@media (max-width: 580px) {
  .footer-inner {
    padding: 44px 0 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  transform-origin: 0 center;
  transform: scaleX(var(--shimmer-progress, 0));
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold)      35%,
    var(--gold-light) 65%,
    var(--gold-bright) 100%
  );
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEALS
   ═══════════════════════════════════════════════════════════ */

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

@keyframes reveal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal.is-visible {
  animation-name: reveal-up;
  animation-duration: .72s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-fill-mode: both;
}

.reveal.fade.is-visible {
  animation-name: reveal-fade;
  animation-duration: .94s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal             { opacity: 1 !important; }
  .reveal.is-visible  { animation: none !important; }
  .scroll-progress    { display: none; }
}

/* Timed Sitewide Gold Shimmer */

#site-shimmer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.shimmer-streak {
  position: absolute;
  top: -20%;
  left: 0;
  width: 80px;
  height: 160%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(201, 162, 39, 0.28) 50%,
    rgba(255, 255, 255, 0.06) 65%,
    transparent 100%
  );
  transform: translateX(-150vw) rotate(-28deg);
  mix-blend-mode: overlay;
  will-change: transform;
}

.shimmer-streak.is-playing {
  animation: shimmer-sweep 1.4s ease-in-out forwards;
}

@keyframes shimmer-sweep {
  from { transform: translateX(-30vw)  rotate(-28deg); }
  to   { transform: translateX(130vw)  rotate(-28deg); }
}

/* ─── WhatsApp Floating Button ───────────────────────────── */

.wa-btn {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 790;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--deep-green, #0d1a10);
  border: 1px solid rgba(201, 162, 39, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.42);
}

.wa-btn:hover {
  transform: scale(1.08);
  border-color: rgba(201, 162, 39, 0.7);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.22), 0 4px 20px rgba(0, 0, 0, 0.42);
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--gold, #c9a227);
  transition: fill 0.22s ease;
}

.wa-btn:hover svg { fill: var(--gold-light, #e8c45a); }

.wa-btn.nav-is-scrolling { opacity: 0.12; pointer-events: none; }

@media (max-width: 760px) {
  .wa-btn {
    right: auto;
    left: 16px;
    bottom: 24px;
  }
}

/* ─── Hub Contact Section ────────────────────────────────── */

.hub-contact {
  border-top: 1px solid var(--line);
  padding: 72px max(20px, calc((100% - 860px) / 2));
}

.hub-contact .section-head {
  margin-bottom: 36px;
}

.th-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.th-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Cinzel, Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.72);
}

.th-form input,
.th-form select,
.th-form textarea {
  background: rgba(13, 26, 16, 0.48);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--off-white, #f0ead8);
  font-family: Raleway, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.th-form input:focus,
.th-form select:focus,
.th-form textarea:focus {
  border-color: rgba(201, 162, 39, 0.54);
}

.th-form select option { background: #0d1a10; }

.th-form textarea { min-height: 110px; resize: vertical; }

.th-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.th-form-result {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.th-form-result.is-visible { display: block; }

.th-form-result--success {
  background: rgba(13, 26, 16, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.36);
  color: var(--gold-light, #e8c45a);
}

.th-form-result--error {
  background: rgba(60, 10, 10, 0.5);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: rgba(255, 160, 160, 0.9);
}

@media (max-width: 560px) {
  .th-form-row { grid-template-columns: 1fr; }
}

/* ─── Music card notify-me ───────────────────────────────── */

.music-notify {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.music-notify input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(13, 26, 16, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.22);
  color: var(--off-white, #f0ead8);
  font-family: Raleway, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 9px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease;
}

.music-notify input[type="email"]::placeholder { color: rgba(240, 234, 216, 0.36); }
.music-notify input[type="email"]:focus { border-color: rgba(201, 162, 39, 0.5); }

.music-notify button {
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.36);
  color: var(--gold, #c9a227);
  font-family: Cinzel, Georgia, serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.music-notify button:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.6);
}

.music-notify-sent {
  font-size: 12px;
  color: var(--gold-light, #e8c45a);
  padding: 4px 0;
  display: none;
}

.music-notify-sent.is-visible { display: block; }

/* ─── Cookie Consent Banner ──────────────────────────────── */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8500;
  background: rgba(6, 10, 7, 0.97);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  animation: cookie-attention 3s ease-in-out 0.6s infinite;
}

@media (max-width: 760px) {
  .cookie-banner {
    bottom: auto;
    top: 76px; /* matches main hub nav min-height */
    transform: translateY(-100%);
    border-top: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.48);
  }

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

.cookie-banner-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text { flex: 1; min-width: 220px; }

.cookie-banner-title {
  font-family: Cinzel, Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 5px;
}

.cookie-banner-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240, 234, 216, 0.65);
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: Cinzel, Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn--accept {
  background: var(--gold);
  color: #070a08;
  border-color: var(--gold);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cookie-btn--essential {
  background: transparent;
  color: rgba(240, 234, 216, 0.68);
  border-color: rgba(201, 162, 39, 0.28);
}

.cookie-btn--essential:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.52);
}

.cookie-privacy-link {
  font-size: 11px;
  color: rgba(240, 234, 216, 0.38);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.cookie-privacy-link:hover { color: rgba(240, 234, 216, 0.7); }

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
  }
}

@keyframes cookie-attention {
  0%, 100% {
    border-color: rgba(201, 162, 39, 0.28);
    box-shadow: none;
  }
  50% {
    border-color: rgba(201, 162, 39, 0.68);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.1),
                0 0 32px rgba(201, 162, 39, 0.12);
  }
}
