/* ===================================================================
   LEGACY BARBER SHOP — Premium Landing Page
   Aesthetic: "Old Money Grooming Editorial"
   =================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Dark mode (default) */
  --bg:          #0B0B0B;   /* preto carvão */
  --bg-grad:     #121110;
  --surface:     #1A1A1A;   /* grafite premium */
  --surface-2:   #161616;
  --line:        rgba(184,138,68,.22);
  --line-soft:   rgba(248,247,244,.08);
  --gold:        #B88A44;   /* dourado queimado */
  --gold-bright: #D6A85E;
  --cream:       #E8DDC8;   /* bege claro */
  --text:        #F8F7F4;   /* branco suave */
  --muted:       rgba(248,247,244,.60);
  --muted-2:     rgba(248,247,244,.42);
  --shadow:      0 30px 80px -30px rgba(0,0,0,.85);
  --card-grad:   linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,0));
  --overlay:     linear-gradient(180deg, rgba(8,8,8,.30) 0%, rgba(8,8,8,.55) 45%, rgba(8,8,8,.92) 100%);
  --img-fallback: linear-gradient(135deg, #1d1a16 0%, #0e0d0c 60%, #1a140c 100%);
}

[data-theme="light"] {
  --bg:          #FAF7F0;   /* branco quente */
  --bg-grad:     #F3EEE2;
  --surface:     #FFFFFF;
  --surface-2:   #F4EEE2;
  --line:        rgba(184,138,68,.40);
  --line-soft:   rgba(22,22,22,.10);
  --gold:        #A9772F;
  --gold-bright: #B88A44;
  --cream:       #4A3428;   /* marrom café (texto de destaque) */
  --text:        #161616;   /* preto suave */
  --muted:       rgba(22,22,22,.62);
  --muted-2:     rgba(22,22,22,.45);
  --shadow:      0 30px 70px -34px rgba(74,52,40,.40);
  --card-grad:   linear-gradient(160deg, rgba(184,138,68,.06), rgba(184,138,68,0));
  --overlay:     linear-gradient(180deg, rgba(20,14,8,.18) 0%, rgba(20,14,8,.42) 45%, rgba(20,14,8,.86) 100%);
  --img-fallback: linear-gradient(135deg, #cabfa6 0%, #efe7d6 55%, #d8c8a8 100%);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(120% 80% at 80% -10%, rgba(184,138,68,.10), transparent 60%),
    radial-gradient(90% 60% at 0% 100%, rgba(184,138,68,.06), transparent 55%);
  color: var(--text);
  font-family: 'Archivo', 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .002em;
  overflow-x: hidden;
  transition: background-color .6s ease, color .6s ease;
}

/* Grain overlay for atmosphere */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .04; mix-blend-mode: overlay;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: 'Anton', 'Arial Narrow', sans-serif; font-weight: 400; line-height: 1.05; letter-spacing: .005em; }
.serif-soft { font-family: 'Archivo', sans-serif; }

/* Urban / rockstar poster display — big headlines in caps */
.hero h1, .sec-head h2, .cta-band h2, .book-aside h2, .problem .punch, .svc h3, .sc-title, .marquee span {
  text-transform: uppercase; letter-spacing: .02em; line-height: 1.02;
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .8rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7;
}
.eyebrow.center::after {
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7;
}
.eyebrow.center { justify-content: center; }

/* ---------- LAYOUT ---------- */
.wrap { width: min(1240px, 92vw); margin-inline: auto; }
section { position: relative; }
.pad { padding-block: clamp(5rem, 11vw, 9.5rem); }

.sec-index {
  font-family: 'Archivo', serif;
  font-size: .95rem; letter-spacing: .3em; color: var(--gold);
  opacity: .85; margin-bottom: 1.4rem; display: block;
}

.hairline { height: 1px; background: var(--line); border: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  --pad-y: 1.05rem; --pad-x: 2.2rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: 'Archivo', sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px; position: relative; overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, color .4s ease, background-color .4s ease;
  will-change: transform;
}
.btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #140d04;
  box-shadow: 0 14px 34px -14px rgba(184,138,68,.7);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .8s ease;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(184,138,68,.85); }
