/* ============================================================
   Liliana Coiffure — Global Stylesheet
   ============================================================ */

/* ── Variables ── */
:root {
  --black: #1c1a18;
  --near-black: #252220;
  --dark: #2e2b28;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dim: rgba(201,169,110,0.18);
  --white: #faf8f4;
  --off-white: #f2ede6;
  --muted: #7a756f;
  --line: rgba(201,169,110,0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.section { padding: 100px 0; }
.section-dark { background: #272420; color: var(--white); }
.section-cream { background: var(--off-white); }

/* ── Typography ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-sub {
  margin-top: 12px;
  color: var(--muted);
  max-width: 55ch;
  font-weight: 300;
  font-size: 15px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.90);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--near-black); transform: translateY(-2px); }

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(28,26,24,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header-solid {
  background: rgba(28,26,24,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.utility-bar {
  background: #232120;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.utility-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.utility-inner a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.utility-inner a:hover { color: var(--gold); }
.utility-sep { opacity: 0.3; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.nav-container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.logo img { height: 42px; width: auto; filter: brightness(10); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold) !important; font-weight: 600 !important; }
.menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.20);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/lilana-coffiure-background.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.45;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 1.6s var(--ease);
}
.hero-bg.loaded { opacity: 0.55; transform: scale(1); }
.hero-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(28,26,24,0.80) 0%, rgba(28,26,24,0.25) 60%),
    linear-gradient(to top, rgba(28,26,24,0.65) 0%, transparent 50%);
}
.hero-content { position: relative; padding: 160px 0 100px; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero h1 { font-family: var(--font-display); font-size: clamp(48px, 6vw, 84px); font-weight: 600; color: var(--white); line-height: 1.04; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { margin-top: 22px; color: rgba(255,255,255,0.78); font-size: 16px; font-weight: 300; max-width: 52ch; line-height: 1.7; }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-chips { margin-top: 48px; display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.chip i { color: var(--gold); font-size: 11px; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.50);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   SINCE STRIP
   ============================================================ */
.since-strip { background: var(--gold); padding: 18px 0; overflow: hidden; }
.strip-track { display: flex; white-space: nowrap; animation: stripScroll 30s linear infinite; }
.strip-item { display: inline-flex; align-items: center; gap: 28px; color: var(--black); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 0 32px; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.35); }
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.service-card { background: #2a2724; padding: 36px 28px; position: relative; overflow: hidden; transition: background 0.3s var(--ease); cursor: default; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px; background: var(--gold); transition: right 0.4s var(--ease); }
.service-card:hover { background: #322f2b; }
.service-card:hover::before { right: 0; }
.service-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 20px; }
.service-icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: 2px; display: grid; place-items: center; color: var(--gold); font-size: 18px; margin-bottom: 18px; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); font-weight: 600; }
.service-card p { margin-top: 10px; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 300; line-height: 1.65; }
.service-list { margin-top: 18px; display: grid; gap: 8px; }
.service-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.72); font-size: 13px; }
.service-list li::before { content: ''; width: 16px; height: 1px; background: var(--gold); opacity: 0.6; flex-shrink: 0; }

/* ============================================================
   GALLERY — Before / After
   ============================================================ */
