/* ============================================================
   BIG LIFESTYLE — SHARED DEPARTMENT CORE (dept-core.css)
   One family. Four personalities.
   Departments set identity via --accent, --accent-bright, --accent-soft,
   --accent-font, --dept-code on <body class="dept {dept-code}">.
   Everything else is shared architecture. DO NOT REDESIGN BIG. ELEVATE BIG.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700;900&display=swap');

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

:root {
  --gold: #C5A55E;
  --gold-bright: #E0BC6B;
  --gold-deep: #8A7030;
  --green: #3B7A5F;
  --green-bright: #5BAE8C;
  --pink: #CB8B88;
  --pink-bright: #E8B4AE;
  --dark: #0A0A0A;
  --charcoal: #121212;
  --light: #F5F0E8;
  --muted: #8A8580;
  --muted-dark: #5A5550;
  /* department override these */
  --accent: var(--gold);
  --accent-bright: var(--gold-bright);
  --accent-soft: rgba(197,165,94,0.08);
  --accent-border: rgba(197,165,94,0.2);
  --accent-font: 'Cinzel', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== DEPARTMENT IDENTITIES (colors preserved from existing pages) ===== */
body.dept-barbershop { --accent: var(--gold); --accent-bright: var(--gold-bright); --accent-soft: rgba(197,165,94,0.08); --accent-border: rgba(197,165,94,0.2); --accent-font: 'Cinzel', serif; }
body.dept-salon      { --accent: var(--pink); --accent-bright: var(--pink-bright); --accent-soft: rgba(203,139,136,0.08); --accent-border: rgba(203,139,136,0.2); --accent-font: 'Playfair Display', serif; }
body.dept-braids     { --accent: #C9C4BC; --accent-bright: #E6E2DA; --accent-soft: rgba(200,195,185,0.07); --accent-border: rgba(200,195,185,0.22); --accent-font: 'Inter', sans-serif; }
body.dept-spa        { --accent: var(--green); --accent-bright: var(--green-bright); --accent-soft: rgba(91,174,140,0.08); --accent-border: rgba(91,174,140,0.2); --accent-font: 'Cormorant Garamond', serif; }

/* ===== NAV (matches homepage pattern) ===== */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197,165,94,0.08);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 12px 48px; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--light); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0.6; transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: ''; display: block; height: 1px; margin-top: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch a {
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-decoration: none;
  padding: 6px 10px; border-radius: 2px; color: var(--muted);
  border: 1px solid rgba(197,165,94,0.3); font-family: 'Inter', sans-serif;
}
.lang-switch a.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--dark); font-weight: 700; border-color: transparent;
}
.nav-cta {
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--dark); font-weight: 800; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(224,188,107,0.55);
  box-shadow: 0 0 0 3px rgba(197,165,94,0.12);
  cursor: pointer; transition: all 0.3s; border-radius: 2px;
  text-decoration: none; display: inline-block; font-family: 'Inter', sans-serif;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 3px rgba(197,165,94,0.2), 0 8px 24px rgba(197,165,94,0.3); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 140px 48px 90px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) saturate(0.92) contrast(1.02);
  transform: scale(1.015);
  transition: transform 6s ease-out;
  will-change: transform;
}
body.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, transparent 30%, transparent 65%, rgba(10,10,10,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-logo { width: 200px; height: auto; margin-bottom: 28px; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5)); }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: 14px; font-weight: 600;
}
.hero-eyebrow .house { color: var(--muted); font-weight: 400; }
.hero-title {
  font-family: var(--accent-font);
  font-size: clamp(32px, 4.8vw, 62px); font-weight: 700;
  letter-spacing: 2px; color: var(--light); line-height: 1.12; margin-bottom: 20px;
}
.hero-tagline {
  font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.85);
  max-width: 620px; margin: 0 auto 34px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-accent {
  padding: 15px 44px; text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--dark); font-weight: 700; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: 2px; transition: all 0.3s; font-family: 'Inter', sans-serif;
  display: inline-block; font-variant-numeric: tabular-nums;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.btn-ghost {
  padding: 15px 42px; background: rgba(10,10,10,0.3); color: var(--light);
  font-weight: 600; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.22); cursor: pointer; transition: all 0.35s ease;
  border-radius: 2px; font-family: 'Inter', sans-serif; text-decoration: none; display: inline-block;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--light); background: rgba(255,255,255,0.07); }