.btn-gold:hover::after { transform: translateX(130%); }

.btn-ghost {
  border: 1px solid var(--line); color: var(--text); background: transparent;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }

.btn-block { width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1200;
  background: var(--gold); color: #111; padding: .8rem 1.2rem; border-radius: 3px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background-color .5s ease, backdrop-filter .5s ease, padding .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.6rem; transition: padding .5s ease;
}
header.scrolled .nav { padding-block: 1rem; }

.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark {
  width: 42px; height: 42px; flex: none; border-radius: 4px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Anton', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold);
  background: var(--card-grad);
}
.brand-name {
  font-family: 'Anton', serif; font-weight: 600;
  font-size: 1.18rem; letter-spacing: .04em; line-height: 1;
}
.brand-name small {
  display: block; font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: .56rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-top: .35rem;
}

.menu { display: flex; align-items: center; gap: 2.3rem; }
.menu a {
  font-size: .82rem; letter-spacing: .04em; color: var(--muted);
  position: relative; transition: color .3s ease; padding-block: .3rem;
}
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .35s ease;
}
.menu a:hover, .menu a:focus-visible { color: var(--text); }
.menu a:hover::after, .menu a:focus-visible::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }

/* Theme toggle */
.theme-toggle {
  width: 64px; height: 34px; border-radius: 30px; position: relative;
  border: 1px solid var(--line); background: var(--surface-2);
  transition: background-color .5s ease, border-color .5s ease;
  flex: none;
}
.theme-toggle:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.theme-toggle .knob {
  position: absolute; top: 50%; left: 4px; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  display: grid; place-items: center;
  transition: left .55s cubic-bezier(.5,1.6,.4,1), transform .55s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
[data-theme="light"] .theme-toggle .knob { left: 34px; }
.theme-toggle .knob svg { width: 14px; height: 14px; color: #1a1206; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

.nav-cta { display: inline-flex; }

/* Burger */
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; height: 2px; width: 22px; margin-inline: auto; background: var(--text); transition: transform .4s ease, opacity .3s ease; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: color-mix(in srgb, var(--bg) 97%, transparent);
  backdrop-filter: blur(20px);
  transform: translateY(-100%); transition: transform .6s cubic-bezier(.7,0,.2,1);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  padding: 2rem;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  font-family: 'Anton', serif; font-size: clamp(1.7rem, 7vw, 2.6rem); color: var(--text);
  opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease, color .3s ease;
}
.mobile-menu a:hover { color: var(--gold); }
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1){ transition-delay:.1s }
body.menu-open .mobile-menu a:nth-child(2){ transition-delay:.16s }
body.menu-open .mobile-menu a:nth-child(3){ transition-delay:.22s }
body.menu-open .mobile-menu a:nth-child(4){ transition-delay:.28s }
body.menu-open .mobile-menu a:nth-child(5){ transition-delay:.34s }
body.menu-open .mobile-menu a:nth-child(6){ transition-delay:.40s }
body.menu-open .mobile-menu a:nth-child(7){ transition-delay:.46s }

/* ===================================================================
   MEDIA / IMAGE CONTAINERS (with elegant fallback)
   =================================================================== */