.gallery-wrap { margin-top: 56px; position: relative; }
.ba-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: 2px; overflow: hidden; position: relative; }
.ba-panel { position: relative; overflow: hidden; }
.ba-panel img { width: 100%; height: 560px; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.25s; }
.ba-stage:hover .ba-panel img { transform: scale(1.03); }
.ba-label { position: absolute; top: 20px; padding: 7px 16px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.ba-label-before { left: 20px; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.20); }
.ba-label-after { right: 20px; background: var(--gold); color: var(--black); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); z-index: 2; transform: translateX(-50%); }
.ba-divider-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--black); font-size: 12px; }
.ba-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.ba-counter { font-family: var(--font-display); font-size: 14px; color: var(--muted); }
.ba-counter span { color: var(--gold); font-size: 22px; }
.ba-btns { display: flex; gap: 12px; }
.ba-btn { width: 52px; height: 52px; background: var(--dark); border: 1px solid var(--line); border-radius: 2px; display: grid; place-items: center; color: var(--gold); font-size: 15px; cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.ba-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.05); }
.ba-dots { display: flex; gap: 8px; align-items: center; }
.ba-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.20); transition: background 0.25s, transform 0.25s; cursor: pointer; border: none; }
.ba-dot.active { background: var(--gold); transform: scale(1.4); }
.ba-caption { margin-top: 16px; padding: 18px 22px; background: var(--gold-dim); border-left: 3px solid var(--gold); border-radius: 2px; }
.ba-caption h4 { font-family: var(--font-display); font-size: 17px; color: var(--dark); }
.ba-caption p { margin-top: 4px; font-size: 13px; color: var(--muted); font-weight: 300; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 72%; height: 420px; object-fit: cover; border-radius: 2px; box-shadow: 24px 24px 60px rgba(0,0,0,0.18); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 54%; height: 280px; object-fit: cover; border-radius: 2px; border: 4px solid var(--white); box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
.about-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  border: 4px solid var(--white);
  line-height: 1.2;
}
.about-badge span { display: block; font-size: 22px; font-weight: 700; }
.about-text .section-title { color: var(--dark); }
.about-desc { margin-top: 18px; color: var(--muted); font-size: 15px; font-weight: 300; line-height: 1.8; }
.about-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.about-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 13px; color: var(--dark); }
.about-pill i { color: var(--gold); }
.about-quote { margin-top: 28px; padding: 20px 22px; border-left: 3px solid var(--gold); background: var(--off-white); border-radius: 2px; }
.about-quote p { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--dark); }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block { text-align: center; padding: 100px 0; background: #232120; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%); pointer-events: none; }
.cta-block .section-title { color: var(--white); }
.cta-block .section-sub { color: rgba(255,255,255,0.60); margin: 16px auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a1816; color: rgba(255,255,255,0.65); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 38px; filter: brightness(10); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.7; max-width: 28ch; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); display: grid; place-items: center; color: rgba(255,255,255,0.65); font-size: 14px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.social-icon:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-bottom { padding: 18px 0; font-size: 12px; color: rgba(255,255,255,0.45); display: flex; justify-content: space-between; align-items: center; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
body.page-contact { background: #272420; }

.contact-page-header { padding: 140px 0 56px; position: relative; overflow: hidden; }
.contact-page-header::before { content: ''; position: absolute; top: -60px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(201,169,110,0.09) 0%, transparent 70%); pointer-events: none; }
.contact-heading { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 62px); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; color: var(--white); margin-bottom: 14px; }
.contact-heading em { font-style: italic; color: var(--gold-light); }
.contact-subheading { color: rgba(255,255,255,0.60); font-size: 15px; font-weight: 300; max-width: 52ch; }

.contact-main { padding: 0 0 56px; }
.contact-top-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 24px; align-items: start; }

.wa-panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; overflow: hidden; }
.wa-panel-inner { padding: 36px 32px; }
.wa-icon-wrap { width: 56px; height: 56px; background: rgba(37,211,102,0.15); border-radius: 50%; display: grid; place-items: center; color: #25d366; font-size: 26px; margin-bottom: 20px; }
.wa-panel h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.wa-panel p { color: rgba(255,255,255,0.62); font-size: 14px; font-weight: 300; line-height: 1.7; margin-bottom: 22px; }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: #25d366; color: white; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; border-radius: var(--radius); width: 100%; justify-content: center; transition: opacity 0.2s, transform 0.2s; }
.wa-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.wa-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.wa-divider::before, .wa-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.call-link { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); color: rgba(255,255,255,0.80); font-size: 14px; font-weight: 500; transition: border-color 0.2s, color 0.2s; }
.call-link i { color: var(--gold); }
.call-link:hover { border-color: var(--gold); color: var(--gold); }

