/* ================================================
   FADE MASTERZ — styles.css
   Mobile-first premium dark barbershop website
   ================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Backgrounds */
  --bg-body:       #161616;
  --bg-alt:        #1B1B1B;
  --bg-card:       #222222;
  --bg-card-h:     #2A2A2A;

  /* Gold palette — muted metallic, not bright */
  --gold:          #C4974A;
  --gold-light:    #D9B26A;
  --gold-dark:     #9A7530;
  --gold-glow:     rgba(196, 151, 74, 0.20);
  --gold-subtle:   rgba(196, 151, 74, 0.07);
  --gold-border:   rgba(196, 151, 74, 0.25);

  /* Text */
  --text-primary:    #F2EDE4;
  --text-secondary:  #938E88;
  --text-muted:      #504C49;

  /* Borders */
  --border:          rgba(255, 255, 255, 0.06);
  --border-md:       rgba(255, 255, 255, 0.11);

  /* Fonts */
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py:      100px;
  --container-max:   1140px;
  --container-px:    22px;

  /* Radius */
  --r-xs:  5px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  26px;
  --r-2xl: 40px;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body.menu-open { overflow: hidden; }

img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }


/* ================================================
   UTILITIES
   ================================================ */

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

/* Section */
.section {
  padding: var(--section-py) 0;
}

/* Section label (eyebrow text) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-label::before {
  display: none;
}

/* Section header block */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Section description */
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
}

/* Hero address line */
.hero-address {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 400;
}

/* Gold text helpers */
.gold { color: var(--gold); }

.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: var(--r-md);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: transform var(--t-base), box-shadow var(--t-base),
              background var(--t-base), border-color var(--t-base),
              color var(--t-base), opacity var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Shimmer overlay */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.04) 40%,
    transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* Gold filled */
.btn-gold {
  background: var(--gold);
  color: #0C0A06;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--gold-glow), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-gold:active { transform: translateY(0); box-shadow: none; }

/* Ghost outlined */
.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-md);
}
.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }


/* ================================================
   NAVIGATION
   ================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding var(--t-base), background var(--t-base),
              border-color var(--t-base), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  z-index: 1001;
  position: relative;
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Mobile menu overlay */
.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  z-index: 1000;
  padding: 80px 24px 48px;
}
.nav-menu.open { display: flex; }

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

.nav-link {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-book { padding: 12px 26px; }

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
  position: relative;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 110px var(--container-px) 72px;

  /* Multi-layer background — radial gold glows + vinyl diamond pattern */
  background:
    radial-gradient(ellipse 80% 50% at 15% 85%, rgba(196, 151, 74, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(196, 151, 74, 0.04) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cdefs%3E%3Cpattern id='diamonds' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M20 2 L38 20 L20 38 L2 20 Z' fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.07'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='40' height='40' fill='url(%23diamonds)'/%3E%3C/svg%3E") repeat,
    #0E0E0E;
}

/* Dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
}

/* Bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg-body), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-family: var(--font-body);
  opacity: 0.85;
}
.eyebrow-line {
  display: none;
}

/* Main title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(62px, 17vw, 118px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-masterz {
  display: block;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px auto;
}
.hero-divider .divider-line {
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: var(--gold-border);
}
.hero-divider .divider-icon {
  color: var(--gold);
  font-size: 11px;
  opacity: 0.55;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}
.hero-tagline em {
  color: var(--text-primary);
  font-style: italic;
  font-weight: 400;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* (hero stats removed — replaced by .hero-address) */


/* ================================================
   ABOUT
   ================================================ */
.about {
  background: var(--bg-alt);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.about-text .section-label { margin-bottom: 16px; }

.about-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 34px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-icon {
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}
.pillar-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* About visual card */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-image-card {
  position: relative;
  width: 260px;
  height: 320px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.image-placeholder-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}

.about-badge-card {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: #0A0A0A;
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.75;
}


/* ================================================
   SERVICES
   ================================================ */
.services {
  background: var(--bg-body);
}

/* Filter tabs */
.services-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-md);
}
.tab-btn.active {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
  font-weight: 600;
}

/* Service grid — 3 cols on mobile, compact stacked cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 44px;
}

/* Service card */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 10px;
  position: relative;
  transition: transform var(--t-base), border-color var(--t-base),
              background var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 60%);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-h);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px var(--gold-border);
}

/* Featured / popular card */
.service-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(150deg, #211a0d 0%, #1d1509 100%);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.service-info { min-width: 0; width: 100%; }

.service-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.3;
}