.media {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--img-fallback);
  border: 1px solid var(--line-soft);
}
.media::before {  /* monogram watermark fallback */
  content: "LEGACY"; position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  font-family: 'Anton', serif; font-size: 2rem; letter-spacing: .5em;
  color: rgba(184,138,68,.18);
}
.media img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(.92) contrast(1.02);
}
.media.zoom:hover img { transform: scale(1.05); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  min-height: 100svh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding-top: clamp(7rem, 16vw, 9rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: grayscale(1) contrast(1.08) brightness(.85); }
.hero-bg .hero-video  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: grayscale(1) contrast(1.06) brightness(.82); }
/* Soft blur framing the video edges — sharp in the centre, blurred all around */
.hero-blur-frame {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  -webkit-mask: radial-gradient(ellipse 76% 72% at 50% 45%, rgba(0,0,0,0) 50%, #000 88%);
          mask: radial-gradient(ellipse 76% 72% at 50% 45%, rgba(0,0,0,0) 50%, #000 88%);
}
.hero-bg::after { content: ""; position: absolute; inset: 0; z-index: 3; background: var(--overlay); }
.hero-bg::before {  /* fallback */
  content: ""; position: absolute; inset: 0; background: var(--img-fallback); z-index: -1;
}
@media (prefers-reduced-motion: reduce) { .hero-bg .hero-video { display: none; } }

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 2rem; align-items: end; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.4vw, 5.4rem);
  font-weight: 500; max-width: 16ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero h1 em { font-family: 'Archivo', serif; font-style: italic; color: var(--gold-bright); font-weight: 500; }
.hero p.sub {
  color: rgba(255,255,255,.82); max-width: 56ch; margin-top: 1.8rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 300;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }

/* Rotating premium seal */
.seal {
  width: 132px; height: 132px; position: relative; justify-self: end; align-self: end;
  margin-bottom: .6rem;
}
.seal .ring { width: 100%; height: 100%; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.seal .ring text { fill: var(--gold-bright); font-family: 'Archivo', sans-serif; font-size: 9.4px; letter-spacing: 3.4px; font-weight: 600; text-transform: uppercase; }
.seal .core {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
}
.seal .core span {
  font-family: 'Anton', serif; color: var(--gold-bright);
  font-size: 1.7rem; line-height: 1;
}
.seal .core small { display:block; font-family:'Archivo',serif; font-size:.66rem; letter-spacing:.28em; color:rgba(255,255,255,.75); text-transform:uppercase; margin-top:.25rem; }

/* scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem; color: rgba(255,255,255,.55); }
.scroll-cue span { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--gold-bright); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%{top:-50%} 60%,100%{top:100%} }

/* ===================================================================
   GENERIC SECTION HEADS
   =================================================================== */
.sec-head { max-width: 62ch; }
.sec-head h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); margin-top: 1.3rem; font-weight: 500; }
.sec-head h2 em { font-family: 'Archivo', serif; font-style: italic; color: var(--gold); }
.sec-head.center { margin-inline: auto; text-align: center; }
.lead { color: var(--muted); font-size: 1.05rem; margin-top: 1.4rem; font-weight: 300; }

/* split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { aspect-ratio: 4/5; }
.split p { color: var(--muted); margin-top: 1.2rem; font-weight: 300; }
.split p strong { color: var(--text); font-weight: 600; }
.split p .accent { color: var(--gold); font-style: italic; font-family: 'Archivo', serif; font-size: 1.15em; }

/* Unified benefit blocks (Confiança + Consistência) */
.benefit-block h2 { margin-bottom: .2rem; }
.benefit-divider { border: 0; height: 1px; width: 92px; background: var(--gold); opacity: .55; margin: 2.6rem 0; }

/* ===================================================================
   PROBLEM (section 02)
   =================================================================== */
.problem { background: linear-gradient(180deg, transparent, var(--surface-2) 60%, transparent); }
.problem .q {
  font-family: 'Archivo', serif; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold-bright); line-height: 1.4;
  border-left: 2px solid var(--line); padding-left: 1.4rem; margin: 2rem 0;
}
.problem .punch {
  font-family: 'Anton', serif; font-size: clamp(1.3rem,2.4vw,1.9rem);
  color: var(--text); margin-top: 2rem; line-height: 1.4; max-width: 28ch;
}
.problem .punch b { color: var(--gold); font-weight: 600; }

/* ===================================================================
   ABOUT / SOLUTION (section 03) — cards
   =================================================================== */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3.5rem; }
