/* ============================================================
   BANDIT BARBERS — v2 "EDITORIAL NOIR"
   Black + electric magenta (from the logo gradient).
   Anton display / Epilogue body. Advanced scroll motion.
   ============================================================ */

:root {
  --void:   #08080a;   /* page background            */
  --panel:  #0f0e12;   /* elevated band              */
  --card:   #161419;   /* cards                      */
  --card-2: #201d26;   /* raised / hover             */
  --hot:    #99795d;   /* muted bronze accent (brand) */
  --hot-2:  #c2a07f;   /* lighter bronze              */
  --hot-d:  #6f5946;   /* deep bronze                 */
  --text:   #f5f2ee;   /* primary text (warm)         */
  --muted:  #a1988c;   /* secondary text             */
  --faint:  #6a625a;   /* tertiary                   */
  --line:   rgba(245,242,238,.09);
  --line-2: rgba(245,242,238,.16);
  --grad:   linear-gradient(120deg, #c9a37c 0%, #99795d 45%, #6f5946 100%);

  --maxw: 1280px;
  --ease: cubic-bezier(.19,1,.22,1);
  --ease-2: cubic-bezier(.76,0,.24,1);

  --f-display: 'Anton', 'Arial Narrow', sans-serif;
  --f-body: 'Epilogue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.7;
  color: var(--text); background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* animated grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain { 0%,100%{background-position:0 0} 20%{background-position:-8px 6px} 40%{background-position:6px -8px} 60%{background-position:-6px -4px} 80%{background-position:8px 6px} }
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3 { font-family: var(--f-display); font-weight: 400; line-height: .92; margin: 0; text-transform: uppercase; letter-spacing: .005em; }
em { font-style: normal; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--hot); color: #fff; padding: 10px 18px; font-weight: 700; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--hot-2); outline-offset: 3px; }

/* ---------- scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad); box-shadow: 0 0 14px rgba(153,121,93,.6); }

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 120; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: #fff; transform: translate(-50%,-50%); }
.cursor-ring { width: 40px; height: 40px; border: 1.5px solid #fff; transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, opacity .3s; }
.cursor-ring.hot { width: 66px; height: 66px; background: rgba(255,255,255,.12); border-color: transparent; }
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
@media (hover: none), (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; } }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; padding: 22px 0; transition: padding .4s var(--ease), background .4s, backdrop-filter .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { padding: 12px 0; background: rgba(8,8,10,.78); backdrop-filter: blur(16px) saturate(150%); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .mark { width: 40px; height: 40px; color: var(--hot-2); transition: transform .5s var(--ease); }
.nav-brand:hover .mark { transform: rotate(-12deg) scale(1.08); }
.brand-word { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .04em; line-height: .82; }
.brand-word small { display: block; font-family: var(--f-body); font-size: .52rem; letter-spacing: .42em; color: var(--hot-2); font-weight: 700; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a { display: inline-block; padding: 10px 15px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); position: relative; transition: color .3s; }
.nav-links > li > a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 2px; background: var(--hot); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a:hover::after, .nav-links > li > a.current::after { transform: scaleX(1); }
.nav-links > li > a.current { color: var(--text); }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--text); color: #08080a !important; padding: 11px 20px !important; border-radius: 2px; letter-spacing: .12em !important; overflow: visible !important; transition: background .3s, color .3s, transform .3s var(--ease); }
.nav-cta::before { display: none; }
.nav-cta:hover { background: var(--hot); color: #fff !important; }

.lang-switch { display: flex; gap: 2px; margin-left: 6px; }
.lang-switch button { background: none; border: 1px solid var(--line-2); color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .1em; padding: 6px 9px; border-radius: 2px; transition: all .25s; }
.lang-switch button.active { background: var(--hot); border-color: var(--hot); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; padding: 17px 34px; border-radius: 2px; border: 1px solid transparent; transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s; will-change: transform; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 16px 40px -16px rgba(153,121,93,.7); }
.btn-primary:hover { box-shadow: 0 24px 54px -16px rgba(194,160,127,.85); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--hot-2); color: var(--hot-2); }
.btn-solid { background: var(--text); color: #08080a; }
.btn-solid:hover { background: var(--hot); color: #fff; }
.btn-block { width: 100%; }

/* ---------- section scaffold ---------- */
section { position: relative; z-index: 2; }
.pad { padding: clamp(80px, 12vw, 170px) 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-body); font-weight: 800; text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; color: var(--hot-2); margin: 0 0 26px; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--hot); }
.h-xl { font-size: clamp(2.8rem, 9vw, 7rem); }
.h-lg { font-size: clamp(2.4rem, 7vw, 5rem); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 56ch; margin: 22px 0 0; line-height: 1.6; }
.accent { color: var(--hot-2); }
.outline-txt { color: transparent; -webkit-text-stroke: 1.5px var(--line-2); }

