/* ==========================================================================
   AJ23 BARBERSHOP — "Street Energy"
   Gainesville, FL · Mobile-first · Vanilla CSS (no framework)
   --------------------------------------------------------------------------
   0. Design tokens          5. Services (strip + cards)
   1. Reset & base           6. Barbers
   2. Utilities              7. Gallery
   3. Buttons                8. About
   4. Navbar & mobile menu   9. Booking CTA
                            10. Contact / Footer
                            11. Motion & accessibility
   ========================================================================== */

/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand surfaces */
  --bg-primary:   #0A0A0A;
  --bg-secondary: #141414;
  --bg-card:      #1A1A1A;
  --bg-elevated:  #202020;

  /* Gold */
  --gold:         #C9A227;
  --gold-light:   #E8C55A;
  --gold-deep:    #8C6F14;
  --gold-dim:     rgba(201, 162, 39, 0.14);
  --gold-line:    rgba(201, 162, 39, 0.34);
  --gold-hairline:rgba(201, 162, 39, 0.12);

  /* Red */
  --red:          #E63946;
  --red-deep:     #A81D28;
  --red-dim:      rgba(230, 57, 70, 0.14);

  /* Type */
  --text:         #FFFFFF;
  --text-muted:   #A6A6A6;
  --text-faint:   rgba(255, 255, 255, 0.38);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script:  'Great Vibes', 'Brush Script MT', cursive;

  /* Metrics */
  --nav-h:        66px;
  --section-pad:  72px;
  --container:    1200px;
  --radius:       6px;
  --radius-lg:    10px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:       0.2s var(--ease);
  --t:            0.32s var(--ease);
  --t-slow:       0.6s var(--ease);

  /* Decorative hexagon "neon" texture — echoes the shop's ceiling lights */
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath d='M28 1 51.5 15v27L28 55.5 4.5 42V15z' fill='none' stroke='%23C9A227' stroke-opacity='0.14' stroke-width='1'/%3E%3C/svg%3E");
}

@media (min-width: 768px)  { :root { --nav-h: 72px; --section-pad: 96px; } }
@media (min-width: 1024px) { :root { --section-pad: 112px; } }

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

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

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

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

/* Anchor targets clear the fixed navbar */
section[id], footer[id] { scroll-margin-top: var(--nav-h); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   2. UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

.section { padding-block: var(--section-pad); }
.section--alt { background: var(--bg-secondary); }

.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; }
@media (min-width: 768px) { .section-head { margin-bottom: 56px; } }