.feature-card {
  background: var(--surface); background-image: var(--card-grad);
  border: 1px solid var(--line-soft); border-radius: 5px; padding: 2.1rem 1.7rem;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .5s ease, box-shadow .5s ease;
}
.feature-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.feature-card .ic {
  width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold); margin-bottom: 1.4rem;
}
.feature-card .ic svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.18rem; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: .9rem; margin-top: .6rem; font-weight: 300; }

/* Guarantee badge inline */
.guarantee {
  margin-top: 3rem; display: flex; align-items: center; gap: 1.4rem;
  background: var(--surface); background-image: var(--card-grad);
  border: 1px solid var(--line); border-radius: 6px; padding: 1.6rem 2rem;
}
.guarantee .seal-sm { width: 58px; height: 58px; flex: none; border-radius: 50%; border: 1px dashed var(--gold); display: grid; place-items: center; color: var(--gold); }
.guarantee .seal-sm svg { width: 26px; height: 26px; }
.guarantee p { color: var(--muted); font-weight: 300; }
.guarantee p strong { color: var(--text); font-weight: 600; display: block; font-family: 'Anton', serif; font-size: 1.05rem; margin-bottom: .2rem; }

/* ===================================================================
   SERVICES (section 06)
   =================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3.5rem; }
.svc {
  border: 1px solid var(--line-soft); border-radius: 5px; padding: 1.8rem 1.5rem;
  background: var(--surface); background-image: var(--card-grad);
  transition: transform .45s ease, border-color .45s ease, background-color .45s ease;
  display: flex; flex-direction: column; gap: .5rem; min-height: 178px;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); border-color: var(--line); }
.svc .svc-no { font-family: 'Archivo', serif; color: var(--gold); font-size: .85rem; letter-spacing: .2em; }
.svc h3 { font-size: 1.22rem; font-weight: 600; margin-top: auto; }
.svc p { color: var(--muted); font-size: .85rem; font-weight: 300; }

/* Service cards with background photo (grayscale -> muted color on hover) */
.svc.has-img { min-height: 210px; }
.svc.has-img::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-color: #14110c; background-image: var(--bg);
  background-size: cover; background-position: center;
  filter: grayscale(1) brightness(.5) contrast(1.04);
  transition: filter .6s ease, transform 1.2s ease;
}
.svc.has-img:hover::before { filter: grayscale(0) saturate(1) brightness(.86) contrast(1.02); transform: scale(1.05); }
.svc.has-img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,7,5,.38) 0%, rgba(8,7,5,.74) 100%);
}
.svc.has-img > * { position: relative; z-index: 2; }
.svc.has-img .svc-no { color: var(--gold-bright); }
.svc.has-img h3 { color: #fff; }
.svc.has-img p { color: rgba(255,255,255,.74); }

/* Combo Premium — featured */
.svc.featured {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(155deg, #211a10, #0f0c08);
  border: 1px solid var(--gold); position: relative; justify-content: flex-end;
  padding: 4.6rem 2.4rem 2.4rem; overflow: hidden; min-height: 0;
}
[data-theme="light"] .svc.featured { background: linear-gradient(155deg, #4a3428, #2c1f17); color: #fff; }
.svc.featured::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-color: #14110c; background-image: var(--bg);
  background-size: cover; background-position: center;
  filter: grayscale(1) brightness(.5) contrast(1.04);
  transition: filter .6s ease, transform 1.2s ease;
}
.svc.featured:hover::before { filter: grayscale(0) saturate(1) brightness(.82) contrast(1.02); transform: scale(1.05); }
.svc.featured::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,7,5,.35) 0%, rgba(8,7,5,.72) 68%, rgba(8,7,5,.88) 100%);
}
.svc.featured > * { position: relative; z-index: 2; }
.svc.featured .tag {
  position: absolute; top: 1.6rem; left: 2.4rem; z-index: 2;
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: #140d04;
  background: var(--gold-bright); padding: .42rem .9rem; border-radius: 30px; font-weight: 700;
}
.svc.featured h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; }
[data-theme="light"] .svc.featured h3 { color: #fff; }
.svc.featured p { color: rgba(255,255,255,.7); font-size: .98rem; max-width: 40ch; }
.svc.featured .mini-cta { margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-bright); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.svc.featured .mini-cta svg { width: 18px; height: 18px; transition: transform .4s ease; }
.svc.featured:hover .mini-cta svg { transform: translateX(6px); }

/* ===================================================================
   PORTFÓLIO / GALERIA (section 07)
   =================================================================== */
.gallery { background: linear-gradient(180deg, transparent, var(--surface-2) 50%, transparent); }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 2.6rem; }
.filter-btn {
  font-family: 'Archivo', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  padding: .68rem 1.4rem; border: 1px solid var(--line-soft); border-radius: 30px;
  transition: color .35s ease, background-color .35s ease, border-color .35s ease, transform .35s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--line); transform: translateY(-2px); }
