/* ======================================================
   Z-AXIS ATELIER — Shared Design System
   ====================================================== */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');
@import url('custom-theme.css');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8a6820;
  --charcoal: #0e0e0e;
  --charcoal-mid: #1a1a1a;
  --charcoal-light: #252525;
  --off-white: #f5f0e8;
  --off-white-dim: #d4cfc6;
  --text-muted: #888880;
  --accent-warm: #c4a882;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 80px;
  --section-padding: clamp(80px, 10vw, 160px);
}

/* ===== FINE-GRAINED TYPOGRAPHY MAPS ===== */
h1, h2, h3, h4, h5, h6, .section-title, .page-hero-title, .award-row-name, .value-card-title, .timeline-title {
  font-family: var(--font-headings) !important;
}

body, p, .about-body-text, .timeline-desc, .value-card-desc, .about-lead, .page-hero-desc {
  font-family: var(--font-body) !important;
}

.nav-logo-name, .nav-logo-tag, .nav-links a, .mobile-nav ul a {
  font-family: var(--font-header) !important;
}

footer, .footer-logo-name, .footer-logo-tag, .footer-brand-desc, .footer-col-title, .footer-links a, .footer-copy {
  font-family: var(--font-footer) !important;
}

.loader-logo, .loader-subtitle, .loader-counter {
  font-family: var(--font-loader) !important;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--charcoal);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold); color: var(--charcoal); }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; background: var(--charcoal); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s var(--ease-smooth);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.loader-logo {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--gold); letter-spacing: 0.08em;
  opacity: 0; transform: translateY(20px);
  animation: loaderFadeUp 0.8s var(--ease-expo) 0.3s forwards;
}
.loader-subtitle {
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--text-muted);
  opacity: 0; transform: translateY(10px);
  animation: loaderFadeUp 0.8s var(--ease-expo) 0.6s forwards;
  margin-top: 8px;
}
.loader-line-wrap {
  width: 200px; height: 1px; background: var(--charcoal-light); overflow: hidden;
  opacity: 0; animation: loaderFadeIn 0.5s ease 0.9s forwards;
}
.loader-line {
  height: 100%; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 40%; animation: loaderScan 1.5s var(--ease-smooth) 1.2s infinite;
}
.loader-counter {
  font-family: var(--font-serif); font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--text-muted); opacity: 0; animation: loaderFadeIn 0.5s ease 1s forwards;
}
@keyframes loaderFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderScan { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ===== CURSOR ===== */
.cursor {
  position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9997; transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.3s;
}
.cursor.hovering { width: 4px; height: 4px; }
.cursor-ring.hovering { width: 60px; height: 60px; border-color: rgba(201,168,76,0.8); }
@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); display: flex; align-items: center;
  justify-content: space-between; padding: 0 clamp(20px, 5vw, 80px);
  transition: background 0.6s var(--ease-smooth), backdrop-filter 0.6s, box-shadow 0.6s;
}
#navbar.scrolled {
  background: rgba(14,14,14,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; justify-content: center; align-items: flex-start; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.05em; color: var(--off-white); line-height: 1; }
.nav-logo-tag { font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: clamp(24px,3vw,48px); list-style: none; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--off-white-dim);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease-expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--off-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  color: var(--charcoal) !important; background: var(--gold);
  padding: 10px 24px !important; transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--charcoal) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s var(--ease-smooth);
}
.hamburger:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}
.hamburger.active {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--off-white);
  transition: all 0.4s var(--ease-expo);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(22, 22, 25, 0.96) 0%, rgba(10, 10, 12, 0.99) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}
.mobile-nav::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.2s var(--ease-smooth);
}
.mobile-nav.open::before {
  opacity: 1;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav ul li {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s var(--ease-expo), opacity 0.8s var(--ease-expo);
}
.mobile-nav.open ul li {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open ul li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav ul a {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  font-weight: 300;
  color: var(--off-white-dim);
  letter-spacing: 0.05em;
  transition: color 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  display: inline-block;
}
.mobile-nav ul a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.mobile-nav ul a.active {
  color: var(--gold);
}
.mobile-nav ul a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-expo), left 0.4s var(--ease-expo);
}
.mobile-nav ul a:hover::after,
.mobile-nav ul a.active::after {
  width: 40px;
  left: calc(50% - 20px);
}
.mobile-nav-footer {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 24px;
  width: 80%;
  max-width: 250px;
  text-align: center;
  margin-top: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s var(--ease-expo) 0.4s, opacity 0.8s var(--ease-expo) 0.4s;
}
.mobile-nav.open .mobile-nav-footer {
  transform: translateY(0);
  opacity: 1;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative; height: 75vh; min-height: 600px; display: flex;
  align-items: flex-end; overflow: hidden; padding-top: var(--nav-height);
}
.page-hero-bg {
  position: absolute; inset: -20%; background-size: cover; background-position: center;
  will-change: transform; transition: transform 0.05s linear;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.45) 55%, rgba(14,14,14,0.2) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; padding: 0 clamp(20px,6vw,100px) clamp(60px,8vw,100px);
}
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.9s var(--ease-expo) 0.3s forwards;
}
.page-hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.page-hero-eyebrow-text {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold);
}
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(3rem,7vw,6.5rem); font-weight: 400;
  line-height: 1.15; color: var(--off-white); overflow: hidden;
}
.page-hero-title-line {
  display: block; opacity: 0; transform: translateY(100%);
  animation: heroLineUp 0.9s var(--ease-expo) forwards;
  padding-bottom: 0.08em;
}
.page-hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.page-hero-title-line:nth-child(2) { animation-delay: 0.5s; font-style: italic; color: var(--gold-light); }
.page-hero-desc {
  font-family: var(--font-sans); font-size: clamp(0.85rem,1.2vw,1rem); font-weight: 300;
  color: var(--off-white-dim); max-width: 480px; line-height: 1.8; margin-top: 24px;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.9s var(--ease-expo) 0.6s forwards;
}
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroLineUp { to { opacity: 1; transform: translateY(0); } }