/* Eyebrow label with a red tick — the mockup's signature small-caps line */
.eyebrow {
  /* flex (block-level) + fit-content: keeps the rules tight to the text while
     still forcing the heading below onto its own line. */
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.section-head--center .eyebrow,
.cta__inner .eyebrow { margin-inline: auto; }

.section-head--center .eyebrow::after,
.cta__inner .eyebrow::after {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-title .gold {
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
}
.section-sub {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 15px;
}
.section-head--center .section-sub { margin-inline: auto; }

.underline-gold { position: relative; display: inline-block; padding-bottom: 14px; }
.underline-gold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.section-head--center .underline-gold::after { left: 50%; transform: translateX(-50%); }

/* Decorative red slash used behind hero / CTA — pure CSS, no asset */
.slash {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(180deg, var(--red), transparent);
  opacity: 0.5;
  transform: skewX(-18deg);
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  min-height: 48px;               /* comfortable tap target */
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
}
.btn__arrow { transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Primary — red gradient, the mockup's hero action */
.btn--red {
  color: #fff;
  background: linear-gradient(120deg, var(--red), var(--red-deep));
  box-shadow: 0 6px 22px rgba(230, 57, 70, 0.28);
}
.btn--red:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(230, 57, 70, 0.42);
}

/* Gold — the brand action */
.btn--gold {
  color: #0A0A0A;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.34);
}

/* Outlines */
.btn--outline {
  color: var(--gold);
  border-color: var(--gold-line);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--sm    { padding: 10px 18px; min-height: 42px; font-size: 12.5px; }
.btn--lg    { padding: 17px 38px; min-height: 56px; font-size: 16px; }
.btn--block { width: 100%; }

/* ==========================================================================
   4. NAVBAR & MOBILE MENU
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-hairline);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.navbar.is-scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: var(--gold-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 38px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-script {
  font-family: var(--font-script);
  font-size: 21px;
  line-height: 1.15;
  color: var(--gold);
}
.nav__logo-tag {
  font-size: 7.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav__links { display: none; }
.nav__cta   { display: none; }

@media (min-width: 1024px) {
  .nav__logo img { height: 44px; }
  .nav__logo-script { font-size: 24px; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .nav__links a {
    position: relative;
    padding-block: 6px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--t-fast);
  }
  .nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transition: width var(--t);
  }
  .nav__links a:hover,
  .nav__links a.is-active { color: #fff; }
  .nav__links a:hover::after,
  .nav__links a.is-active::after { width: 100%; }
  .nav__cta { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-right: -10px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast), background var(--t);
}
.hamburger[aria-expanded="true"] span { background: var(--gold); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 28px;
  background: rgba(10, 10, 10, 0.985);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-line);
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a:not(.btn) {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 15px 2px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-menu a:not(.btn) span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-faint);
}
.mobile-menu a:not(.btn):hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .btn { margin-top: 20px; }
.mobile-menu__call {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.mobile-menu__call a { color: var(--gold); }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

body.is-locked { overflow: hidden; }

/* ==========================================================================
   5a. HERO
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 28px);
  padding-bottom: 72px;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media picture { display: block; height: 100%; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Legibility scrim — heavier on mobile where text sits over the photo */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  /* One scrim on phones: stacking a second (horizontal) one buried the subject. */
  background: linear-gradient(180deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.46) 34%,
    rgba(10,10,10,0.80) 62%,
    rgba(10,10,10,0.95) 100%);
}
@media (min-width: 900px) {
  .hero__media img { object-position: center; }
  .hero__media::after {
    background: linear-gradient(100deg,
      rgba(10,10,10,0.90) 0%,
      rgba(10,10,10,0.68) 34%,
      rgba(10,10,10,0.26) 64%,
      rgba(10,10,10,0.04) 100%);
  }
}

.hero__hex {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hex);
  opacity: 0.5;
  mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
  pointer-events: none;
}

/* Sobre la foto de cabecera los diagonales deben sugerir, no competir. */
.hero .slash--1 { top: -10%; right: 17%; width: 18px; height: 130%; opacity: 0.20; }
.hero .slash--2 { top: -10%; right: 12%; width: 6px;  height: 130%; opacity: 0.12; }

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 660px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 13px;
  background: linear-gradient(120deg, var(--red), var(--red-deep));
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.78); }
}

/* Red text over a photo can't reach 4.5:1 at this size, so the colour moves to
   the tick and the words stay white. Same energy, readable on every background. */