.filter-btn.active { color: #140d04; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-color: transparent; box-shadow: 0 10px 24px -12px rgba(184,138,68,.7); }
.filter-btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 232px; gap: 1.1rem; margin-top: 3rem; }
.shot {
  position: relative; overflow: hidden; border-radius: 5px; cursor: pointer;
  background: var(--img-fallback); border: 1px solid var(--line-soft);
  animation: shotIn .6s cubic-bezier(.2,.7,.2,1) both;
}
.shot.tall { grid-row: span 2; }
@keyframes shotIn { from { opacity: 0; transform: scale(.96) } to { opacity: 1; transform: none } }
.shot::before {
  content: "LEGACY"; position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  font-family: 'Anton', serif; letter-spacing: .42em; font-size: 1.2rem; color: rgba(184,138,68,.16);
}
.shot img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: saturate(.9) contrast(1.03);
}
.shot:hover img, .shot:focus-visible img { transform: scale(1.07); }
.shot:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.shot .cap {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 2.4rem 1.2rem 1.1rem;
  background: linear-gradient(transparent, rgba(8,7,5,.88));
  transform: translateY(10px); transition: transform .45s ease;
}
.shot:hover .cap, .shot:focus-visible .cap { transform: translateY(0); }
.shot .cap .tag { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); }
.shot .cap h3 { font-size: 1.06rem; color: #fff; font-weight: 600; margin-top: .2rem; }
.shot .expand {
  position: absolute; top: .9rem; right: .9rem; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(11,11,11,.5); backdrop-filter: blur(6px); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold-bright);
  opacity: 0; transform: scale(.8); transition: opacity .4s ease, transform .4s ease;
}
.shot:hover .expand, .shot:focus-visible .expand { opacity: 1; transform: scale(1); }
.shot .expand svg { width: 17px; height: 17px; }
.shot.hide { display: none; }
.gallery-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1100; display: none;
  background: rgba(6,6,6,.95); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 5vw;
}
.lightbox.open { display: flex; animation: lbIn .4s ease; }
@keyframes lbIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox-fig { max-width: min(1000px, 92vw); text-align: center; }
.lightbox-fig img { max-height: 76vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: 6px; box-shadow: var(--shadow); }
.lightbox-fig figcaption { margin-top: 1.2rem; }
.lightbox-fig figcaption .tag { display: block; color: var(--gold-bright); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: .35rem; }
.lightbox-fig figcaption b { font-family: 'Anton', serif; font-size: 1.4rem; font-weight: 500; color: var(--cream); }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--cream);
  display: grid; place-items: center; transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.lb-btn:hover { background: var(--gold); color: #140d04; border-color: var(--gold); }
.lb-btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 4vw; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ===================================================================
   TESTIMONIALS (section 08)
   =================================================================== */
.testi { background: linear-gradient(180deg, transparent, var(--surface-2), transparent); }
.rating-row { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-top: 1.4rem; }
.stars { color: var(--gold-bright); letter-spacing: .25em; font-size: 1.25rem; }
.rating-row span { color: var(--muted); font-size: .85rem; letter-spacing: .04em; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3.4rem; }
.quote {
  background: var(--surface); background-image: var(--card-grad);
  border: 1px solid var(--line-soft); border-radius: 6px; padding: 2.2rem 2rem;
  position: relative; transition: transform .5s ease, border-color .5s ease;
}
.quote:hover { transform: translateY(-6px); border-color: var(--line); }
.quote .mark { font-family: 'Anton', serif; font-size: 4rem; color: var(--gold); opacity: .35; line-height: .7; }
.quote p { font-family: 'Archivo', serif; font-size: 1.32rem; line-height: 1.5; color: var(--text); margin: .4rem 0 1.4rem; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: .8rem; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--cream)); display: grid; place-items: center; font-family: 'Anton', serif; color: #140d04; font-weight: 700; }
.quote .who b { font-weight: 600; font-size: .92rem; }
.quote .who small { display: block; color: var(--muted); font-size: .72rem; letter-spacing: .1em; }

