/* =========================================================
   ALO NAIL BAR — Site stylesheet
   Palette: white marble, deep black, silver marble veins
   Editorial monochrome, serif + sans, generous whitespace
   ========================================================= */

:root {
  --marble-white:   #fdfcfa;
  --marble-cream:   #f5f2ec;
  --marble-grey:    #e6e2db;
  --marble-vein:    #a8a29b;
  --ink:            #0a0a0a;
  --ink-soft:       #1a1a1a;
  --charcoal:       #3a3a3a;
  --grey:           #6b6b6b;
  --grey-light:     #b8b8b8;
  --line:           rgba(10, 10, 10, 0.10);
  --line-soft:      rgba(10, 10, 10, 0.05);

  --serif:          'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:           'Inter', system-ui, -apple-system, sans-serif;
  --script:         'Great Vibes', 'Dancing Script', cursive;

  --max:            1280px;
  --gutter:         clamp(20px, 5vw, 64px);
  --section-pad:    clamp(80px, 12vw, 160px);

  --marble-bg:      url("assets/hero-right-marble.png");
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--marble-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { opacity: .7; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(34px, 5.5vw, 60px); }
h3 { font-size: clamp(22px, 3vw, 30px); }

p { color: var(--ink-soft); line-height: 1.7; }

.italic { font-style: italic; font-family: var(--serif); }
.script { font-family: var(--script); font-weight: 400; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Section shell ---------- */
.section { padding: var(--section-pad) var(--gutter); position: relative; }
.container { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}

/* ---------- Signature "black pill" heading (from the menu design) ---------- */
.pill-label {
  display: inline-block;
  background: var(--ink);
  color: var(--marble-white);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 2px;
  padding: 10px 32px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pill-label-small {
  display: inline-block;
  background: var(--ink);
  color: var(--marble-white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.btn-black { background: var(--ink); color: var(--marble-white); }
.btn-black:hover { background: var(--charcoal); opacity: 1; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--marble-white); opacity: 1; }
.btn-ghost { background: transparent; color: var(--marble-white); border: 1.5px solid var(--marble-white); }
.btn-ghost:hover { background: var(--marble-white); color: var(--ink); opacity: 1; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
  padding: 14px var(--gutter);
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-brand { display: flex; align-items: center; }
.nav-brand .brand-img {
  height: 46px; width: auto;
  transition: height .4s ease, filter .4s ease;
}
.nav.scrolled .nav-brand .brand-img { height: 40px; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .25s ease, opacity .25s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--ink); transition: width .35s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: 12px 22px; font-size: 11px; }
.nav-links a.btn-black { color: var(--marble-white); }
.nav-links a.btn-black:hover { color: var(--marble-white); opacity: 1; }
.nav-links a.btn::after { display: none; }

.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 34px; height: 34px; position: relative;
}
.nav-toggle span {
  display: block; position: absolute; left: 4px; right: 4px; height: 1.5px;
  background: var(--ink); transition: all .3s ease;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { bottom: 12px; }
.nav-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { bottom: 16px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
  background: var(--marble-white);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero-right-marble.png");
  background-size: cover; background-position: center 70%;
  background-repeat: no-repeat;
  opacity: 1;
  filter: contrast(1.05) brightness(1.03);
  animation: heroBgIn 2s cubic-bezier(.2,.6,.2,1) both;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--marble-white) 0%, rgba(253,252,250,0.7) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(253, 252, 250, 0.35) 20%, rgba(253, 252, 250, 0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 40px 32px;
  border-radius: 6px;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -10px -30px;
  background: radial-gradient(ellipse at center, rgba(253, 252, 250, 0.85) 30%, rgba(253, 252, 250, 0.55) 65%, rgba(253, 252, 250, 0) 100%);
  z-index: -1;
  filter: blur(4px);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s .2s ease forwards;
  text-shadow: 0 1px 2px rgba(253, 252, 250, 0.6);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeUp 1s .4s ease forwards;
}
.hero-logo {
  display: block;
  width: auto;
  height: clamp(180px, 34vh, 300px);
  max-width: 85vw;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeUp 1.2s .3s ease forwards;
  filter: drop-shadow(0 4px 22px rgba(253, 252, 250, 0.9)) drop-shadow(0 8px 32px rgba(10,10,10,0.15));
}
@media (max-width: 640px) {
  .hero-logo { height: clamp(160px, 28vh, 240px); margin-bottom: 20px; }
}
.hero-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 1s .6s ease forwards;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(19px, 2.5vw, 25px);
  font-weight: 400;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s .8s ease forwards;
  line-height: 1.45;
  text-shadow: 0 1px 3px rgba(253, 252, 250, 0.7);
}
.hero-tagline em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}
.hero-scroll { display: none; }
.hero-scroll-line { display: none; }

@keyframes heroBgIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: .5; } 50% { transform: scaleY(1.4); opacity: 1; } }