.hero__kicker {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.hero__kicker::before {
  content: '';
  flex-shrink: 0;
  width: 26px;
  height: 2px;
  background: var(--red);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 13vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.65);
}
.hero__title .gold {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 42%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__sub {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.62;
}
.hero__sub strong { display: block; color: #fff; font-weight: 600; }
.hero__sub em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  color: var(--text-faint);
  font-size: 14.5px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero__ctas .btn { flex: 1 1 240px; }
@media (min-width: 560px) { .hero__ctas .btn { flex: 0 0 auto; } }

/* Trust chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.hero__chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.hero__chip svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; }

/* Floating address card (desktop only, mirrors the mockup) */
.hero__address {
  display: none;
  position: absolute;
  right: 0;
  bottom: 14%;
  z-index: 2;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  text-align: right;
}
.hero__address dt {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__address dd {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1100px) { .hero__address { display: block; } }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { opacity: 0.25; transform: scaleY(0.4); transform-origin: top; }
  50%  { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
  100% { opacity: 0.25; transform: scaleY(0.4); transform-origin: bottom; }
}
@media (min-width: 768px) and (min-height: 700px) { .hero__scroll { display: flex; } }

/* ==========================================================================
   5b. SERVICES STRIP (marquee)
   ========================================================================== */
.strip {
  position: relative;
  padding-block: 18px;
  background: var(--bg-secondary);
  border-block: 1px solid var(--gold-line);
  overflow: hidden;
}
.strip::before, .strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0;  background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.strip::after  { right: 0; background: linear-gradient(270deg, var(--bg-secondary), transparent); }

.strip__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.strip__group { display: flex; align-items: center; }

.strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 26px;
}
.strip__item svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; }
.strip__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}
.strip__label span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}
.strip__sep {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--red);
  transform: rotate(45deg);
}

/* ==========================================================================
   5c. SERVICE CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;                 /* la foto va a sangre; el texto lo padea .card__body */
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold) 60%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--gold-hairline);
}
.card:hover::before,
.card:focus-within::before { transform: scaleX(1); }

.card--featured {
  border-color: var(--gold-line);
  background: linear-gradient(180deg, rgba(201,162,39,0.07), var(--bg-card) 55%);
}
.card--featured::before { transform: scaleX(1); }

.card__flag {
  align-self: flex-start;
  padding: 5px 11px;
  background: linear-gradient(120deg, var(--red), var(--red-deep));
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Foto de servicio (3:2) ---- */
.card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-elevated);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card__media img { transform: scale(1.05); }
/* funde la base de la foto con la tarjeta para que no corte en seco */
.card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  padding: 4px 24px 28px;
}

.card__icon {
  position: absolute;
  left: 20px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  transition: background var(--t), transform var(--t);
}
.card__icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.card:hover .card__icon { background: rgba(201, 162, 39, 0.28); transform: rotate(-4deg); }

.card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.card__title span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.card__desc {
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.card__desc em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--text-faint);
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.card__price small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-faint);
}

/* ---- Full price list ---- */
.menu {
  margin-top: 48px;
  padding: 32px 22px;
  background: var(--bg-card);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) { .menu { padding: 40px 40px 34px; } }

.menu__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu__title span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.menu__note {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.menu__list { display: grid; grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .menu__list { grid-template-columns: 1fr 1fr; column-gap: 44px; }
}

.menu__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.menu__name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}
.menu__name em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-faint);
}
.menu__dur {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  white-space: nowrap;
}
.menu__cost {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu__foot {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.menu__foot a { color: var(--gold); }
.menu__foot a:hover { color: var(--gold-light); }


/* ---- Booking (widget de Booksy embebido) ---- */
.booking { max-width: 860px; margin-inline: auto; }


.booking__with {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 11px 16px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}
.booking__with b { color: var(--gold); font-weight: 600; }
.booking__with button {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.booking__with button:hover { color: var(--gold-light); border-color: var(--gold-light); }

.booking__frame {
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

/* El script inyecta el iframe con width="770" fijo: sin esto se desborda en móvil. */
.booking__frame iframe,
.booksy-widget-container iframe {
  width: 100% !important;
  max-width: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--radius);
  display: block;
  background: #fff;
}
.booksy-widget-container { width: 100%; }


/* ---- Captura de rescate (quien no quiere crear cuenta en Booksy) ---- */
.rescue { margin-top: 18px; }

.rescue__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  transition: border-color var(--t), background var(--t);
}
.rescue__toggle:hover { border-color: var(--gold-line); background: var(--bg-elevated); }
.rescue__toggle em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 12.5px;
  color: var(--text-faint);
}
.rescue__toggle i {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 19px;
  line-height: 1;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: transform var(--t);
}
.rescue__toggle[aria-expanded="true"] i { transform: rotate(45deg); }

.rescue__form {
  margin-top: 12px;
  padding: 22px 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
}
.rescue__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
@media (min-width: 640px) { .rescue__grid { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  min-height: 46px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;                 /* <16px dispara zoom automático en iOS */
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #000;
}
.field input[aria-invalid="true"] { border-color: var(--red); }

/* honeypot: fuera de pantalla, no display:none — algunos bots lo detectan */
.rescue__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rescue__msg {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}
.rescue__msg[data-state="ok"]  { color: #6BCB77; }
.rescue__msg[data-state="err"] { color: var(--red); }

.rescue__legal {
  margin-top: 10px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-faint);
}

.booking__fallback {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
}
.booking__fallback a { color: var(--gold); }
.booking__fallback a:hover { color: var(--gold-light); }


/* ---- Variantes de servicio dentro de la tarjeta ---- */
.card__variants {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin: 2px 0 4px;
}
.card__variants li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  column-gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.card__variants li:last-child { border-bottom: 0; padding-bottom: 0; }

.v__name {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}
.v__name em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--text-faint);
}
.v__dur {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  white-space: nowrap;
}
.v__cost {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Panel de marca mientras no llega la foto definitiva (no una imagen rota) */
.card__media--pending {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,162,39,0.10), transparent 65%),
    var(--hex), var(--bg-elevated);
}
.card__pending svg {
  width: 74px;
  height: 74px;
  stroke: var(--gold);
  opacity: 0.32;
}
.card__media--pending::after { display: none; }