.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.6rem 3.4rem; margin-top: 3.6rem; opacity: .7; }
.logos span { font-family: 'Anton', serif; font-size: 1.05rem; letter-spacing: .04em; color: var(--muted); display: inline-flex; align-items: center; gap: .55rem; }
.logos span svg { width: 20px; height: 20px; color: var(--gold); }

/* ===================================================================
   CTA BAND (section 08)
   =================================================================== */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .16;
  background: var(--img-fallback);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 500; max-width: 18ch; margin-inline: auto; }
.cta-band h2 em { font-family: 'Archivo', serif; font-style: italic; color: var(--gold); }
.cta-band .lead { max-width: 50ch; margin-inline: auto; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.cta-support { margin-top: 2rem; color: var(--muted); font-size: .82rem; letter-spacing: .06em; }
.cta-support b { color: var(--gold); }

/* ===================================================================
   BOOKING FORM
   =================================================================== */
.book-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.book-aside h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; margin-top: 1.2rem; }
.book-aside .lead { margin-bottom: 2rem; }
.contact-line { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line-soft); }
.contact-line:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-line .ic { width: 42px; height: 42px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.contact-line .ic svg { width: 18px; height: 18px; }
.contact-line b { display: block; font-family: 'Archivo'; font-weight: 600; font-size: .92rem; }
.contact-line small { color: var(--muted); font-size: .82rem; }

form.book {
  background: var(--surface); background-image: var(--card-grad);
  border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.3rem; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1rem; border-radius: 4px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line-soft); font-family: 'Archivo', sans-serif; font-size: .92rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,138,68,.18);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B88A44' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field textarea { resize: vertical; min-height: 96px; }
.form-actions { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.6rem; }
.form-note { text-align: center; font-size: .76rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ===================================================================
   FAQ (section 09)
   =================================================================== */
.faq-list { max-width: 820px; margin: 3.2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0; font-family: 'Anton', serif; font-size: clamp(1.05rem, 2vw, 1.32rem); color: var(--text);
  transition: color .3s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; position: relative; transition: background-color .4s ease, border-color .4s ease; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold); transition: transform .4s ease, background-color .3s ease; }