/* ===== MARQUEE ===== */
.marquee-section { background: var(--gold); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; animation: marqueeScroll 20s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 40px; padding: 0 40px; flex-shrink: 0; }
.marquee-text { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--charcoal); }
.marquee-dot { width: 5px; height: 5px; background: var(--charcoal); border-radius: 50%; opacity: 0.5; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION UTILITIES ===== */
.section { padding: var(--section-padding) clamp(20px,6vw,100px); }
.section-tag { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.section-tag-line { width: 30px; height: 1px; background: var(--gold); }
.section-tag-text { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 300; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,4.5rem); font-weight: 400; line-height: 1.1; color: var(--off-white); }
.section-title em { font-style: italic; color: var(--gold-light); }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 24px 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal);
  background: var(--gold); padding: 16px 36px; position: relative; overflow: hidden;
  transition: color 0.4s; border: none; cursor: pointer;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--gold-light);
  transform: translateX(-101%); transition: transform 0.5s var(--ease-expo);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--off-white-dim); transition: color 0.3s;
}
.btn-secondary:hover { color: var(--gold); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.2); padding: 12px 28px; transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider { position: relative; height: clamp(320px,45vw,520px); overflow: hidden; }
.parallax-divider-bg {
  position: absolute; inset: -30%; background-size: cover; background-position: center;
  background-attachment: scroll; will-change: transform;
}
.parallax-divider-overlay {
  position: absolute; inset: 0; background: rgba(14,14,14,0.6);
  display: flex; align-items: center; justify-content: center;
}
.parallax-quote-text {
  font-family: var(--font-display); font-size: clamp(1.6rem,4vw,3.5rem); font-style: italic;
  color: var(--off-white); line-height: 1.3; text-align: center;
  padding: 0 clamp(20px,6vw,80px); margin-bottom: 20px;
}
.parallax-quote-author { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); text-align: center; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed; bottom: 40px; right: clamp(20px,4vw,60px); width: 48px; height: 48px;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--charcoal);
  z-index: 500; opacity: 0; transform: translateY(20px); transition: opacity 0.4s, transform 0.4s, background 0.3s;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(160deg, #0d1117 0%, #0e0e0e 60%, #0a0a0a 100%);
  border-radius: 48px 48px 0 0;
  border-top: 2px solid var(--gold);
  padding: clamp(60px, 6vw, 80px) 0 0;
  position: relative;
  margin-top: -48px;
  z-index: 10;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
footer::after {
  content: ''; position: absolute; bottom: 0; right: 5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.footer-main, .footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: 24px;
  padding: 0 clamp(20px, 6vw, 100px);
}
.footer-logo-name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 8px; }
.footer-logo-tag { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.footer-brand-desc { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; max-width: 280px; }

/* Address info items with icons */
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-info-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  opacity: 0.85;
}
.footer-info-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-info-item a:hover { color: var(--gold-light); }
.footer-info-item span { line-height: 1.7; }

/* Column titles */
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.footer-col-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: var(--gold);
  z-index: 1;
  border-radius: 2px;
}

/* Quick Links */
.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.footer-link-arrow {
  display: inline-block;
  color: var(--gold);
  opacity: 0;
  margin-right: 6px;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.75rem;
}
.footer-links a {
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 300;
  color: var(--text-muted); display: inline-flex; align-items: center;
  transition: color 0.3s, transform 0.3s var(--ease-smooth);
}
.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.footer-links a:hover .footer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Newsletter */
.footer-newsletter-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 0;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.footer-newsletter-form:focus-within {
  border-color: var(--gold);
}
.footer-newsletter-form .envelope-icon {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 10px;
  flex-shrink: 0;
}
.footer-newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  width: 100%;
  padding-right: 30px;
}
.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter-form button {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.3s, transform 0.3s;
}
.footer-newsletter-form button:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Social icons row */
.footer-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e0e0e;
  transition: all 0.4s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
  flex-shrink: 0;
}
.social-icon-btn:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

/* Copyright bar */
.footer-bottom {
  display: block;
  padding: 24px clamp(20px, 6vw, 100px) 28px;
  margin-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.footer-time-bar {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-time-bar span { color: var(--gold); }
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.footer-copy span { color: var(--gold); }


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .parallax-divider-bg { background-attachment: scroll; }
  .page-hero { height: 60vh; min-height: 400px; }
  .page-hero-bg { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .footer-bottom { justify-content: center; }
}

/* ===== IMAGE NOT AVAILABLE PLACEHOLDER ===== */
.image-not-available {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px dashed rgba(255,255,255,0.12);
  color: var(--text-muted, #888880);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}
.image-not-available::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.01) 10px,
    rgba(255, 255, 255, 0.01) 20px
  );
  pointer-events: none;
}
.image-not-available span {
  position: relative;
  z-index: 1;
}