/* ==========================================================================
   6. BARBERS
   ========================================================================== */
.barbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 380px;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .barbers-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
}
@media (min-width: 1000px) {
  .barbers-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}
@media (min-width: 1180px) {
  .barbers-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

/* Shop-wide Booksy score (per-barber scores are not published) */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 16px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
}
.rating-badge__stars { color: var(--gold); letter-spacing: 0.1em; font-size: 13px; }
.rating-badge strong { color: #fff; font-weight: 600; }

/* Placeholder avatar for staff with no photo on Booksy yet */
.barber__photo--initial {
  display: grid;
  place-items: center;
  background: conic-gradient(from 0deg, var(--gold), var(--red), var(--gold-light), var(--gold));
}
.barber__photo--initial span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--bg-card);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.barber {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 18px 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.barber:hover,
.barber:focus-within {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
}

.barber__photo {
  position: relative;
  width: 124px;
  height: 124px;
  padding: 4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--red), var(--gold-light), var(--gold));
  transition: transform var(--t);
}
.barber:hover .barber__photo { transform: scale(1.04); }
.barber__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.barber__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.barber__role {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.barber__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-faint);
}
.barber__stars { color: var(--gold); letter-spacing: 0.14em; font-size: 13px; }
.barber__book {
  width: 100%;
  margin-top: 6px;
  padding-inline: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-wrap: balance;
}

/* ==========================================================================
   7. GALLERY
   ========================================================================== */
.gallery {
  columns: 2;
  column-gap: 10px;
}
@media (min-width: 700px)  { .gallery { columns: 3; column-gap: 12px; } }
@media (min-width: 1000px) { .gallery { columns: 4; column-gap: 14px; } }

.gallery__item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
@media (min-width: 700px) { .gallery__item { margin-bottom: 12px; } }

.gallery__item img {
  width: 100%;
  transition: transform var(--t-slow), filter var(--t);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(201, 162, 39, 0.16), rgba(10, 10, 10, 0.7));
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }

.gallery__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
}
.gallery__item:hover .gallery__tag,
.gallery__item:focus-visible .gallery__tag { opacity: 1; transform: translateY(0); }

.gallery__cta { margin-top: 34px; text-align: center; }