.faq-q .pm::before { width: 12px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 12px; }
.faq-item.open .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item.open .pm { background: var(--gold); }
.faq-item.open .pm::before { background: #140d04; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.4,0,.2,1); }
.faq-a p { color: var(--muted); padding-bottom: 1.6rem; font-weight: 300; max-width: 64ch; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer { border-top: 1px solid var(--line-soft); padding-block: 4.5rem 2.5rem; background: var(--surface-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot-brand .brand { margin-bottom: 1.3rem; }
.foot-brand p { color: var(--muted); font-size: .9rem; font-weight: 300; max-width: 34ch; }
.foot-col h4 { font-family: 'Archivo', sans-serif; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; }
.foot-col a, .foot-col p { display: block; color: var(--muted); font-size: .88rem; padding-block: .35rem; font-weight: 300; transition: color .3s ease; }
.foot-col a:hover { color: var(--gold); }
.socials { display: flex; gap: .7rem; margin-top: .4rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--text); transition: all .35s ease; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #140d04; transform: translateY(-3px); }
.socials a svg { width: 18px; height: 18px; }
.foot-bottom { margin-top: 3.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--muted-2); font-size: .78rem; }

/* ===================================================================
   FLOATING WHATSAPP
   =================================================================== */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 36px -8px rgba(37,211,102,.6);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .4s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float .tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--surface); color: var(--text); border: 1px solid var(--line);
  padding: .6rem 1rem; border-radius: 6px; white-space: nowrap; font-size: .8rem;
  opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease; box-shadow: var(--shadow);
}
.wa-float:hover .tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes waPulse { 0%,100%{ box-shadow:0 14px 36px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4) } 50%{ box-shadow:0 14px 36px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0) } }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc.featured { grid-column: span 2; grid-row: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .menu, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .seal { justify-self: start; margin-top: 2rem; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 16/11; }
}
@media (max-width: 560px) {
  .cards-4, .services-grid { grid-template-columns: 1fr; }
  .svc.featured { grid-column: auto; }
  .field.row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-actions { gap: .7rem; }
  .btn { --pad-x: 1.6rem; font-size: .76rem; }
  .scroll-cue { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 168px; gap: .7rem; }
  .shot .cap { padding: 1.6rem .9rem .8rem; }
  .shot .cap h3 { font-size: .9rem; }
  .lb-prev { left: 50%; top: auto; bottom: 4vw; transform: translateX(-128%); }
  .lb-next { right: 50%; top: auto; bottom: 4vw; transform: translateX(128%); }
  .lb-close { top: 4vw; right: 4vw; }
  .lightbox-fig img { max-height: 64vh; }
}