.service-duration {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.service-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* Popular badge */
.service-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0A0A0A;
  padding: 3px 8px;
  border-radius: var(--r-xs);
}

/* Badge sits top-right; no margin offset needed on mobile stacked layout */
.service-card.featured .service-price { margin-right: 0; }

.services-cta {
  text-align: center;
}
.services-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-style: italic;
}


/* ================================================
   REVIEWS — SLIDER
   ================================================ */
.reviews {
  background: var(--bg-alt);
}

/* Header row: label+title on left, counter on right */
.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.reviews-top-left { flex: 1; }

.slider-counter {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 4px;
}
.counter-sep { color: var(--border-md); margin: 0 4px; }

/* Slider viewport */
.slider-wrapper { position: relative; }

.slider-viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
}

.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* Review card — full-width editorial style */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: 52px 44px 40px;
  position: relative;
  overflow: hidden;
}

/* Giant decorative quote character */
.review-deco {
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.06;
  position: absolute;
  top: 28px;
  left: 28px;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}

.review-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 5px;
  margin-bottom: 24px;
  position: relative;
}

.review-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  letter-spacing: 0.01em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0A0A0A;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.author-detail {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Slider nav row */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0A0A;
  transform: scale(1.08);
}
.slider-btn:active { transform: scale(0.96); }

/* Dots */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-md);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}


/* ================================================
   GALLERY
   ================================================ */
.gallery {
  background: var(--bg-body);
  padding-top: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 0;
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-item--wide {
  grid-column: span 3;
  aspect-ratio: 3 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--t-base);
  pointer-events: none;
  border-radius: inherit;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { background: rgba(0,0,0,0.12); }


/* ================================================
   CONTACT
   ================================================ */
.contact {
  background: var(--bg-alt);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.contact-detail { flex: 1; }

.detail-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.detail-value {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  display: block;
}

.detail-link { transition: color var(--t-fast); }
.detail-link:hover { color: var(--gold); }

.contact-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* Hours table */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.hours-time {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

.contact-book-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
}

/* Map */
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-container {
  width: 100%;
  min-height: 300px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.shop-outside {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.shop-outside-img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  background-image:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-label {
  font-size: 16px;
  color: var(--text-secondary);
}
.map-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 240px;
  line-height: 1.6;
  font-style: italic;
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #141414;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 44px;
}

/* Brand column */
.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  transition: opacity var(--t-fast);
}
.footer-logo:hover { opacity: 0.8; }
.footer-logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.app-badge {
  opacity: 0.85;
  transition: opacity var(--t-fast), transform var(--t-fast);
  display: inline-block;
}
.app-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-base);
}
.social-link:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}

/* Nav + contact columns */
.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--gold); }

