/* ============================================
   12 PALACES — LUXURY GOLD (Growth Valley style)
   ============================================ */

:root {
  /* DEEP DARK */
  --bg: #0a0a0a;
  --bg-deep: #000;
  --bg-card: #141414;
  --bg-warm: #1a1a1a;
  --bg-elevated: #1f1f1f;
  
  /* RICH SHINING GOLD - like Growth Valley */
  --gold: #d4af37;            /* primary shining gold */
  --gold-bright: #f4d76e;     /* bright gold */
  --gold-deep: #a87f1f;       /* deep gold */
  --gold-pale: #f9e9b3;       /* pale champagne */
  --gold-shadow: rgba(212, 175, 55, 0.4);
  
  /* Gold gradient for big text */
  --gold-gradient: linear-gradient(135deg, #f9e9b3 0%, #d4af37 35%, #a87f1f 60%, #d4af37 80%, #f4d76e 100%);
  --gold-gradient-shine: linear-gradient(180deg, #f9e9b3 0%, #f4d76e 15%, #d4af37 50%, #a87f1f 85%, #d4af37 100%);
  
  /* TEXT */
  --text: #e8e8e8;
  --text-muted: #999;
  --text-dim: #666;
  
  /* BORDERS */
  --line: rgba(212, 175, 55, 0.2);
  --line-light: rgba(212, 175, 55, 0.08);
  --line-bright: rgba(212, 175, 55, 0.5);
  
  --pure-white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== GOLD GRADIENT TEXT (the shining effect) ===== */
.gold-text,
.gold-shine {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.gold-shine-strong {
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.5));
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #000;
  color: var(--gold);
  padding: 14px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--line);
}
.top-bar a {
  color: var(--gold);
  transition: all 0.3s;
}
.top-bar a:hover { 
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* ===== MAIN NAV ===== */
nav.main-nav {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  padding: 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 41px;
  z-index: 98;
}

.nav-left, .nav-right { display: flex; align-items: center; }
.nav-left { gap: 32px; }
.nav-right { justify-content: flex-end; gap: 28px; }

.menu-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.menu-trigger:hover { 
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}
.menu-trigger .nav-icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

/* ===== LOGO with gold shine ===== */
.logo {
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.logo::before, .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: translateY(-50%);
}
.logo::before { left: -16px; }
.logo::after { right: -16px; }

.logo-num {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.nav-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}
.nav-icon:hover { 
  color: var(--gold-bright);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu-overlay-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}
.menu-close {
  position: absolute;
  top: 32px;
  right: 48px;
  background: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  color: var(--gold);
  width: 48px;
  height: 48px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-close:hover { 
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
}
.menu-close svg { width: 20px; height: 20px; }

.menu-overlay-content {
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-overlay.active .menu-overlay-content {
  transform: translateY(0);
  opacity: 1;
}
.menu-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 64px;
  font-weight: 600;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 96px;
}
.menu-list li {
  margin-bottom: 24px;
}
.menu-list a {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
}
.menu-list a:hover {
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5));
}
.menu-list a.current {
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5));
}

.menu-footer {
  padding-top: 48px;
  border-top: 1px solid var(--line);
  max-width: 400px;
  margin: 0 auto;
}
.menu-footer-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.menu-footer-email {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  letter-spacing: 0.05em;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(180deg, #000 0%, var(--bg) 100%);
  padding: 140px 32px 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.1;
  color: var(--pure-white);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-title em {
  font-style: italic;
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.5));
  font-weight: 500;
}
.page-hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== CONTENT WRAPPERS ===== */
.content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 32px;
}
.content-wrap-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 32px;
}
.section-block { margin-bottom: 100px; }
.section-block:last-child { margin-bottom: 0; }

/* ===== PROSE ===== */
.prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 400;
}
.prose p { margin-bottom: 28px; }
.prose p:last-child { margin-bottom: 0; }
.prose em {
  font-style: italic;
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prose strong {
  font-weight: 600;
  color: var(--gold);
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.2;
  color: var(--pure-white);
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title em {
  font-style: italic;
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
}

/* ===== QUOTE ===== */
.quote-block {
  margin: 64px 0;
  padding: 48px 40px;
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.5;
  color: var(--gold-pale);
  font-weight: 400;
  position: relative;
}
.quote-attribution {
  margin-top: 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* ===== DIVIDERS ===== */
.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* ===== CTA BUTTONS ===== */
.cta {
  display: inline-block;
  padding: 22px 60px;
  background: var(--gold-gradient-shine);
  color: #000;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.cta:hover {
  background: transparent;
  color: var(--gold-bright);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.cta-light {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}
.cta-light:hover {
  background: var(--gold-gradient-shine);
  color: #000;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* ===== PAGE CTA SECTION ===== */
.page-cta-section {
  background: #000;
  background-image: 
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15), transparent 70%),
    radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.08), transparent 70%);
  color: #fff;
  padding: 140px 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-cta-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.page-cta-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  color: var(--pure-white);
  text-transform: uppercase;
}
.page-cta-title em {
  font-style: italic;
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.5));
}
.page-cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 56px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: var(--text);
  padding: 100px 32px 40px;
  border-top: 2px solid;
  border-image: linear-gradient(to right, transparent, var(--gold), transparent) 1;
}
.footer-top {
  max-width: 1400px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-logo {
  margin-bottom: 24px;
  text-align: left !important;
  padding: 0 !important;
}
.footer-logo::before, .footer-logo::after { display: none; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
  font-style: italic;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.footer-bottom span { color: var(--gold); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elevated);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.form-group textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.6;
  resize: vertical;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 32px;
}
.faq-question {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--pure-white);
  line-height: 1.4;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.faq-question-wrap:hover .faq-question {
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
  font-family: 'Cinzel', serif;
  font-size: 16px;
}
.faq-item.active .faq-toggle {
  background: var(--gold);
  color: #000;
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-item.active .faq-a {
  max-height: 800px;
  padding-top: 24px;
}
.faq-a p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a em { 
  font-style: italic;
  background: var(--gold-gradient-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-a strong { color: var(--gold); }
.faq-a a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .top-bar { padding: 10px 16px; gap: 16px; font-size: 9px; letter-spacing: 0.25em; }
  nav.main-nav { padding: 16px 24px; }
  .nav-left { gap: 20px; }
  .menu-trigger-label { display: none; }
  .menu-close { top: 24px; right: 24px; }
  .menu-list li { margin-bottom: 16px; }
  .page-hero { padding: 80px 24px 64px; }
  .content-wrap, .content-wrap-wide { padding: 64px 24px; }
  .section-block { margin-bottom: 64px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
