/* ============================================================================
   BARBERS&BROWS — styles.css
   Editorial · Luxe Mono · estrictamente blanco / negro / grises
   ============================================================================ */

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --bg:        #FAFAF8;   /* blanco cálido */
  --bg-2:      #F2F0EC;   /* sand muy claro */
  --paper:     #FFFFFF;
  --ink:       #0E0E0E;   /* tinta casi negra */
  --ink-2:     #6B6B6B;   /* gris texto */
  --ink-3:     #9A9A9A;   /* gris suave */
  --line:      #E6E4E0;   /* hairline */
  --line-2:    #D8D5CF;
  --dark:      #0E0E0E;   /* secciones oscuras */
  --dark-2:    #161514;
  --cream:     #F4F1EA;   /* texto sobre oscuro */
  --cream-2:   #B9B4AA;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --mono:  "Space Mono", "Courier New", monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1240px;
  --nav-h: 76px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ol, ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 em, h1 em, h3 em, h4 em { font-style: italic; font-weight: 500; }

::selection { background: var(--ink); color: var(--bg); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10000;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: 6px; font-weight: 500; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

/* Grain overlay — sutil, monocromo */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { position: relative; padding-block: clamp(4.5rem, 11vw, 9rem); }
.section + .section { border-top: 1px solid var(--line); }

.kicker {
  font-family: var(--mono);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-2);
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 40ch; }
.section-head .kicker { margin-bottom: 1.1rem; }
.section-head h2 { font-size: clamp(2rem, 5.2vw, 3.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Watermark numbers */
.wm {
  position: absolute; top: clamp(1.5rem, 4vw, 3rem); right: var(--gutter);
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(5rem, 16vw, 13rem); line-height: 1;
  color: var(--ink); opacity: 0.05; pointer-events: none; z-index: 0;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 500; font-size: .92rem;
  letter-spacing: .01em; padding: .85em 1.5em; border-radius: 100px;
  transition: background .4s var(--ease-out), color .4s var(--ease-out),
              border-color .4s var(--ease-out), transform .4s var(--ease-out);
  white-space: nowrap;
}
.btn-lg { font-size: 1rem; padding: 1.05em 1.9em; }
.btn .arr { width: 1.05em; height: 1.05em; transition: transform .4s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #2a2a2a; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-line {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
  border-radius: 100px;
}
.btn-line:hover { background: var(--ink); color: var(--bg); }

/* On dark backgrounds */
.hero-actions .btn-ghost { color: var(--cream); border-color: rgba(244,241,234,.4); }
.hero-actions .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ============================================================
   5. SPLASH
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
  transition: opacity .7s var(--ease-out), visibility .7s;
  animation: splashSafety .01s 3s forwards;   /* red de seguridad CSS */
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.splash-emblem { display: grid; justify-items: center; gap: 1.4rem; padding: 2rem; }
.splash .emblem-mark {
  width: clamp(110px, 28vw, 160px); height: auto; color: var(--cream);
  animation: emblemIn 1s var(--ease-out) both;
}
@keyframes emblemIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.splash-tag {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--cream-2);
  animation: fadeUp .8s .3s var(--ease-out) both;
}
.splash-bar {
  width: 150px; height: 1px; background: rgba(244,241,234,.18); overflow: hidden;
}
.splash-bar span {
  display: block; height: 100%; width: 100%; background: var(--cream);
  transform-origin: left; animation: barLoad 2.4s var(--ease-soft) forwards;
}
@keyframes barLoad { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Emblem (footer + splash) lockup */
.emblem { display: inline-block; }
.emblem-word {
  font-family: var(--serif); font-weight: 700; font-size: 17px;
  letter-spacing: .02em; fill: currentColor;
}

/* ============================================================
   6. NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 2000;
  background: rgba(250,250,248,.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(250,250,248,.94); }
.nav-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter); height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); }
.brand-mark { display: grid; gap: 2px; width: 34px; color: var(--ink); }
.brand-mark .bm-mustache { width: 34px; height: auto; }
.brand-mark .bm-brow { width: 28px; height: auto; margin-inline: auto; opacity: .85; }
.brand-word {
  font-family: var(--serif); font-weight: 700; font-size: 1.32rem;
  letter-spacing: .005em; line-height: 1;
}
.brand-word .amp { font-style: italic; font-weight: 500; margin-inline: .02em; }

.nav-links { display: none; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a {
  font-size: .86rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding-block: .4rem; transition: color .3s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang { display: flex; align-items: center; gap: .35rem; }
.lang-btn {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .08em;
  color: var(--ink-3); padding: .2rem .1rem; transition: color .3s var(--ease-out);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--ink); font-weight: 700; }
.lang-sep { color: var(--line-2); font-size: .7rem; }

.nav-cta { display: none; }

/* Burger */
.burger { display: inline-grid; gap: 5px; padding: .4rem; width: 38px; }
.burger span { display: block; height: 1.5px; width: 22px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .25s; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 1900;
  background: var(--bg); border-bottom: 1px solid var(--line);
  display: grid; gap: .3rem; padding: 1.25rem var(--gutter) 2rem;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform .4s var(--ease-out), opacity .35s, visibility .35s;
}
.nav-drawer.is-open { transform: none; opacity: 1; visibility: visible; }
.nav-drawer a { font-family: var(--serif); font-size: 1.5rem; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.nav-drawer .btn { margin-top: 1rem; justify-content: center; font-family: var(--sans); font-size: 1rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; align-items: center;
  color: var(--cream); overflow: hidden;
  padding-block: calc(var(--nav-h) + 2rem) 4rem;
  margin-top: calc(-1 * var(--nav-h));
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(.82);
  transform: scale(1.06); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,.55) 0%, rgba(14,14,14,.35) 40%, rgba(14,14,14,.72) 100%),
    radial-gradient(120% 80% at 50% 30%, transparent 30%, rgba(14,14,14,.5) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid; justify-items: center; text-align: center; gap: 1.5rem;
}
.hero .kicker { color: var(--cream-2); }
.hero-title {
  font-size: clamp(2.6rem, 8.5vw, 6.4rem); line-height: .98;
  max-width: 16ch; color: var(--cream);
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero-sub {
  max-width: 46ch; font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--cream); opacity: .9; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: .5rem; }
.hero-rating {
  font-family: var(--mono); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream-2); margin-top: .4rem;
}
.hero-rating .star { color: var(--cream); }

.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; width: 24px; height: 38px; border: 1px solid rgba(244,241,234,.4); border-radius: 14px; }
.hero-scroll span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: var(--cream); transform: translateX(-50%); animation: scrollDot 1.8s var(--ease-soft) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, -2px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ============================================================
   8. MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden;
  padding-block: 1.05rem; border-block: 1px solid var(--ink);
}
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .18em;
  text-transform: uppercase; white-space: nowrap; color: var(--cream-2);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   9. REVEAL (defensivo)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }   /* defensa A.4.5 */