/* ===== SECTION COMMON ===== */
.section { padding: 116px 48px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: 12px; font-weight: 600; text-align: center;
}
.section-title {
  font-family: var(--accent-font);
  font-size: clamp(27px, 3.6vw, 44px); font-weight: 700;
  text-align: center; margin-bottom: 18px; letter-spacing: 1.5px;
  color: var(--light);
}
.section-subtitle {
  font-size: 15.5px; color: var(--muted); text-align: center; margin-bottom: 20px;
  font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.85;
}
.divider {
  width: 80px; height: 1px; margin: 0 auto 56px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-alt { background: var(--charcoal); }
.section + .section { padding-top: 0; }

/* ===== MASTER-BRAND RIBBON (thin house connection between sections) ===== */
.house-ribbon {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 0 48px; height: 64px;
  background: var(--dark);
  border-top: 1px solid rgba(197,165,94,0.06);
  border-bottom: 1px solid rgba(197,165,94,0.06);
}
.house-ribbon img { height: 22px; opacity: 0.75; }
.house-ribbon span {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}

/* ===== DEPARTMENT STORY ===== */
.story-lede {
  font-family: var(--accent-font);
  font-size: clamp(21px, 2.5vw, 30px); font-weight: 500; line-height: 1.65;
  color: var(--light); text-align: center;
  max-width: 780px; margin: 0 auto 22px; letter-spacing: 0.4px;
}
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.story-card {
  text-align: center; padding: 56px 40px;
  background: var(--charcoal);
  border: 1px solid var(--accent-soft);
  border-radius: 4px;
  transition: border-color 0.4s ease, transform 0.4s ease;
  position: relative; overflow: hidden;
}
.story-card:hover { border-color: var(--accent-border); transform: translateY(-4px); }
.story-card-icon { width: 46px; height: 46px; margin-bottom: 22px; display: block; margin-left: auto; margin-right: auto; opacity: 0.9; }
.story-card h3 {
  font-family: var(--accent-font); font-size: 18px; font-weight: 600;
  color: var(--accent-bright); margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase;
}
.story-card p { font-size: 14.5px; color: var(--muted); line-height: 1.8; font-weight: 300; }

/* ===== MENU ===== */
.menu-tier { margin-bottom: 76px; }
.menu-tier:last-child { margin-bottom: 0; }
.menu-tier-header { text-align: center; margin-bottom: 34px; }
.menu-tier-title {
  font-family: var(--accent-font);
  font-size: 21px; font-weight: 600; letter-spacing: 4px;
  color: var(--accent-bright); text-transform: uppercase; display: inline;
}
.menu-tier-badge {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 12px; border-radius: 100px; margin-left: 14px; vertical-align: middle;
  font-family: 'Inter', sans-serif;
}
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; max-width: 1060px; margin: 0 auto; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 20px; gap: 16px;
  border-bottom: 1px solid rgba(245,240,232,0.045);
  transition: background 0.25s ease;
}
.menu-item:hover { background: rgba(245,240,232,0.02); }
.menu-item-left { flex: 1; min-width: 0; }
.menu-item-num {
  font-size: 10px; color: var(--muted-dark); margin-right: 12px; font-weight: 600;
  letter-spacing: 1px; font-family: 'Inter', sans-serif;
}
.menu-item-name { font-size: 14.5px; color: var(--light); font-weight: 400; line-height: 1.55; letter-spacing: 0.2px; }
.menu-item-desc { font-size: 12.5px; color: var(--muted); font-weight: 300; margin-top: 4px; line-height: 1.55; }
.menu-item-right { text-align: right; flex-shrink: 0; }
.menu-item-price { font-size: 14px; color: var(--accent-bright); font-weight: 600; letter-spacing: 0.3px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item-time { display: block; font-size: 11px; color: var(--muted-dark); margin-top: 3px; letter-spacing: 0.5px; font-weight: 300; }
.menu-note {
  text-align: center; font-size: 12.5px; color: var(--muted); font-weight: 300;
  margin-top: 36px; letter-spacing: 0.2px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.menu-cta-row { text-align: center; margin-top: 44px; }

/* ===== STAFF ===== */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.staff-card {
  background: var(--charcoal);
  border: 1px solid var(--accent-soft);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
  padding-top: 40px;
}
.staff-card:hover { border-color: var(--accent-border); transform: translateY(-4px); }
.staff-photo {
  width: 168px; height: 168px; border-radius: 50%; object-fit: cover;
  display: block; margin: 0 auto 26px;
  box-shadow: 0 0 0 1px var(--accent-border), 0 0 0 5px rgba(10,10,10,0.6), 0 10px 30px rgba(0,0,0,0.4);
  filter: saturate(0.92) contrast(1.02);
  transition: box-shadow 0.4s ease;
}
.staff-card:hover .staff-photo { box-shadow: 0 0 0 1px var(--accent-bright), 0 0 0 5px rgba(10,10,10,0.6), 0 14px 34px rgba(0,0,0,0.5); }
.staff-info { padding: 0 26px 30px; text-align: center; }
.staff-name { font-family: var(--accent-font); font-size: 22px; font-weight: 600; color: var(--light); letter-spacing: 0.5px; margin-bottom: 5px; }
.staff-title { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-bright); font-weight: 600; margin-bottom: 8px; opacity: 0.9; }
.staff-bio { font-size: 13.5px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 18px; max-width: 300px; margin-left: auto; margin-right: auto; }
.staff-specialties { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; justify-content: center; }
.specialty-tag {
  font-size: 10px; padding: 5px 12px; border-radius: 100px;
  background: none; border: 1px solid var(--accent-border);
  color: var(--muted); font-weight: 400; letter-spacing: 0.8px;
}
.staff-specialties .specialty-tag:first-child { color: var(--accent-bright); border-color: var(--accent-border); }
.staff-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.staff-btn {
  padding: 11px 22px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.3s;
  font-family: 'Inter', sans-serif; display: inline-block; border: none;
}
.staff-btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-bright)); color: var(--dark); }
.staff-btn.primary:hover { transform: translateY(-2px); }
.staff-btn.secondary {
  background: transparent; color: var(--light);
  border: 1px solid rgba(255,255,255,0.18); font-weight: 600;
}
.staff-btn.secondary:hover { border-color: var(--light); background: rgba(255,255,255,0.05); }
.staff-btn:disabled, .staff-btn.is-hidden { display: none; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 10px;
}
.portfolio-item {
  position: relative; overflow: hidden; border-radius: 3px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.02); }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }
.portfolio-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.9); font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  opacity: 0; transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-caption { opacity: 1; }

/* ===== SPACE / EXPERIENCE ===== */
.space-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.space-item {
  position: relative; overflow: hidden; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.04);
  aspect-ratio: 16 / 10;
}
.space-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.space-item:hover img { transform: scale(1.02); }
.space-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 18px 12px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(245,240,232,0.92); font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}

/* ===== CLIENT EXPERIENCES ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
  padding: 40px 32px; text-align: center;
  background: var(--charcoal);
  border: 1px solid var(--accent-soft);
  border-radius: 4px;
}
.testimonial-stars { color: var(--accent-bright); font-size: 14px; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial-text { font-size: 14.5px; color: rgba(245,240,232,0.8); line-height: 1.85; font-weight: 300; margin-bottom: 18px; font-style: italic; }
.testimonial-author { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ===== FINAL BOOKING CTA ===== */
.booking-cta {
  padding: 150px 48px; text-align: center; background: var(--dark);
  position: relative; overflow: hidden;
}
.booking-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.3) saturate(0.85);
}
.booking-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.88) 100%);
}
.booking-cta-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.booking-cta-title {
  font-family: var(--accent-font);
  font-size: clamp(26px, 3.6vw, 44px); font-weight: 700; letter-spacing: 1px;
  margin-bottom: 14px; color: var(--light); line-height: 1.25;
}
.booking-cta-title .accent { color: var(--accent-bright); }
.booking-cta-text { font-size: 15px; color: var(--muted); font-weight: 300; margin-bottom: 40px; line-height: 1.8; }
.booking-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.booking-cta-note { margin-top: 22px; font-size: 12px; color: var(--muted-dark); letter-spacing: 1px; text-transform: uppercase; font-weight: 400; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); padding: 52px 48px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 48px; width: auto; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--light); }
.footer-house {
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold-bright);
  opacity: 0.9; margin-top: 22px; text-align: center;
}
.footer-bottom { text-align: center; padding-top: 24px; font-size: 11px; color: var(--muted); font-weight: 300; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.04); }