/* ==========================================================================
   8. ABOUT
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 1fr 1.05fr; gap: 60px; }
}

.about__media { position: relative; }
.about__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--radius-lg);
}
@media (min-width: 900px) { .about__media img { height: 540px; } }
.about__media::before {
  content: '';
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 2px solid var(--gold-line);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 899px) { .about__media::before { display: none; } }

.about__badge {
  position: absolute;
  right: -8px;
  bottom: 22px;
  padding: 14px 18px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  text-align: center;
}
.about__badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.about__badge span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__text { display: flex; flex-direction: column; gap: 18px; }
.about__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 50px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}
.about__title .gold {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
}
.about__bio { font-size: 15px; line-height: 1.78; color: var(--text-muted); }
.about__bio--es { color: var(--text-faint); font-size: 14.5px; }

.about__sign { margin-top: 4px; }
.about__sign b {
  display: block;
  font-family: var(--font-script);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--gold);
}
.about__sign span {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.about__text .btn { align-self: flex-start; }

/* ==========================================================================
   9. BOOKING CTA
   ========================================================================== */
.cta {
  position: relative;
  padding-block: 90px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .cta { padding-block: 120px; } }

.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.95) 70%);
}
.cta__hex {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--hex);
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, transparent 30%, #000 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, #000 85%);
  pointer-events: none;
}
.cta .slash--1 { top: -20%; left: 8%;  width: 22px; height: 140%; opacity: 0.3; }
.cta .slash--2 { top: -20%; right: 8%; width: 22px; height: 140%; opacity: 0.3; }

.cta__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}
.cta__title .gold {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
}
.cta__sub { margin: 16px auto 30px; max-width: 46ch; color: var(--text-muted); font-size: 15px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta__note { margin-top: 22px; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

/* ==========================================================================
   10. CONTACT / FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--gold-hairline);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
@media (min-width: 700px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 48px; } }

.footer__logo { height: 104px; width: auto; margin-bottom: 18px; }
.footer__brand p { max-width: 34ch; font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
.footer__brand p + p { margin-top: 8px; color: var(--text-faint); font-size: 12.5px; }

.footer__title {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.info { display: flex; flex-direction: column; gap: 14px; }
.info__row { display: flex; gap: 11px; align-items: flex-start; }
.info__row svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info__row div { font-size: 13.5px; line-height: 1.55; color: var(--text-muted); }
.info__row a { transition: color var(--t-fast); }
.info__row a:hover { color: var(--gold); }
.info__row b { display: block; color: #fff; font-weight: 500; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.social {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--t), border-color var(--t), background var(--t), transform var(--t);
}
.social svg { width: 17px; height: 17px; }
.social:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
/* Pending real URLs — kept visible but inert (see README TODOs) */
.social[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.social[aria-disabled="true"]:hover { transform: none; }

.footer__shot {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map {
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.86);
}
.map__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--t-fast);
}
.map__link:hover { color: var(--gold-light); }


/* ---- Crédito de agencia ---- */
.footer__credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
}
.footer__credit span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer__credit a {
  display: inline-flex;
  opacity: 0.72;
  transition: opacity var(--t), transform var(--t);
}
.footer__credit a:hover,
.footer__credit a:focus-visible { opacity: 1; transform: translateY(-1px); }
.footer__credit img {
  width: auto;
  height: 26px;          /* el PNG va a 2x para pantallas retina */
  display: block;
}
@media (min-width: 700px) { .footer__credit img { height: 29px; } }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-block: 22px;
  text-align: center;
}
@media (min-width: 700px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__bottom p { font-size: 12px; color: var(--text-faint); letter-spacing: 0.03em; }
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   11. MOTION & ACCESSIBILITY
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }

/* Hero entrance (runs on load, not on scroll) */
.hero__content > * {
  opacity: 0;
  animation: heroIn 0.85s var(--ease) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: 0.10s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.26s; }
.hero__content > *:nth-child(4) { animation-delay: 0.34s; }
.hero__content > *:nth-child(5) { animation-delay: 0.42s; }
.hero__content > *:nth-child(6) { animation-delay: 0.50s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__content > * { opacity: 1; animation: none; }
  .strip__track { animation: none; }
}