/* ---------- line mask reveal ---------- */
.reveal-lines .ln { display: block; overflow: hidden; }
.reveal-lines .ln > span { display: block; transform: translateY(105%); transition: transform .9s var(--ease); }
.reveal-lines.visible .ln > span { transform: translateY(0); }
.reveal-lines.visible .ln:nth-child(2) > span { transition-delay: .08s; }
.reveal-lines.visible .ln:nth-child(3) > span { transition-delay: .16s; }
.reveal-lines.visible .ln:nth-child(4) > span { transition-delay: .24s; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1){transition-delay:.05s}.stagger.visible > *:nth-child(2){transition-delay:.12s}.stagger.visible > *:nth-child(3){transition-delay:.19s}.stagger.visible > *:nth-child(4){transition-delay:.26s}.stagger.visible > *:nth-child(5){transition-delay:.33s}.stagger.visible > *:nth-child(6){transition-delay:.4s}.stagger.visible > *:nth-child(7){transition-delay:.47s}.stagger.visible > *:nth-child(8){transition-delay:.54s}
@media (prefers-reduced-motion: reduce) { .reveal, .stagger > *, .reveal-lines .ln > span { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 140px 0 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { content:""; position:absolute; inset:0; background: radial-gradient(55% 60% at 82% 25%, rgba(153,121,93,.24), transparent 60%), radial-gradient(45% 55% at 8% 85%, rgba(111,89,70,.2), transparent 60%), var(--void); }
.hero-bg .grid-lines { position:absolute; inset:0; opacity:.5; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 70px 70px; -webkit-mask: radial-gradient(120% 90% at 75% 25%, #000, transparent 72%); mask: radial-gradient(120% 90% at 75% 25%, #000, transparent 72%); }
.hero-ghost { position: absolute; right: -3%; top: 50%; transform: translateY(-50%); font-family: var(--f-display); font-size: 34vw; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px rgba(245,243,247,.05); z-index: 0; pointer-events: none; white-space: nowrap; }

.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .28em; font-size: .78rem; color: var(--hot-2); border: 1px solid var(--line-2); border-radius: 2px; padding: 9px 16px; margin-bottom: 30px; opacity: 0; animation: fadeUp .8s var(--ease) .2s forwards; }
.hero h1 { font-size: clamp(3.4rem, 13vw, 11rem); letter-spacing: -.01em; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; transform: translateY(105%); animation: rise 1s var(--ease) forwards; }
.hero h1 .ln:nth-child(1) > span { animation-delay: .25s; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .38s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: .51s; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){ .hero h1 .ln > span, .hero-eyebrow { transform:none; animation:none; opacity:1; } }

.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 44px; opacity: 0; animation: fadeUp .9s var(--ease) .7s forwards; }
.hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 40ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce){ .hero-foot { opacity:1; animation:none; } }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--faint); font-size: .68rem; text-transform: uppercase; letter-spacing: .25em; }
.scroll-cue .bar { width: 1px; height: 40px; background: var(--line-2); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px; background: var(--hot-2); animation: cue 2s var(--ease) infinite; }
@keyframes cue { to { top: 40px; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 26px 0; background: var(--panel); }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: scroll-x 24s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--f-display); font-size: 2.2rem; text-transform: uppercase; letter-spacing: .02em; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; color: var(--text); }
.marquee-track span::after { content: ""; width: 12px; height: 12px; background: var(--hot); border-radius: 50%; }
.marquee-track span.ghost { color: transparent; -webkit-text-stroke: 1.2px var(--line-2); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track { animation: none; } }

/* ============================================================
   ABOUT / MANIFESTO
   ============================================================ */
.manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.manifesto .big { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1; }
.manifesto p { color: var(--muted); margin: 22px 0 0; }
.manifesto strong { color: var(--text); font-weight: 700; }
.manifesto .num { font-family: var(--f-display); font-size: clamp(6rem, 16vw, 13rem); line-height: .8; color: transparent; -webkit-text-stroke: 1.5px var(--hot-d); }
.man-visual { position: relative; }
.man-frame { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--line); }
.ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--hot-d); background: radial-gradient(circle at 50% 35%, rgba(153,121,93,.14), transparent 62%), repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 12px, transparent 12px 24px), var(--card); text-align: center; }
.ph svg { width: 42px; height: 42px; }
.ph small { display: block; margin-top: 10px; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); }
.man-badge { position: absolute; bottom: -20px; right: -20px; background: var(--grad); color: #fff; padding: 20px 24px; border-radius: 3px; box-shadow: 0 20px 50px -20px rgba(153,121,93,.7); }
.man-badge b { font-family: var(--f-display); font-size: 2rem; display: block; line-height: 1; }
.man-badge span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }

/* ============================================================
   HORIZONTAL SCROLL GALLERY (pinned)
   ============================================================ */
.hscroll { position: relative; height: 320vh; }
.hscroll-sticky { position: sticky; top: 0; height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hscroll-head { padding: 0 30px 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.hscroll-track { display: flex; gap: 22px; padding: 0 30px; will-change: transform; }
.hslide { position: relative; flex: none; width: min(42vw, 460px); aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.hslide .ph svg { width: 38px; height: 38px; }
.hslide .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; background: linear-gradient(transparent, rgba(8,8,10,.9)); }
.hslide .cap b { font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; display: block; }
.hslide .cap span { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--hot-2); font-weight: 700; }
.hslide .idx { position: absolute; top: 18px; left: 18px; z-index: 2; font-family: var(--f-display); font-size: 1.1rem; color: var(--hot-2); }
@media (max-width: 900px) {
  .hscroll { height: auto; }
  .hscroll-sticky { position: static; height: auto; }
  .hscroll-track { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; -webkit-overflow-scrolling: touch; transform: none !important; }
  .hslide { width: 78vw; scroll-snap-align: center; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-list { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; padding: 30px 6px; border-bottom: 1px solid var(--line); position: relative; transition: padding .4s var(--ease); }
.svc-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(153,121,93,.08), transparent); opacity: 0; transition: opacity .4s; z-index: -1; }
.svc-row:hover { padding-left: 22px; padding-right: 22px; }
.svc-row:hover::before { opacity: 1; }
.svc-row .rnum { font-family: var(--f-display); font-size: 1.1rem; color: var(--faint); transition: color .3s; }
.svc-row:hover .rnum { color: var(--hot-2); }
.svc-row h3 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); transition: transform .4s var(--ease); }
.svc-row:hover h3 { transform: translateX(8px); }
.svc-row .rmeta { font-size: .84rem; color: var(--faint); text-transform: none; margin-top: 4px; }
.svc-row .rprice { font-family: var(--f-display); font-size: clamp(1.6rem, 3.6vw, 2.6rem); color: var(--text); white-space: nowrap; }
.svc-row .rprice small { font-size: .7rem; color: var(--hot-2); letter-spacing: .08em; margin-left: 4px; }

.cat-label { font-family: var(--f-display); font-size: 1rem; letter-spacing: .16em; color: var(--hot-2); text-transform: uppercase; margin: 54px 0 4px; }
.cat-label:first-child { margin-top: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat b { font-family: var(--f-display); font-size: clamp(2.8rem, 7vw, 4.6rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.stat span { font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin-top: 12px; display: block; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.barber { position: relative; }
.barber .av { position: relative; aspect-ratio: 3/4; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.barber .av .ph svg { width: 46px; height: 46px; }
.barber .av::after { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0; mix-blend-mode: overlay; transition: opacity .4s; }
.barber:hover .av::after { opacity: .5; }
.barber .info { display: flex; align-items: baseline; justify-content: space-between; margin-top: 12px; }
.barber b { font-family: var(--f-display); font-size: 1.3rem; text-transform: uppercase; }
.barber span { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--hot-2); font-weight: 700; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; text-align: center; padding: clamp(70px, 12vw, 140px) 24px; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 100%, rgba(153,121,93,.3), transparent 60%); }
.cta-ghost { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--f-display); font-size: 30vw; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(245,243,247,.04); pointer-events: none; }
.cta > * { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.6rem, 8vw, 6rem); }
.cta p { color: var(--muted); max-width: 48ch; margin: 22px auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-head { position: relative; padding: 180px 0 70px; overflow: hidden; }
.page-head::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 100% at 80% 0%, rgba(153,121,93,.2), transparent 60%), var(--void); }
.page-head .ghost { position: absolute; right: -2%; bottom: -6%; font-family: var(--f-display); font-size: 22vw; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px rgba(245,243,247,.045); pointer-events: none; }
.page-head h1 { font-size: clamp(3rem, 10vw, 7rem); }