/* ===== HERO SETTLE + DIVIDER LINE-DRAW ===== */
@keyframes heroSettle { from { transform: scale(1.03); } to { transform: scale(1); } }
@media (prefers-reduced-motion: no-preference) {
  body.loaded .hero-bg { animation: heroSettle 3.5s ease-out both; }
}
.divider { transform-origin: center; }
.will-reveal.divider { transform: scaleX(0.2); opacity: 0; }
.will-reveal.divider.revealed { transform: scaleX(1); opacity: 1; transition: transform 0.9s ease, opacity 0.9s ease; }

/* ===== SECTION ENTRANCES (gentle, no-js safe) ===== */
.will-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.will-reveal.revealed { opacity: 1; transform: translateY(0); }
.no-js .will-reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .will-reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 20px; }
  .hero { padding: 110px 24px 70px; min-height: 76vh; }
  .hero-logo { width: 160px; }
  .section { padding: 68px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 16px; }
  .story-card { padding: 40px 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .space-gallery { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; }
  .booking-cta { padding: 88px 24px; }
  .footer { padding: 40px 24px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; row-gap: 10px; column-gap: 18px; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 12px; }
  .nav-logo img { height: 32px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; letter-spacing: 1px; }
  .lang-switch { display: none; }
  .hero { padding: 96px 18px 60px; min-height: 72vh; }
  .hero-logo { width: 132px; }
  .hero-buttons .btn-accent, .hero-buttons .btn-ghost { width: 100%; max-width: 300px; }
  .section { padding: 64px 18px; }
  .menu-item { padding: 16px 12px; gap: 10px; }
  .menu-item-num { display: none; }
  .menu-item-name { font-size: 14px; }
  .menu-item-price { font-size: 13.5px; }
  .menu-acc-head { padding: 20px 8px; }
  .menu-acc-title { font-size: 15.5px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; gap: 8px; }
  .portfolio-item.wide { grid-column: span 2; }
  .staff-photo { width: 140px; height: 140px; }
  .staff-actions .staff-btn { width: 100%; text-align: center; }
  .story-card { padding: 44px 26px; }
  .booking-cta { padding: 88px 18px; }
  .booking-cta-buttons .btn-accent, .booking-cta-buttons .btn-ghost { width: 100%; max-width: 320px; }
  .house-ribbon { padding: 0 18px; gap: 10px; }
}
@media (max-width: 360px) {
  .hero-logo { width: 120px; }
  .hero-title { font-size: 27px; letter-spacing: 1.5px; }
  .section-title { font-size: 25px; }
  .portfolio-grid { grid-auto-rows: 104px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 26px; }
  .section-title { font-size: 24px; }
  .portfolio-grid { grid-auto-rows: 100px; }
}
/* ===== MENU v2 — approved dataset (accordion categories, no-js safe) ===== */
.menu-group-title {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--muted); text-align: center;
  margin: 64px 0 22px; font-weight: 600; opacity: 0.9;
}
.menu-group-title:first-of-type { margin-top: 0; }
.menu-acc { border-top: 1px solid var(--accent-soft); max-width: 1060px; margin: 0 auto; }
.menu-acc-item { border-bottom: 1px solid var(--accent-soft); }
.menu-acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 14px; background: none; border: none; cursor: pointer;
  text-align: left; gap: 16px;
}
.menu-acc-head:hover { background: rgba(245,240,232,0.02); }
.menu-acc-title { font-family: var(--accent-font); font-size: 20px; font-weight: 600; letter-spacing: 2.5px; color: var(--accent-bright); text-transform: uppercase; }
.menu-acc-meta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.menu-acc-count { font-size: 11px; color: var(--muted-dark); letter-spacing: 1px; font-weight: 500; }
.menu-acc-chev { width: 10px; height: 10px; border-right: 1px solid var(--muted); border-bottom: 1px solid var(--muted); transform: rotate(45deg); transition: transform 0.35s ease; margin-right: 6px; flex-shrink: 0; }
.menu-acc-item.open .menu-acc-chev { transform: rotate(-135deg); }
.menu-acc-body { display: none; padding: 4px 8px 18px; }
.menu-acc-item.open .menu-acc-body { display: block; }
.menu-acc-body .menu-grid { max-width: none; }
.menu-badge-inline {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-bright); border: 1px solid var(--accent-border);
  padding: 3px 10px; border-radius: 100px; font-weight: 600;
}
@media (max-width: 700px) {
  .menu-acc-head { padding: 18px 10px; }
  .menu-acc-title { font-size: 16px; letter-spacing: 1.5px; }
  .menu-acc-count { display: none; }
}