.footer-book-btn {
  margin-top: 18px;
  padding: 12px 24px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-credit { opacity: 0.45; }


/* ================================================
   SCROLL-IN ANIMATIONS
   ================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.services-grid .service-card:nth-child(1)  { transition-delay: 0.04s; }
.services-grid .service-card:nth-child(2)  { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3)  { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(4)  { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(5)  { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(6)  { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(7)  { transition-delay: 0.28s; }
.services-grid .service-card:nth-child(8)  { transition-delay: 0.32s; }

.slider-wrapper { transition-delay: 0.05s; }

.gallery-grid .gallery-item:nth-child(1)  { transition-delay: 0.04s; }
.gallery-grid .gallery-item:nth-child(2)  { transition-delay: 0.10s; }
.gallery-grid .gallery-item:nth-child(3)  { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4)  { transition-delay: 0.22s; }
.gallery-grid .gallery-item:nth-child(5)  { transition-delay: 0.28s; }
.gallery-grid .gallery-item:nth-child(6)  { transition-delay: 0.34s; }
.gallery-grid .gallery-item:nth-child(7)  { transition-delay: 0.40s; }
.gallery-grid .gallery-item:nth-child(8)  { transition-delay: 0.46s; }
.gallery-grid .gallery-item:nth-child(9)  { transition-delay: 0.52s; }
.gallery-grid .gallery-item:nth-child(10) { transition-delay: 0.58s; }


/* ================================================
   RESPONSIVE — TABLET 768px+
   ================================================ */
@media (min-width: 768px) {

  :root {
    --section-py: 120px;
    --container-px: 40px;
  }

  /* Nav — switch to horizontal */
  .nav-toggle { display: none; }

  .nav-menu {
    display: flex !important; /* always show on desktop */
    position: static;
    background: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 36px;
    inset: unset;
  }

  .nav-list {
    flex-direction: row;
    gap: 28px;
  }

  .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-link:hover { color: var(--text-primary); }
  .nav-link.active { color: var(--text-primary); }
  .nav-link.active::after { bottom: -6px; }

  .nav-book { padding: 10px 22px; font-size: 13px; }

  /* About — 2-col */
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 72px;
  }
  .about-text { flex: 1; }
  .about-visual { flex: 0 0 auto; }

  .about-image-card { width: 300px; height: 380px; }

  .about-pillars {
    flex-direction: row;
    gap: 28px;
  }

  /* Badge — back to top-right on wider cards */
  .service-badge { top: 10px; bottom: auto; right: 10px; }

  /* Services — 2-col, restore full horizontal card */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-card { padding: 22px 24px; }
  .service-card-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .service-info { flex: 1; width: auto; }
  .service-name  { font-size: 15px; margin-bottom: 6px; font-weight: 400; }
  .service-duration { font-size: 12px; letter-spacing: 0.05em; }
  .service-price { font-size: 24px; }
  .service-card.featured .service-price { margin-right: 52px; }

  /* Reviews — 3-col */
  .reviews-grid {
    flex-direction: row;
    align-items: stretch;
  }

  /* Gallery — restore 3-col on tablet+, increase gap */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gallery { padding-top: var(--section-py); }

  /* Contact — 2-col */
  .contact-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 44px;
  }
  .contact-info { flex: 0 0 340px; }
  .contact-card { margin-bottom: 16px; }
  .contact-map { flex: 1; align-self: stretch; }
  .map-container { height: 100%; min-height: 480px; }

  /* Footer — row */
  .footer-grid {
    flex-direction: row;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand { max-width: 220px; }
  .footer-book-btn { width: auto; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


/* ================================================
   RESPONSIVE — DESKTOP 1024px+
   ================================================ */
@media (min-width: 1024px) {

  :root {
    --section-py: 150px;
    --container-px: 56px;
  }

  .hero { padding: 140px var(--container-px) 100px; }

  /* Services — 3-col */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* About — larger image */
  .about-image-card { width: 360px; height: 440px; }

  /* Gallery — keep 3-col */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .gallery-item--wide {
    grid-column: span 3;
    aspect-ratio: unset;
  }

  /* Reviews — more padding */
  .review-card { padding: 56px 52px 48px; }

  /* Footer — more gap */
  .footer-grid { gap: 60px; }
}


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


/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.announce-bar {
  position: relative;
  z-index: 1001;
  background: var(--gold);
  padding: 14px var(--container-px);
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.announce-bar.hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.announce-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0A0A0A;
  opacity: 0.45;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.announce-text {
  font-size: 16px;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.4;
  text-align: center;
}

.announce-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #0A0A0A;
  transition: opacity var(--t-fast);
}
.announce-link:hover { opacity: 0.65; }

.announce-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  font-size: 20px;
  line-height: 1;
  color: #0A0A0A;
  opacity: 0.5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.announce-close:hover {
  opacity: 1;
  background: rgba(0,0,0,0.1);
}


/* ================================================
   FLOATING BOOK NOW CTA
   ================================================ */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 500;
  opacity: 0;
  transform: translateY(14px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.float-cta-btn {
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 14px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.35);
}


/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--bg-card-h);
  color: var(--gold);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}


/* ================================================
   GALLERY LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-in 0.22s ease;
}
.lightbox[hidden] { display: none; }

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
  z-index: 2001;
}
.lightbox-close:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--bg-card-h);
}

.lightbox-content {
  max-width: min(900px, 92vw);
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: lb-scale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lb-scale {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-content img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}

/* Placeholder when no real image exists */
.lightbox-placeholder {
  width: 100%;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.lightbox-placeholder-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
}
.lightbox-placeholder-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}


/* ================================================
   OPEN / CLOSED STATUS PILL
   ================================================ */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 11px 4px 8px;
  border-radius: 100px;
  margin-top: 10px;
  line-height: 1;
}
.open-status.is-open {
  background: rgba(34, 197, 94, 0.10);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.20);
}
.open-status.is-closed {
  background: rgba(239, 68, 68, 0.09);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.18);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.open-status.is-open .status-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}


/* ================================================
   SHARED KEYFRAMES
   ================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}