/* ============================================================
   10. ABOUT
   ============================================================ */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-text h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 1rem 0 1.5rem; }
.about-text .lead { font-size: 1.18rem; color: var(--ink); margin-bottom: 1.1rem; }
.about-text p { color: var(--ink-2); }
.about-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; margin-top: 2.4rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.about-dl dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .35rem; }
.about-dl dd { font-family: var(--serif); font-size: 1.15rem; }
.about-dl dd a { border-bottom: 1px solid var(--line-2); transition: border-color .3s; }
.about-dl dd a:hover { border-color: var(--ink); }
.about-fig { overflow: hidden; border-radius: 4px; }
.about-fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: transform 1.2s var(--ease-out); }
.about-fig:hover img { transform: scale(1.05); }

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1.1fr .9fr; }
}

/* ============================================================
   11. SERVICES
   ============================================================ */
.svc-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.svc-col {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; padding: clamp(1.6rem, 3.5vw, 2.8rem);
  display: flex; flex-direction: column;
}
.svc-col-head { text-align: center; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); margin-bottom: .6rem; }
.svc-ico { display: inline-block; color: var(--ink); margin-bottom: .8rem; }
.svc-ico svg { width: 64px; height: auto; }
.svc-col-head h3 { font-size: 1.9rem; }
.svc-col-sub { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-top: .4rem; }