.form-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 36px; position: relative; overflow: hidden; }
.form-wrap::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%); pointer-events: none; }
.form-title { font-family: var(--font-display); font-size: 26px; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.form-sub { color: rgba(255,255,255,0.50); font-size: 14px; font-weight: 300; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.60); font-weight: 600; }
.field label span { color: var(--gold); margin-left: 2px; }
.field input, .field select, .field textarea { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); padding: 12px 14px; font-family: var(--font-body); font-size: 14px; color: var(--white); outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s; }
.field select option { background: var(--near-black); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.28); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(201,169,110,0.7); background: rgba(255,255,255,0.10); box-shadow: 0 0 0 4px rgba(201,169,110,0.12); }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.submit-note { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; max-width: 40ch; }
.btn-submit { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--gold); color: var(--black); font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; border: none; border-radius: var(--radius); cursor: pointer; transition: background 0.25s, transform 0.2s; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.store-info-section { padding: 0 0 80px; }
.store-info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
.info-group-title { font-family: var(--font-display); font-size: 18px; color: var(--white); font-weight: 600; margin-bottom: 14px; }
.info-cards { display: grid; gap: 12px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11); border-radius: var(--radius); transition: border-color 0.25s, background 0.25s; }
.info-card:hover { border-color: var(--line); background: rgba(255,255,255,0.11); }
.info-icon { width: 42px; height: 42px; background: rgba(201,169,110,0.15); border-radius: var(--radius); display: grid; place-items: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.info-body .label { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.info-body .value { font-size: 14px; color: var(--white); font-weight: 400; }
.info-body .value a { color: var(--white); transition: color 0.2s; }
.info-body .value a:hover { color: var(--gold); }
.info-body small { display: block; margin-top: 3px; font-size: 12px; color: rgba(255,255,255,0.40); }

.hours-card { background: rgba(201,169,110,0.10); border: 1px solid var(--line); border-radius: 8px; padding: 32px; }
.hours-title { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--white); }
.hours-row .time { color: var(--gold); font-weight: 600; }
.hours-row .closed { color: rgba(255,255,255,0.35); font-style: italic; }
.map-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; overflow: hidden; }
.map-placeholder { height: 240px; background: rgba(255,255,255,0.04); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,0.35); }
.map-placeholder i { font-size: 36px; color: var(--gold); opacity: 0.5; }
.map-placeholder p { font-size: 13px; text-align: center; max-width: 28ch; line-height: 1.5; }
.map-info { padding: 20px 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.map-info h4 { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.map-info p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: opacity 0.2s; }
.map-link:hover { opacity: 0.75; }

/* ── Gallery teaser section (index) ── */
.gallery-teaser-section {
  background: var(--off-white);
  padding: 80px 0 72px;
}
.gallery-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-teaser-cta { flex-shrink: 0; }

/* 5-image mosaic */
.gallery-five {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  grid-template-rows: 260px 200px;
  gap: 10px;
}
.gallery-five-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.gallery-five-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}
.gallery-five-item:hover img {
  transform: scale(1.05);
}
/* tall items span both rows */
.gallery-five-tall {
  grid-row: span 2;
}
/* wide item spans 2 columns on the bottom row */
.gallery-five-wide {
  grid-column: span 2;
}


/* ── Gallery page ── */
body.page-gallery { background: var(--white); }
.gallery-page-header { background: #272420; }
.gallery-grid-section { background: var(--white); }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-page-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--off-white);
}
.gallery-page-tall {
  grid-row: span 2;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery-page-item:hover img {
  transform: scale(1.06);
}
.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-page-item:hover .gallery-page-overlay {
  opacity: 1;
}
.gallery-page-overlay span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.ba-page-section { background: var(--off-white); }

/* nav-active style */
.nav-active { color: var(--gold) !important; }


.contact-cta-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
.cta-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 52px 40px;
}
.cta-channel h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.cta-channel p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 300;
}
.cta-channel-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.call-icon-wrap {
  background: rgba(201,169,110,0.15);
  color: var(--gold);
}
.cta-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  width: 100%;
  max-width: 260px;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}
.cta-channel-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.call-btn {
  background: var(--gold);
  color: var(--black);
}
.cta-sep {
  width: 1px;
  background: rgba(255,255,255,0.10);
  align-self: stretch;
  margin: 32px 0;
}

/* ── Map card full height ── */
.map-card-full {
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.map-card-full iframe {
  flex: 1;
  min-height: 480px;
}

/* ── About page ── */
body.page-about { background: var(--white); }
.about-page-header { background: #272420; }
.about-full-section { background: var(--white); }
.about-values-section { padding: 80px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.value-card:hover {
  border-color: var(--line);
  background: rgba(255,255,255,0.10);
}
.value-icon {
  width: 54px; height: 54px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 20px;
  margin: 0 auto 18px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  font-weight: 300;
  line-height: 1.7;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

/* ── About teaser on index ── */
.about-teaser-section { background: var(--white); }
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.about-teaser-img {
  position: relative;
}
.about-teaser-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.about-teaser-img .about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
}

/* Responsive additions */
@media (max-width: 1020px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { grid-template-columns: 1fr; gap: 48px; }
  .contact-cta-strip { grid-template-columns: 1fr; }
  .cta-sep { width: auto; height: 1px; margin: 0 32px; }
}
@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-photo-grid { grid-template-columns: 1fr 1fr; }
  .cta-channel { padding: 36px 24px; }
}


@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-top-grid { grid-template-columns: 1fr; }
  .store-info-grid { grid-template-columns: 1fr 1fr; }
  .gallery-teaser-header { flex-direction: column; align-items: flex-start; }
  .gallery-five { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-five-tall { grid-row: span 1; }
  .gallery-five-wide { grid-column: span 2; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-tall { grid-row: span 1; }
}
@media (max-width: 720px) {
  .menu-btn { display: inline-flex; align-items: center; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(28,26,24,0.97);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-content { padding: 130px 0 80px; }
  .ba-stage { grid-template-columns: 1fr; }
  .ba-panel img { height: 300px; }
  .ba-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .strip-track { animation-duration: 18s; }
  .store-info-grid { grid-template-columns: 1fr; }
  .contact-page-header { padding: 120px 0 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .gallery-five { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-page-grid { grid-template-columns: 1fr; }
}