/* ============================================================
   VISIT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.info-card { border: 1px solid var(--line); border-radius: 3px; background: var(--card); }
.info-row { display: flex; gap: 20px; padding: 26px 28px; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 46px; height: 46px; flex: none; border-radius: 3px; display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line); color: var(--hot-2); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row b { font-family: var(--f-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: 4px; }
.info-row p { margin: 0; color: var(--muted); font-size: .94rem; }
.info-row a { color: var(--hot-2); }

.hours-card { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.hours-card .hc-head { background: var(--grad); color: #fff; padding: 26px 28px; }
.hours-card .hc-head h3 { font-size: 1.8rem; }
.hours-card .hc-head p { margin: 6px 0 0; font-size: .84rem; font-weight: 600; opacity: .9; }
.hours-body { padding: 10px 28px 24px; background: var(--card); }
.hours-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-row:last-of-type { border-bottom: 0; }
.hours-row .day { color: var(--muted); font-weight: 600; }
.hours-row .time { color: var(--text); font-family: var(--f-display); letter-spacing: .04em; }
.hours-row.today { color: var(--hot-2); }
.hours-row.today .day, .hours-row.today .time { color: var(--hot-2); }
.hours-card .btn { margin: 4px 28px 28px; width: calc(100% - 56px); }

.map-wrap { grid-column: 1 / -1; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; aspect-ratio: 21/7; position: relative; margin-top: 8px; }
.map-pin { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--muted); background: radial-gradient(circle at 50% 40%, rgba(153,121,93,.14), transparent 60%), var(--card); }
.map-pin svg { width: 40px; height: 40px; color: var(--hot-2); margin-bottom: 10px; }
.map-pin span { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--panel); border-top: 1px solid var(--line); padding: 80px 0 34px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.foot-brand .mark { width: 52px; height: 52px; color: var(--hot-2); margin-bottom: 18px; }
.foot-brand p { color: var(--muted); max-width: 34ch; font-size: .92rem; }
.foot-col h4 { font-family: var(--f-display); font-size: 1rem; letter-spacing: .1em; color: var(--hot-2); margin: 0 0 16px; text-transform: uppercase; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: var(--muted); font-size: .92rem; transition: color .25s; }
.foot-col a:hover { color: var(--hot-2); }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 3px; display: grid; place-items: center; color: var(--muted); transition: all .3s var(--ease); }
.foot-social a:hover { color: #fff; background: var(--hot); border-color: var(--hot); transform: translateY(-3px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--faint); font-size: .8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .manifesto, .visit-grid { grid-template-columns: 1fr; gap: 44px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .map-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 6px; background: rgba(8,8,10,.98); backdrop-filter: blur(16px); transform: translateX(100%); transition: transform .5s var(--ease); padding: 40px; }
  .nav.open .nav-links { transform: none; }
  .nav-links > li > a { font-size: 1.6rem; padding: 14px; }
  .nav-links > li > a::before { display: none; }
  .nav-cta { margin-top: 12px; }
  .lang-switch { justify-content: center; margin: 16px auto 0; }
  .nav-toggle { display: block; z-index: 95; }
  .nav.open .nav-toggle .icon-menu { display: none; }
  .nav.open .nav-toggle .icon-close { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-row .rprice { grid-column: 2; text-align: right; }
  body { font-size: 16px; }
}
@media (max-width: 460px) { .container { padding: 0 20px; } .marquee-track span { font-size: 1.7rem; } }