/* ===== MASTER PROFILE modal (data-driven, employees.json) ===== */
.master-gate { position: fixed; inset: 0; z-index: 290; display: none; }
.master-gate.open { display: flex; align-items: center; justify-content: center; padding: 20px; }
.master-gate-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
.master-gate-panel {
  position: relative; z-index: 1; width: 100%; max-width: 520px;
  background: var(--charcoal); border: 1px solid var(--accent-border);
  border-radius: 10px; overflow-y: auto; max-height: 90vh;
  box-shadow: 0 30px 90px rgba(0,0,0,0.75);
}
.master-gate-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; display: block; margin: 40px auto 18px; border: 2px solid var(--accent-border); }
.master-gate-body { padding: 0 32px 32px; text-align: center; }
.master-gate-name { font-family: var(--accent-font); font-size: 24px; font-weight: 700; color: var(--light); letter-spacing: 0.5px; }
.master-gate-role { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-bright); font-weight: 600; margin-top: 5px; }
.master-gate-level {
  display: inline-block; margin-top: 10px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  padding: 4px 14px; border-radius: 100px; font-weight: 700;
}
.master-gate-specs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin: 16px 0 14px; }
.master-gate-bio { font-size: 13.5px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.master-gate-bio.is-empty { display: none; }
.master-gate-tiernote { font-size: 12px; color: var(--muted); margin-bottom: 20px; font-weight: 300; }
.master-gate-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding-bottom: 34px; }
.master-gate-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; background: rgba(10,10,10,0.6); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; color: var(--muted); cursor: pointer; z-index: 2; }
.master-gate-close:hover { color: var(--light); border-color: var(--light); }
@media (max-width: 480px) {
  .master-gate-body { padding: 0 22px 28px; }
  .master-gate-photo { margin-top: 32px; }
}
/* staff card: enable profile open */
.staff-card[data-employee] { cursor: pointer; }

/* ===== PHASE 5 — ACCESSIBILITY ===== */
/* Visible focus for keyboard users (brand-consistent, subtle) */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 400;
  background: var(--gold); color: var(--dark);
  padding: 10px 18px; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
/* Modal focus containment helpers */
.master-gate.open, .book-gate.open { }
/* menu accordion aria-expanded visual state */
.menu-acc-head[aria-expanded="true"] .menu-acc-title { color: var(--light); }
