:root {
  --bg-dark: #050505;
  --gold: #c8a96a;
  --gold-light: #e7c77d;
  --text-light: #f7f1e6;
  --text-dark: #141414;
  --marble-wash: rgba(255, 255, 255, 0.80);
  --marble-panel: rgba(255, 255, 255, 0.58);
}

html { scroll-behavior: smooth; }
body {
  background: #0b0b0b;
  color: var(--text-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.8;
}
img {
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.20);
}
.brand-mark,
.hero-title,
.section-title {
  font-family: "Italianno", "Fondamento", "Apple Chancery", "URW Chancery L", "Zapf Chancery", "Book Antiqua", cursive;
  letter-spacing: 0.02em;
}
.brand-mark {
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1;
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.85);
  text-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.site-nav {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand {
  color: #f3f3f3;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1px;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-nav .nav-link.active { color: #ffffff; }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4rem;
}
.hero-inner { max-width: 980px; }
.hero-logo {
  max-width: min(92vw, 520px);
  margin-bottom: 2.1rem;
  box-shadow: none;
}
.eyebrow {
  letter-spacing: 0.36em;
  color: #332b23;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-title,
.section-title {
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: #101010;
}
.hero-copy {
  max-width: 760px;
  color: #231f1c;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
.section-divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 0.95rem auto 1.85rem;
}
.btn-gold {
  color: #1e1a14;
  background: #ddbb6a;
  border: 0;
  box-shadow: 0 10px 24px rgba(200, 169, 106, 0.24);
}
.btn-gold:hover { color: #1e1a14; background: #e6c779; }
.hero-outline:hover { background: rgba(255,255,255,0.24); }
.dark-band {
  background: #030303;
}
.texture-band {
  background: linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.92)), radial-gradient(circle at top, rgba(200, 169, 106, 0.1), transparent 55%), #030303;
}
.marble-section {
  position: relative;
  color: var(--text-dark);
  background: url("assets/marble-bg.png") center/cover no-repeat;
}
.marble-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--marble-wash);
}
.marble-section > * { position: relative; z-index: 1; }
.marble-rich {
  background-position: center center;
}
.feature-card {
  background: transparent;
  border: 0;
}
.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.feature-image:hover,
.section-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.24);
}
.feature-row .col-lg-4:nth-child(2) .feature-card {
  transform: translateY(-6px);
}
.about-copy,
.menu-copy,
.event-copy,
.hero-copy,
.site-footer p {
  font-size: 1.18rem;
}
.copy-panel {
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}
.marble-panel {
  background: var(--marble-panel);
  backdrop-filter: blur(1px);
}
.copy-panel-dark {
  background: rgba(255,255,255,0.045);
  border-color: rgba(231, 199, 125, 0.18);
}
.menu-copy { color: #f5ede0; }
.private-events-section,
.private-events-section p,
.private-events-section h2,
.private-events-section li { color: #000 !important; }
.site-footer {
  color: #111;
}
.footer-marble {
  background: url("assets/marble-bg.png") center/cover no-repeat;
}
.footer-panel {
  display: inline-block;
  text-align: left;
}
.footer-logo { max-width: 250px; box-shadow: none; }
.footer-location-icon {
  width: 56px;
  box-shadow: none;
  transition: transform 0.3s ease;
}
.footer-social-icon svg {
  width: 32px;
  height: 32px;
  fill: #111;
  transition: fill 0.3s ease, transform 0.3s ease;
}
.social-handle { font-weight: 600; }
.map-pin-link,
.footer-social-icon { text-decoration: none; }
.map-pin-link:hover .footer-location-icon,
.footer-social-icon:hover svg { transform: translateY(-2px); }
.footer-social-icon:hover svg { fill: var(--gold); }
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding-top: 8rem; }
  .feature-row .col-lg-4:nth-child(2) .feature-card { transform: none; }
  .navbar-collapse { padding-top: 0.8rem; }
  .navbar-dark .navbar-nav .nav-link { display: inline-block; margin: 0.2rem 0; }
}

/* Final luxury pass */
:root {
  --marble-wash: rgba(255, 255, 255, 0.84);
  --marble-panel: rgba(255, 255, 255, 0.66);
}
body {
  letter-spacing: 0.01em;
  background: #050505;
}
.lead, p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
.brand-mark,
.hero-title,
.section-title {
  text-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 20px rgba(0,0,0,0.06);
}
.section-title {
  font-size: clamp(3.5rem, 5.3vw, 5.4rem);
}
.hero-title {
  font-size: clamp(4.4rem, 6.5vw, 6.8rem);
}
.site-nav {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand {
  text-decoration-thickness: 1.2px;
}
.hero {
  padding-bottom: 5.2rem;
}
.hero-inner {
  max-width: 1020px;
}
.hero-logo {
  margin-bottom: 2.6rem;
}
.eyebrow {
  color: #4a3e32;
  letter-spacing: 0.42em;
}
.section-divider {
  width: 84px;
  box-shadow: 0 0 18px rgba(200, 169, 106, 0.18);
}
.btn {
  border-radius: 0;
  letter-spacing: 0.02em;
}
.btn-gold {
  background: linear-gradient(180deg, #e4c577 0%, #d4ae5b 100%);
}
.dark-band {
  background: linear-gradient(180deg, #020202 0%, #080808 100%);
}
.marble-section {
  background-position: center top;
}
.copy-panel {
  border-radius: 0;
  box-shadow: 0 20px 44px rgba(0,0,0,0.10);
}
.marble-panel {
  border-color: rgba(0,0,0,0.12);
}
.feature-card, .section-image, .feature-image, .copy-panel {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover .feature-image,
.section-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.26);
}
.copy-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.14);
}
.about-copy,
.menu-copy,
.event-copy,
.hero-copy,
.site-footer p {
  font-size: 1.28rem;
  line-height: 1.72;
}
.footer-black {
  background: #000;
  color: #f5eee1;
  border-top: 1px solid rgba(200, 169, 106, 0.24);
}
.footer-black .copy-panel {
  background: rgba(255,255,255,0.03);
  border-color: rgba(200,169,106,0.16);
  box-shadow: none;
}
.footer-black .footer-panel {
  color: #f5eee1;
}
.footer-black .footer-social-icon svg {
  fill: #f5eee1;
}
.footer-black .social-handle {
  color: #f5eee1;
  letter-spacing: 0.03em;
}
.footer-black .footer-location-icon {
  filter: brightness(1.08);
}
.footer-black .footer-logo {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
.footer-black .copy-panel:hover {
  transform: none;
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .about-copy, .menu-copy, .event-copy, .hero-copy, .site-footer p {
    font-size: 1.18rem;
  }
}