/* ---------- ABOUT / SPLIT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; color: var(--charcoal); font-size: 16.5px; }
.about-text .btn { margin-top: 20px; }
.about-img {
  background-size: cover; background-position: center;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 80px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--grey); font-size: 16px; }

/* ---------- SERVICES PREVIEW GRID ---------- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.svc-card {
  padding: 40px 30px;
  background: var(--marble-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -30px rgba(10, 10, 10, 0.2);
}
.svc-card .svc-num {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  color: var(--marble-vein);
  margin-bottom: 12px;
}
.svc-card h3 { margin-bottom: 12px; letter-spacing: 1px; }
.svc-card p { color: var(--grey); font-size: 14px; margin-bottom: 20px; }
.svc-card .svc-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-style: italic;
}
.svc-card .svc-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
@media (max-width: 900px) { .services-preview { grid-template-columns: 1fr; } }

/* ---------- AWARD BANNER ---------- */
.award {
  padding: 60px var(--gutter);
  text-align: center;
  background: var(--ink);
  color: var(--marble-white);
  position: relative;
}
.award .eyebrow { color: var(--grey-light); }
.award h3 {
  color: var(--marble-white);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}
.award .award-mark {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 2px;
  margin-top: 20px;
  color: var(--grey-light);
}

/* ---------- COMPLIMENTARY DRINKS ---------- */
.drinks {
  background: var(--marble-cream);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 60px auto 0;
}
.drink-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 20px 10px;
}
.drink-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
}
.drink-icon svg {
  width: 32px; height: 32px;
  display: block;
}
.drink-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 700px) { .drinks-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- SANITATION BLOCK ---------- */
.sanitation {
  padding: var(--section-pad) var(--gutter);
  background: var(--marble-white);
}
.sanitation .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.sanitation-img {
  background-size: cover; background-position: center;
  aspect-ratio: 4 / 3; border-radius: 4px;
}
.sanitation-text ul {
  list-style: none;
  margin-top: 28px;
}
.sanitation-text li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 15px;
  color: var(--charcoal);
}
.sanitation-text li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ink);
  margin-top: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 900px) { .sanitation .container { grid-template-columns: 1fr; } }