.svc-list { margin-top: .4rem; }
.svc-list li {
  display: flex; align-items: baseline; gap: .8rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.svc-list li:last-child { border-bottom: 0; }
.svc-name { flex: 1 1 auto; font-size: 1rem; color: var(--ink); }
.svc-dots { flex: 1 1 auto; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); min-width: 1rem; }
.svc-price { font-family: var(--mono); font-size: .95rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.svc-price .from { font-weight: 400; font-size: .72rem; color: var(--ink-3); margin-right: .35em; text-transform: uppercase; letter-spacing: .06em; }
.svc-cta { margin-top: 1.8rem; align-self: center; }

@media (min-width: 860px) {
  .svc-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================================
   12. TEAM
   ============================================================ */
.team-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); justify-content: center; }
.team-card { text-align: center; max-width: 360px; margin-inline: auto; }
.team-photo {
  position: relative; width: clamp(170px, 40vw, 220px); aspect-ratio: 1; margin: 0 auto 1.4rem;
  border-radius: 50%; overflow: hidden; border: 1px solid var(--line-2); background: var(--bg-2);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); }
.team-photo.is-empty { display: grid; place-items: center; }
.team-ph-fallback { display: grid; place-items: center; gap: .5rem; color: var(--ink-3); }
.team-ph-fallback .ini { font-family: var(--serif); font-size: 3rem; color: var(--ink-2); }
.team-ph-fallback .tip { font-family: var(--mono); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; }
.team-badge {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 30px; display: grid; place-items: center;
  background: var(--bg); border-radius: 100px; color: var(--ink);
  border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.team-badge svg { width: 30px; height: auto; }
.team-card h3 { font-size: 1.5rem; }
.team-role { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: .5rem 0 1rem; }
.team-bio { color: var(--ink-2); font-size: .98rem; }

@media (min-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; max-width: 820px; margin-inline: auto; } }

