/* ===========================
   Brow Lounge LV — Base
   =========================== */
:root {
  --noir: #15110E;
  --noir-alt: #1D1712;
  --card: #221B16;
  --sand: #EFE3D6;
  --sand-soft: #B9AA97;
  --gold: #C9A15C;
  --gold-deep: #A9793F;
  --clay: #B8785B;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 4px;
  --max-width: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--sand);
  background: var(--noir);
  font-weight: 300;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--sand);
}

.section-tag {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--noir);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn-outline {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--sand-soft);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}

/* ===========================
   Header
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(21, 17, 14, 0.92);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.25s ease;
  border-bottom: 1px solid rgba(201, 161, 92, 0.12);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sand);
}

.logo-mark {
  height: 34px;
  width: auto;
}

.logo span {
  color: var(--gold);
}

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

.nav a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--sand-soft);
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--noir) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.nav-cta:hover {
  background: var(--gold-deep);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--sand);
  transition: all 0.25s ease;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--noir);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 161, 92, 0.10), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(184, 120, 91, 0.08), transparent 50%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
}

.hero-content {
  max-width: 560px;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 161, 92, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.eyebrow-tag {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 17px;
  color: var(--sand-soft);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   Services
   =========================== */
.services {
  padding: 100px 0 60px;
}

.service-group {
  margin-bottom: 56px;
}

.service-category {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(201, 161, 92, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  border-color: var(--gold);
}

.service-card h4 {
  font-size: 19px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--sand-soft);
}

/* ===========================
   About
   =========================== */
.about {
  padding: 60px 0;
  background: var(--noir-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 161, 92, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.about-text .section-title {
  margin-bottom: 6px;
}

.about-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--sand-soft);
  margin-bottom: 20px;
}

.about-list {
  margin-bottom: 32px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--sand-soft);
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===========================
   Gallery
   =========================== */
.gallery {
  padding: 100px 0;
}

.gallery-grid {
  column-count: 4;
  column-gap: 16px;
  margin-bottom: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 161, 92, 0.15);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-note {
  text-align: center;
  font-size: 14px;
  color: var(--sand-soft);
}

.gallery-note a {
  color: var(--gold);
  font-weight: 500;
}

/* ===========================
   Location / Book
   =========================== */
.location {
  padding: 100px 0;
  background: var(--noir-alt);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-block {
  margin-bottom: 24px;
}

.info-block h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-block p {
  color: var(--sand-soft);
}

.info-block a {
  color: var(--sand);
  transition: color 0.2s ease;
}

.info-block a:hover {
  color: var(--gold);
}

.location-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: 1px solid rgba(201, 161, 92, 0.3);
  border-radius: var(--radius);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: #0F0C0A;
  color: var(--sand);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 161, 92, 0.15);
}

.footer-brand .logo {
  color: var(--sand);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--sand-soft);
  font-size: 14px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-links a,
.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--sand-soft);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(185, 170, 151, 0.6);
}

/* ===========================
   Floating CTA
   =========================== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 90;
  background: var(--gold);
  color: var(--noir);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-media {
    order: 1;
  }

  .hero-media img {
    max-width: 280px;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-inner,
  .location-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--noir);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(201, 161, 92, 0.15);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 161, 92, 0.12);
  }

  .nav-cta {
    text-align: center;
    margin-top: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .gallery-grid {
    column-count: 2;
  }

  .floating-cta {
    display: block;
  }

  .services,
  .about,
  .gallery,
  .location {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