/* ---------- LOCATION / HOURS ---------- */
.visit {
  padding: var(--section-pad) var(--gutter);
  background: var(--ink);
  color: var(--marble-white);
}
.visit .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visit .eyebrow { color: var(--grey-light); }
.visit h2 { color: var(--marble-white); margin-bottom: 30px; }
.visit p, .visit a { color: var(--grey-light); }
.visit .visit-details {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}
.visit .visit-details .row {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.visit .visit-details .row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.visit .visit-details .lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--marble-vein);
  margin-bottom: 6px; display: block;
}
.visit .visit-details .val {
  font-family: var(--serif); font-size: 22px; color: var(--marble-white); font-weight: 400;
}
.visit .visit-hours {
  font-family: var(--sans); font-size: 15px; color: var(--marble-white); line-height: 1.9;
}
.visit .visit-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.visit-map {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--marble-grey);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }
@media (max-width: 900px) { .visit .container { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- FULL MENU (services page) ---------- */
.menu-page-hero {
  padding: 180px var(--gutter) 80px;
  text-align: center;
  background: var(--marble-white);
  background-image: url("assets/hero-right-marble.png");
  background-size: cover; background-position: center;
}
.menu-page-hero h1 { font-size: clamp(56px, 9vw, 108px); font-weight: 300; }
.menu-page-hero .eyebrow { margin-bottom: 12px; }

.menu-category { padding: 100px var(--gutter); border-top: 1px solid var(--line); }
.menu-category:first-of-type { border-top: none; }
.menu-category .cat-head {
  text-align: center; margin-bottom: 60px;
}
.menu-category .cat-head .pill-label { margin-bottom: 24px; }
.menu-category .cat-head h2 { font-family: var(--serif); font-weight: 300; }
.menu-category .cat-note { color: var(--grey); font-size: 14px; margin-top: 10px; font-style: italic; }

.menu-items {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 4px;
}
.menu-item {
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: baseline;
}
.menu-item .name-block { }
.menu-item .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.menu-item .desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  max-width: 620px;
}
.menu-item .price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  font-style: italic;
}
.menu-item .price em { color: var(--grey); font-size: 15px; margin-left: 8px; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px var(--gutter) 40px;
  background: var(--marble-cream);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand p { color: var(--grey); font-size: 14px; max-width: 320px; margin-top: 20px; }
.footer-brand .brand-img { height: 68px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.9;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--grey);
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.footer-bottom a { color: var(--charcoal); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }
.reveal.delay-5 { transition-delay: .60s; }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; top: 68px;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px var(--gutter);
    gap: 24px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.6,.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 15px; padding: 12px 0; letter-spacing: 3px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.marble-band {
  background-image: url("assets/hero-editorial-wide.jpg");
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* =========================================================
   ALO NAIL BAR — BLACK + GOLD MARBLE REBRAND (R4)
   Applied 2026-08-01 per owner's updated brand assets:
     - Deep black marble base with subtle gold veining
     - Gold accents on headings, dividers, and pills
     - Cream text on black for body copy
     - Diamond emblem motif from the new logo
   Cascade-overrides the base white-marble palette above.
   ========================================================= */

:root {
  /* --- PALETTE OVERRIDE — dark base + luxury gold --- */
  --bg-page:         #0a0806;                       /* base black — page background */
  --bg-surface:      #100d0a;                       /* off-black — card surfaces */
  --bg-surface-2:    #171310;                       /* slightly raised */
  --bg-elevated:     #1e1915;                       /* elevated cards */

  --gold:            #c9a87c;                       /* primary brand gold */
  --gold-bright:     #e0c290;                       /* highlight */
  --gold-deep:       #a08558;                       /* shadow */
  --gold-line:       rgba(201, 168, 124, 0.22);     /* hairline gold */
  --gold-glow:       rgba(201, 168, 124, 0.10);     /* ambient gold glow */

  --cream:           #f2ecdf;                       /* primary text on black */
  --cream-soft:      #ddd3bf;                       /* softer text */
  --cream-muted:     rgba(242, 236, 223, 0.55);     /* muted text */
  --cream-dim:       rgba(242, 236, 223, 0.35);     /* dimmed */
  --line-gold:       rgba(201, 168, 124, 0.18);     /* borders */
  --line-cream:      rgba(242, 236, 223, 0.10);
}

/* ---------- Body: black marble with gold veining hint ---------- */
body {
  background: var(--bg-page);
  color: var(--cream-soft);
  background-image:
    radial-gradient(at 18% 22%, rgba(201, 168, 124, 0.08), transparent 42%),
    radial-gradient(at 82% 78%, rgba(201, 168, 124, 0.05), transparent 45%),
    radial-gradient(at 62% 35%, rgba(201, 168, 124, 0.04), transparent 55%),
    linear-gradient(180deg, #0a0806 0%, #0d0a08 45%, #0a0806 100%);
  background-attachment: fixed;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5 {
  color: var(--cream);
}
p { color: var(--cream-soft); }
.italic, em { color: var(--gold-bright); }

.eyebrow {
  color: var(--gold);
  letter-spacing: 5px;
}

/* ---------- Pill labels (gold pill instead of black) ---------- */
.pill-label {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0806;
  box-shadow: 0 4px 20px -8px rgba(201, 168, 124, 0.6);
}
.pill-label-small {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
}

/* ---------- Buttons: dark base + gold treatments ---------- */
.btn-black {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0806;
  box-shadow: 0 6px 22px -8px rgba(201, 168, 124, 0.55);
}
.btn-black:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: #0a0806;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0806;
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
}
.btn-ghost:hover {
  background: var(--cream);
  color: #0a0806;
  opacity: 1;
}

/* ---------- NAV: transparent-dark on scroll ---------- */
.nav.scrolled {
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  box-shadow: 0 1px 0 var(--line-gold);
}
.nav-links a { color: var(--cream); }
.nav-links a::after { background: var(--gold); }
.nav-toggle span { background: var(--cream); }
.nav-links a.btn-black { color: #0a0806; }
.nav-links a.btn-black:hover { color: #0a0806; }

/* ---------- HERO: dark marble ---------- */
.hero {
  background: var(--bg-page);
}
.hero-bg {
  filter: contrast(1.15) brightness(0.28) sepia(0.35) saturate(1.2);
  opacity: 0.55;
}
.hero::before {
  background: linear-gradient(to bottom, rgba(10,8,6,0.95) 0%, rgba(10,8,6,0.55) 60%, transparent 100%);
}
.hero-bg::after {
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 124, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(10,8,6,0.55) 30%, rgba(10,8,6,0.85) 100%);
}
.hero-content::before {
  background: radial-gradient(ellipse at center, rgba(10,8,6,0.85) 30%, rgba(10,8,6,0.55) 65%, rgba(10,8,6,0) 100%);
}
.hero-eyebrow {
  color: var(--gold);
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}
.hero-title {
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-subtitle { color: var(--gold); }
.hero-tagline {
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.hero-tagline em { color: var(--gold-bright); font-weight: 400; }
.hero-logo {
  filter: drop-shadow(0 4px 30px rgba(201, 168, 124, 0.35))
          drop-shadow(0 8px 40px rgba(0,0,0,0.6));
}

/* ---------- ABOUT / SPLIT ---------- */
.about-text p { color: var(--cream-soft); }
.about-img { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6); }

/* ---------- SECTION HEAD ---------- */
.section-head p { color: var(--cream-muted); }

/* ---------- SERVICES PREVIEW ---------- */
.svc-card {
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-surface-2));
  border: 1px solid var(--line-gold);
  color: var(--cream);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px -30px rgba(0,0,0,0.9),
    0 0 0 1px rgba(201, 168, 124, 0.4);
}
.svc-card .svc-num {
  color: var(--gold);
  font-style: italic;
}
.svc-card h3 { color: var(--cream); }
.svc-card p { color: var(--cream-muted); }
.svc-card .svc-price { color: var(--gold-bright); }
.svc-card .svc-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.svc-card .svc-link:hover { color: var(--gold-bright); }

/* ---------- AWARD BANNER (already dark — polish w/ gold) ---------- */
.award {
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 124, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0a0806, #100d0a);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.award .eyebrow { color: var(--gold); }
.award h3 { color: var(--cream); }
.award .award-mark { color: var(--gold-bright); }

/* ---------- DRINKS ---------- */
.drinks {
  background:
    radial-gradient(at 30% 30%, rgba(201,168,124,0.04), transparent 45%),
    var(--bg-surface);
}
.drink-icon {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 124, 0.04);
}
.drink-name { color: var(--cream-soft); }

/* ---------- SANITATION ---------- */
.sanitation { background: var(--bg-page); }
.sanitation-img { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6); }
.sanitation-text li {
  color: var(--cream-soft);
  border-bottom: 1px solid var(--line-gold);
}
.sanitation-text li::before { background: var(--gold); }

/* ---------- VISIT (already dark) ---------- */
.visit {
  background:
    radial-gradient(at 20% 80%, rgba(201,168,124,0.05), transparent 45%),
    linear-gradient(180deg, #0a0806, #100d0a);
  border-top: 1px solid var(--gold-line);
}
.visit .eyebrow { color: var(--gold); }
.visit h2 { color: var(--cream); }
.visit p, .visit a { color: var(--cream-soft); }
.visit .visit-details .row { border-top: 1px solid var(--gold-line); }
.visit .visit-details .row:last-child { border-bottom: 1px solid var(--gold-line); }
.visit .visit-details .lbl { color: var(--gold); }
.visit .visit-details .val { color: var(--cream); }
.visit .visit-hours { color: var(--cream); }
.visit-map { background: var(--bg-surface); }
.visit-map iframe { filter: grayscale(0.85) contrast(1.1) invert(0.9) hue-rotate(180deg); }

/* ---------- MENU PAGE ---------- */
.menu-page-hero {
  background: var(--bg-page);
  background-image:
    radial-gradient(at 50% 30%, rgba(201,168,124,0.10), transparent 60%),
    linear-gradient(180deg, #0a0806, #100d0a);
}
.menu-page-hero h1 { color: var(--cream); }
.menu-category { border-top: 1px solid var(--gold-line); }
.menu-item {
  border-bottom: 1px solid var(--gold-line);
}
.menu-item .name { color: var(--cream); }
.menu-item .desc { color: var(--cream-muted); }
.menu-item .price { color: var(--gold-bright); }
.menu-item .price em { color: var(--cream-dim); }

/* ---------- FOOTER ---------- */
.footer {
  background:
    linear-gradient(180deg, #0a0806, #06040300);
  border-top: 1px solid var(--gold-line);
}
.footer-brand p { color: var(--cream-muted); }
.footer-col h5 { color: var(--gold); }
.footer-col a, .footer-col p { color: var(--cream-soft); }
.footer-bottom {
  border-top: 1px solid var(--gold-line);
  color: var(--cream-muted);
}
.footer-bottom a { color: var(--cream-soft); }

/* ---------- MOBILE NAV ---------- */
@media (max-width: 900px) {
  .nav-links {
    background: rgba(10, 8, 6, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav-links a { color: var(--cream); }
}

/* ---------- Diamond emblem motif (drop between sections optionally) ---------- */
.gold-diamond-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  padding: 40px var(--gutter);
}
.gold-diamond-divider::before,
.gold-diamond-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-diamond-divider svg,
.gold-diamond-divider .diamond {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

/* =========================================================
   ALO R4 — VISUAL QA FIXES (post-rebrand round 1)
   Applied 2026-08-01. Addresses:
     - Hero logo invisible (black-fill SVG on black bg → force gold)
     - Service cards blended into bg (raise surface + stronger gold border)
     - Body text contrast bumped (cream-soft brighter)
     - Marble-band utility darkened uniformly
     - Sanitation image container floored so it's readable
     - Section vertical padding reduced (was leaving huge empty voids)
   ========================================================= */

:root {
  --cream-soft: #ede4d0;                          /* +brightness */
  --cream:      #f7f0dd;                          /* +brightness */
  --bg-surface:     #1c1815;                       /* raised — was #100d0a */
  --bg-surface-2:   #26211b;                       /* card gradient stop */
  --bg-elevated:    #2b2620;                       /* elevated */
  --section-pad:    clamp(60px, 8vw, 110px);       /* was 80-160px — reduce empty voids */
}

/* --- Hero logo: force to gold on dark bg ---
   The source logo.svg is a black-fill mark designed for a light background.
   On the new dark theme it disappears — use CSS filter to remap black → gold. */
.hero-logo {
  filter:
    brightness(0)                /* flatten to black silhouette */
    invert(1)                    /* flip to white */
    sepia(1)                     /* warm to yellow */
    saturate(4.5)                /* boost yellow toward gold */
    hue-rotate(-8deg)            /* pull toward the brand gold */
    brightness(0.95)             /* soften whites toward gold-brass */
    drop-shadow(0 6px 32px rgba(201, 168, 124, 0.45))
    drop-shadow(0 12px 48px rgba(0,0,0,0.6));
}

/* Same treatment for the nav brand mark when scrolled */
.nav-brand .brand-img {
  filter:
    brightness(0) invert(1) sepia(1) saturate(4.5) hue-rotate(-8deg) brightness(0.95);
}

/* Same for footer brand mark */
.footer-brand .brand-img {
  filter:
    brightness(0) invert(1) sepia(1) saturate(4.5) hue-rotate(-8deg) brightness(0.95);
}

/* --- Service cards: raise the surface + stronger gold border --- */
.svc-card {
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-surface-2));
  border: 1px solid rgba(201, 168, 124, 0.32);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.6);
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow:
    0 24px 60px -20px rgba(0,0,0,0.9),
    0 0 0 1px rgba(201, 168, 124, 0.5),
    0 0 40px -12px rgba(201, 168, 124, 0.25);
}

/* --- Marble-band utility: was a light stock photo; darken with uniform overlay --- */
.marble-band {
  position: relative;
  background-blend-mode: multiply;
  background-color: rgba(10, 8, 6, 0.72);
  min-height: 180px;
}
.marble-band::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,168,124,0.06), transparent 60%),
    linear-gradient(180deg, rgba(10,8,6,0.55), rgba(10,8,6,0.75));
  pointer-events: none;
}

/* --- Sanitation section image: floor its brightness so it reads at all --- */
.sanitation-img {
  filter: brightness(0.55) contrast(1.1) sepia(0.15);
  border: 1px solid var(--gold-line);
}

/* --- About image treatment (same reason — light stock photo on dark bg) --- */
.about-img {
  filter: brightness(0.6) contrast(1.05) sepia(0.12);
  border: 1px solid var(--gold-line);
}

/* --- About hero-inline pullquote: was color: var(--marble-white) which is now invisible.
       Force it to gold cream. --- */
[style*="var(--marble-white)"] {
  color: var(--cream) !important;
}
[style*="color:var(--grey-light)"],
[style*="color: var(--grey-light)"] {
  color: var(--cream-soft) !important;
}
[style*="color:var(--grey)"],
[style*="color: var(--grey)"] {
  color: var(--cream-soft) !important;
}

/* --- Section-head paragraph readability --- */
.section-head p,
.about-text p,
.sanitation-text p,
.visit p {
  color: var(--cream-soft);
}

/* --- Reduce empty voids in hero + section padding --- */
.hero {
  min-height: 82vh;
  padding: 90px var(--gutter) 60px;
}

/* --- Nav brand always visible (was fading with scrolled state) --- */
.nav-brand .brand-img {
  opacity: 1 !important;
}

/* =========================================================
   ALO R4b — fix invisible voids
   Root cause: .reveal starts opacity:0 waiting for IntersectionObserver;
   on fast scroll or when observer doesn't fire, whole sections stay hidden.
   Also: sanitation LI bullet color wasn't overridden (was --charcoal).
   ========================================================= */

/* Reveal — start visible-dim so content always appears; observer still animates */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.in { opacity: 1; transform: none; }

/* Sanitation checklist bullet items — force cream */
.sanitation-text li {
  color: var(--cream-soft) !important;
}
.sanitation-text h2 {
  color: var(--cream) !important;
}
.sanitation-text .eyebrow {
  color: var(--gold) !important;
}

/* About text explicit override — some rules cascade beyond var swap */
.about-text h2 {
  color: var(--cream) !important;
}

/* Section head — ensure title cream + eyebrow gold sitewide */
.section-head h2 {
  color: var(--cream);
}
.section-head .eyebrow {
  color: var(--gold);
}

/* Drinks headline visibility */
.drinks h2 {
  color: var(--cream) !important;
}
.drinks .drinks-subtitle,
.drinks .section-head p {
  color: var(--cream-soft) !important;
}