/* Certs */
.certs { margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); padding-top: clamp(2.5rem, 5vw, 4rem); }
.certs-head { text-align: center; margin-bottom: 2.2rem; }
.certs-head h3 { font-size: 1.6rem; }
.certs-sub { font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-top: .5rem; }
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; max-width: 760px; margin-inline: auto; }
.cert {
  position: relative; aspect-ratio: 1; border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden; background: var(--bg-2);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.cert:hover { border-color: var(--ink); transform: translateY(-3px); }
.cert img { width: 100%; height: 100%; object-fit: cover; }
.cert-ph { display: grid; place-items: center; gap: .4rem; color: var(--ink-3); text-align: center; padding: .5rem; }
.cert-ph svg { width: 26px; height: 26px; }
.cert-ph span { font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
@media (min-width: 620px) { .certs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .certs-grid { grid-template-columns: repeat(5, 1fr); } }

/* ============================================================
   13. REVIEWS
   ============================================================ */
.reviews { background: var(--bg-2); }
.reviews-score { font-size: clamp(3rem, 9vw, 5.5rem); display: flex; align-items: center; justify-content: center; gap: .15em; }
.reviews-score .score-star { font-family: var(--sans); font-size: .55em; }
.reviews-sub { color: var(--ink-2); margin-top: .4rem; }
.reviews-grid { display: grid; gap: 1.2rem; margin-bottom: 2.6rem; }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { color: var(--ink); letter-spacing: .12em; font-size: .9rem; }
.review-text { font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.review-name { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: auto; }
.reviews-foot { text-align: center; }
@media (min-width: 860px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   14. GALLERY
   ============================================================ */
.gallery { overflow: hidden; }
.gallery-rail { display: flex; gap: 1rem; padding-inline: var(--gutter); margin-top: 1rem; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; padding-bottom: 1.5rem; scrollbar-width: thin; }
.gallery-item {
  position: relative; flex: 0 0 auto; width: clamp(220px, 60vw, 320px); aspect-ratio: 3 / 4;
  border-radius: 5px; overflow: hidden; scroll-snap-align: start; background: var(--bg-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: transform 1s var(--ease-out), filter .6s; }
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(.6) contrast(1.05); }
.gallery-cap { position: absolute; left: 0; bottom: 0; padding: .6rem .9rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); background: linear-gradient(0deg, rgba(14,14,14,.7), transparent); width: 100%; }

/* ============================================================
   15. CONTACT
   ============================================================ */
.contact-lead { color: var(--ink-2); max-width: 44ch; margin: 1rem auto 1.8rem; }
.lines { display: grid; gap: 1.2rem; margin: 2.5rem 0; max-width: 880px; margin-inline: auto; }
.line {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 1.6rem; display: grid; gap: 1rem; align-items: center;
  grid-template-columns: auto 1fr;
}
.line-ico { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); }
.line-ico svg { width: 34px; height: auto; }
.line-meta { min-width: 0; }
.line-label { font-family: var(--mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.line-phone { font-family: var(--serif); font-size: 1.55rem; line-height: 1.1; margin-top: .15rem; }
.line-actions { grid-column: 1 / -1; display: flex; gap: .7rem; flex-wrap: wrap; }
.line-actions .btn { flex: 1 1 auto; justify-content: center; }
.btn-wa { background: var(--ink); color: var(--bg); }
.btn-wa:hover { background: #2a2a2a; }
@media (min-width: 720px) {
  .lines { grid-template-columns: 1fr 1fr; }
  .line { grid-template-columns: auto 1fr; }
}

.contact-info { display: grid; gap: 1.6rem; margin-top: 2.5rem; border-top: 1px solid var(--line); padding-top: 2.5rem; text-align: center; }
.ci-block h4 { font-family: var(--mono); font-weight: 400; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .7rem; }
.ci-block a { font-size: 1rem; border-bottom: 1px solid transparent; transition: border-color .3s; }
.ci-block a:hover { border-color: var(--ink); }
.ci-hours li { font-size: .95rem; color: var(--ink-2); padding: .15rem 0; }
.ci-hours b { color: var(--ink); font-weight: 500; }
@media (min-width: 720px) { .contact-info { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   16. LOCATION
   ============================================================ */
.location-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.location-text h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 1rem 0 1.2rem; }
.location-text h4 { font-family: var(--mono); font-weight: 400; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin: 1.8rem 0 .6rem; }
.location-text p { color: var(--ink-2); }
.loc-addr { font-family: var(--serif); font-size: 1.2rem; color: var(--ink) !important; }
.location-text .btn { margin-top: 1.8rem; }
.location-map { aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }
@media (min-width: 960px) { .location-grid { grid-template-columns: .9fr 1.1fr; } }

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-top { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .emblem-sm .emblem-mark { width: 84px; height: auto; color: var(--cream); }
.footer-name { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; margin: 1rem 0 .4rem; }
.footer-name .amp { font-style: italic; font-weight: 500; }
.footer-tag { font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-2); max-width: 30ch; }
.footer-col h5 { font-family: var(--mono); font-weight: 400; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-2); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: var(--cream); opacity: .85; font-size: .94rem; padding: .25rem 0; transition: opacity .3s; }
.footer-col a:hover { opacity: 1; }
.footer-hours li { color: var(--cream); opacity: .85; font-size: .9rem; padding: .15rem 0; }
.footer-hours b { font-weight: 500; }
.footer-lang-label { color: var(--cream-2) !important; margin-top: 1rem; font-size: .66rem !important; font-family: var(--mono); letter-spacing: .2em; text-transform: uppercase; }
.footer-lang { margin-top: .5rem; }
.footer-lang .lang-btn { color: var(--cream-2); }
.footer-lang .lang-btn:hover, .footer-lang .lang-btn.is-active { color: var(--cream); }
.footer-lang .lang-sep { color: rgba(244,241,234,.3); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(244,241,234,.14); padding-block: 1.6rem 2rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--cream-2);
}
.footer-bottom-right { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a { transition: color .3s; }
.footer-bottom a:hover { color: var(--cream); }

@media (min-width: 720px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; } }

/* ============================================================
   18. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9500; display: grid; place-items: center;
  background: rgba(14,14,14,.92); padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease-out), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.8rem; font-size: 2.4rem; line-height: 1; color: var(--cream); width: 48px; height: 48px; }

/* ============================================================
   19. REDUCED MOTION — solo lo intrusivo
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; transform: none; }
  .hero-scroll span { animation: none; }
  .splash-bar span { animation-duration: 1s; }
}