/* ===================================================================
   AWWWARDS LAYER — preloader · custom cursor · marquee · WebGL showcase
   =================================================================== */

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 12000; background: var(--bg); display: grid; place-items: center; transition: opacity .8s ease, visibility .8s ease; }
.preloader .pl-inner { text-align: center; }
.preloader .pl-mark { font-family: 'Anton', serif; font-size: clamp(2.6rem, 9vw, 5rem); color: var(--text); letter-spacing: .06em; line-height: 1; overflow: hidden; padding: .12em 0; }
.preloader .pl-mark span { display: inline-block; transform: translateY(115%); animation: plUp .95s cubic-bezier(.2,.8,.2,1) forwards; }
.preloader .pl-mark span:nth-child(1){ animation-delay:.40s } .preloader .pl-mark span:nth-child(2){ animation-delay:.47s }
.preloader .pl-mark span:nth-child(3){ animation-delay:.54s } .preloader .pl-mark span:nth-child(4){ animation-delay:.61s }
.preloader .pl-mark span:nth-child(5){ animation-delay:.68s } .preloader .pl-mark span:nth-child(6){ animation-delay:.75s }
@keyframes plUp { to { transform: translateY(0); } }
.preloader .pl-sub { font: 600 .62rem/1 'Archivo', sans-serif; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-top: 1.1rem; opacity: 0; animation: plFade .8s ease 1s forwards; }
@keyframes plFade { to { opacity: .85; } }
.preloader .pl-bar { width: min(240px, 60vw); height: 1px; background: var(--line-soft); margin: 2.4rem auto 0; position: relative; overflow: hidden; }
.preloader .pl-bar i { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transition: width .2s ease; }
.preloader .pl-num { font: 500 .85rem 'Archivo', serif; letter-spacing: .22em; color: var(--muted); margin-top: 1rem; }
body.loaded .preloader { opacity: 0; visibility: hidden; }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; border-radius: 50%; opacity: 0; mix-blend-mode: difference; }
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
.cursor-dot { width: 7px; height: 7px; background: #fff; transform: translate(-50%, -50%); }
.cursor-ring { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.6); transform: translate(-50%, -50%); display: grid; place-items: center; transition: width .35s ease, height .35s ease, background-color .35s ease, border-color .35s ease, opacity .35s ease; }
.cursor-ring .cw { font: 600 .54rem/1 'Archivo', sans-serif; letter-spacing: .18em; text-transform: uppercase; color: #fff; opacity: 0; transform: scale(.6); transition: opacity .3s ease, transform .3s ease; }
body.cur-hover .cursor-ring { width: 64px; height: 64px; background: rgba(255,255,255,.08); }
body.cur-view .cursor-ring { width: 96px; height: 96px; border-color: var(--gold-bright); background: rgba(184,138,68,.16); mix-blend-mode: normal; }
body.cur-view .cursor-ring .cw { opacity: 1; transform: scale(1); color: var(--gold-bright); }
body.cur-view .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }
@media (hover: hover) and (pointer: fine) { body.cursor-on, body.cursor-on a, body.cursor-on button, body.cursor-on .shot, body.cursor-on .showcase-stage { cursor: none; } }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); padding: 1.5rem 0; background: var(--surface-2); }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: marq 28s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: 'Anton', serif; font-size: clamp(1.4rem, 3.4vw, 2.4rem); color: var(--text); display: inline-flex; align-items: center; padding: 0 1.6rem; }
.marquee span::after { content: "✦"; color: var(--gold); font-size: .55em; margin-left: 3rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* WebGL showcase */
.showcase { margin-top: 3rem; }
.showcase-stage { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); background: var(--img-fallback); box-shadow: var(--shadow); cursor: grab; }
.showcase-stage.grabbing { cursor: grabbing; }
.showcase-stage.no-gl { display: none; }
#glCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.showcase-ui { position: absolute; left: 0; bottom: 0; z-index: 3; padding: clamp(1.4rem, 3vw, 2.6rem); pointer-events: none; }
.showcase-ui .sc-tag { display: block; font: 600 .66rem/1 'Archivo', sans-serif; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: .55rem; }
.showcase-ui .sc-title { font-family: 'Anton', serif; font-size: clamp(1.6rem, 4vw, 3rem); color: #fff; font-weight: 500; line-height: 1.02; text-shadow: 0 4px 30px rgba(0,0,0,.55); }
.sc-nav { position: absolute; top: 50%; margin-top: -28px; z-index: 4; width: 56px; height: 56px; border-radius: 50%; background: rgba(11,11,11,.4); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); color: #fff; display: grid; place-items: center; transition: background-color .3s ease, border-color .3s ease, color .3s ease; }
.sc-nav:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #140d04; }
.sc-nav:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.sc-nav svg { width: 22px; height: 22px; }
.sc-prev { left: clamp(.8rem, 2vw, 1.6rem); }
.sc-next { right: clamp(.8rem, 2vw, 1.6rem); }
.sc-count { position: absolute; top: clamp(1.2rem, 3vw, 2rem); right: clamp(1.2rem, 3vw, 2rem); z-index: 3; font: 500 .95rem 'Archivo', serif; letter-spacing: .18em; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.sc-count b { color: var(--gold-bright); font-weight: 600; }
.sc-hint { position: absolute; top: clamp(1.2rem, 3vw, 2rem); left: clamp(1.2rem, 3vw, 2rem); z-index: 3; font: 600 .58rem/1 'Archivo', sans-serif; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: .55rem; }
.sc-hint svg { width: 16px; height: 16px; }
.sc-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 3; background: rgba(255,255,255,.14); }
.sc-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }
@media (max-width: 560px) { .showcase-stage { aspect-ratio: 4 / 5; } .sc-nav { width: 46px; height: 46px; margin-top: -23px; } }

/* Condensed gothic for UI labels (urban/rockstar) — placed last to win the cascade */
.eyebrow, .sec-index, .btn, .menu a, .nav-cta, .filter-btn, .sc-tag, .sc-count, .sc-hint,
.pl-sub, .pl-num, .brand-name small, .cursor-ring .cw, .foot-col h4, .cta-support {
  font-family: 'Oswald', 'Archivo', sans-serif;
}
