/* ============================================
   GWENNATO EPOXY — SHARED CSS FOUNDATION
   Dark luxury theme with gold accents
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --gold: #c9a96e;
  --gold-light: #dfc089;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --gold-glow: rgba(201, 169, 110, 0.3);
  --text-primary: #f0ece4;
  --text-secondary: #8a8680;
  --text-dim: #5a5650;
  --border: rgba(201, 169, 110, 0.12);
  --border-hover: rgba(201, 169, 110, 0.3);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   3. KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,0.1); }
  50% { box-shadow: 0 0 40px rgba(201,169,110,0.25); }
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes loaderFade {
  to { opacity: 1; }
}

@keyframes loaderProgress {
  to { width: 100%; }
}

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}

/* ============================================
   4. ANIMATION UTILITY CLASSES
   ============================================ */
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.delay-6 { animation-delay: 0.8s; }
.delay-7 { animation-delay: 0.95s; }

/* ============================================
   5. SCROLL REVEAL CLASSES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   6. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 50px;
  padding-top: calc(20px + var(--safe-top));
  padding-left: calc(50px + var(--safe-left));
  padding-right: calc(50px + var(--safe-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 50px;
  padding-top: calc(14px + var(--safe-top));
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--text-primary);
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* 7. Active nav state */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 28px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  letter-spacing: 2px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
  padding: 80px 50px 40px;
  padding-bottom: calc(40px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-brand span {
  color: var(--text-primary);
  font-weight: 300;
}

.footer-brand-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer-col p + p { margin-top: 16px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ============================================
   9. BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,169,110,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   10. SECTION LABEL
   ============================================ */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: lineGrow 0.8s 0.3s ease forwards;
}

/* ============================================
   11. LOADER SCREEN
   ============================================ */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade 1.2s 0.2s ease forwards;
}
.loader-logo span {
  color: var(--text-primary);
  font-weight: 300;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
  overflow: hidden;
  border-radius: 1px;
}
.loader-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: loaderProgress 1.2s 0.2s ease forwards;
}

/* ============================================
   12. FLOATING WHATSAPP
   ============================================ */
.floating-wa {
  position: fixed;
  bottom: calc(30px + var(--safe-bottom));
  right: calc(24px + var(--safe-right));
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s;
  animation: pulseWa 2s ease infinite;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.floating-wa-tooltip {
  position: absolute;
  right: 66px;
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.floating-wa:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   13. BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: calc(96px + var(--safe-bottom));
  right: calc(24px + var(--safe-right));
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   14. LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-left: 12px;
}

.lang-btn {
  padding: 6px 12px;
  background: transparent;
  color: var(--text-dim);
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 32px;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ============================================
   15. AI CHATBOT
   ============================================ */
.chatbot-trigger {
  position: fixed;
  bottom: calc(30px + var(--safe-bottom));
  left: calc(24px + var(--safe-left));
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  cursor: pointer;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  transition: all 0.3s;
  border: none;
}
.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201,169,110,0.5);
}

.chatbot-window {
  position: fixed;
  bottom: calc(100px + var(--safe-bottom));
  left: calc(24px + var(--safe-left));
  z-index: 950;
  width: 360px;
  max-height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 12px;
  overflow: hidden;
}
.chatbot-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 18px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.chatbot-header-name {
  font-size: 0.88rem;
  font-weight: 500;
}

.chatbot-header-status {
  font-size: 0.7rem;
  color: #25D366;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  min-height: 200px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  animation: fadeUp 0.3s ease;
}
.chat-msg.bot {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--text-secondary);
}
.chat-msg.user {
  background: var(--gold);
  color: var(--bg-primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 12px;
}

.chat-suggest-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.73rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 20px;
  white-space: nowrap;
}
.chat-suggest-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.chatbot-input-area {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  background: var(--bg-secondary);
}

.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 8px;
  min-height: 44px;
}
.chatbot-input:focus {
  outline: none;
  border-color: var(--gold);
}
.chatbot-input::placeholder { color: var(--text-dim); }

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold);
  border: none;
  color: var(--bg-primary);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.chatbot-send:hover { transform: scale(1.05); }

/* ============================================
   16. LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  padding: var(--safe-top) var(--safe-right) var(--safe-bottom) var(--safe-left);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 800px;
  width: 90%;
  text-align: center;
}

.lightbox-visual {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1510, #0f0f0f, #1a1510);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.lightbox-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.lightbox-close {
  position: absolute;
  top: calc(20px + var(--safe-top));
  right: calc(20px + var(--safe-right));
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: rgba(10,10,10,0.8);
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: rgba(10,10,10,0.8);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox-prev { left: calc(20px + var(--safe-left)); }
.lightbox-next { right: calc(20px + var(--safe-right)); }

/* ============================================
   17. FORM ELEMENTS
   ============================================ */
.calc-select,
.calc-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  min-height: 44px;
}
.calc-select:focus,
.calc-input:focus {
  outline: none;
  border-color: var(--gold);
}
.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   18. PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 60%),
    var(--bg-primary);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 30px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   19. BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ============================================
   20. RESPONSIVE — SHARED COMPONENTS
   ============================================ */

/* ---- 1024px breakpoint ---- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- 768px breakpoint ---- */
@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar {
    padding: 16px 24px;
    padding-left: calc(24px + var(--safe-left));
    padding-right: calc(24px + var(--safe-right));
  }
  .navbar.scrolled {
    padding: 12px 24px;
    padding-left: calc(24px + var(--safe-left));
    padding-right: calc(24px + var(--safe-right));
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile menu open state */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }

  /* Footer stacked */
  .footer {
    padding: 60px 24px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Page hero reduced padding */
  .page-hero {
    padding-top: 80px;
    min-height: 35vh;
  }

  /* Chatbot responsive */
  .chatbot-window {
    left: 12px;
    right: 12px;
    bottom: calc(96px + var(--safe-bottom));
    width: auto;
  }

  /* Language toggle */
  .lang-toggle { margin-left: 0; }
}

/* ============================================
   21. TOUCH TARGET MINIMUMS (iOS)
   ============================================ */
@media (pointer: coarse) {
  .nav-links a,
  .btn-primary,
  .btn-secondary,
  .nav-cta,
  .footer-socials a,
  .footer-col ul a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-socials a {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   22. SAFE AREA SUPPORT (iPhone)
   ============================================ */
@supports (padding: env(safe-area-inset-top)) {
  .nav-links.open {
    padding-top: var(--safe-top);
  }
}
