/*
  DESIGN DECISIONS — Mane Barbers, lead-4
  1. HERO ARCHETYPE: 0 — CINEMATIC FULL-BLEED (lead_id 4 % 4 = 0)
     Dark hero, 3 animated gradient mesh blobs (20-30s loops),
     "MANE BARBERS" in massive Bricolage Grotesque with clip-reveal,
     floating trust chips (5.0★, 182 reviews, Crawley).
  2. SIGNATURE ELEMENT: Barber-pole animated diagonal-stripe divider
     threads through every section break.
  3. PALETTE: Barber table, shifted to warm editorial gold-chrome.
     Base #0A0805 | Gold accent #D4A82A | Steel #7A9EC8
     Not the standard blue/navy from the previous build.
*/

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
  --accent:        #D4A82A;
  --accent-b:      #7A9EC8;
  --accent-light:  #EAC044;
  --bg:            #0A0805;
  --bg-card:       #131008;
  --bg-card2:      #1C1810;
  --border:        rgba(212,168,42,0.14);
  --text:          #F0EAD8;
  --muted:         #7A7060;
  --gradient-text: linear-gradient(135deg,#D4A82A 0%,#F0CE60 45%,#C09428 100%);
  --radius:        4px;
  --font-display:  'Bricolage Grotesque';
  --font-body:     'DM Sans';
}

/* ── Body ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body), sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 1001;
  transition: width 0.08s linear;
}

/* ── Gradient text ── */
.grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradShift 5s ease-in-out infinite;
}
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── Glass Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 0.8rem 2.5rem; }

.nav-logo {
  font-family: var(--font-display), sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #000;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,42,0.35);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(24px);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .nav-links.open a { font-size: 1rem; }
}

/* ── HERO (Cinematic full-bleed) ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Gradient mesh blobs */
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,168,42,0.22) 0%, transparent 70%);
  top: -120px; left: -120px;
  animation: blob1 28s ease-in-out infinite;
}
.blob-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(122,158,200,0.18) 0%, transparent 70%);
  bottom: -60px; right: 0;
  animation: blob2 34s ease-in-out infinite;
}
.blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,168,42,0.10) 0%, transparent 70%);
  top: 35%; left: 38%;
  animation: blob3 22s ease-in-out infinite;
}
@keyframes blob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(90px,70px) scale(1.08); }
  66%      { transform: translate(-50px,90px) scale(0.96); }
}
@keyframes blob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-80px,-55px) scale(1.06); }
  70%      { transform: translate(50px,-90px) scale(1.04); }
}
@keyframes blob3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-65px,45px) scale(1.1); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
/* Clip-reveal for hero name */
.hero-name-wrap {
  overflow: hidden;
  display: block;
  margin-bottom: 0.5rem;
}
.hero-name {
  display: block;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3.8rem, 11vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  transform: translateY(110%);
  animation: nameReveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}
@keyframes nameReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.85s;
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.0s;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.15s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust chips (floating) */
.trust-chips { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.trust-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
  opacity: 0;
  animation-fill-mode: forwards;
}
.chip-1 {
  top: 22%; left: 8%;
  animation: chipAppear 0.5s ease forwards 1.4s, chipFloat1 5s ease-in-out infinite 1.9s;
}
.chip-2 {
  top: 28%; right: 7%;
  animation: chipAppear 0.5s ease forwards 1.6s, chipFloat2 6s ease-in-out infinite 2.1s;
}
.chip-3 {
  bottom: 22%; left: 12%;
  animation: chipAppear 0.5s ease forwards 1.8s, chipFloat3 5.5s ease-in-out infinite 2.3s;
}
@keyframes chipAppear {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes chipFloat1 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes chipFloat2 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
@keyframes chipFloat3 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.6s;
  z-index: 2;
}
.scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ── SIGNATURE ELEMENT: Barber-pole divider ── */
.barber-pole {
  height: 44px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.barber-pole::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(212,168,42,0.22) 0px,
    rgba(212,168,42,0.22) 10px,
    rgba(10,8,5,0.6) 10px,
    rgba(10,8,5,0.6) 20px,
    rgba(122,158,200,0.12) 20px,
    rgba(122,158,200,0.12) 30px,
    rgba(10,8,5,0.6) 30px,
    rgba(10,8,5,0.6) 40px
  );
  background-size: 56px 56px;
  animation: barberSlide 1.8s linear infinite;
}
.barber-pole::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    transparent 8%,
    transparent 92%,
    var(--bg) 100%
  );
}
@keyframes barberSlide {
  from { background-position: 0 0; }
  to   { background-position: 56px 0; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 32px rgba(212,168,42,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  position: relative;
}
.btn-secondary:hover { border-color: var(--accent); }
/* Magnetic handled by JS */

/* ── Stats strip ── */
#stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display), sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  gap: 0;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: var(--font-display), sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections shared ── */
section { padding: 7rem 1.5rem; }

.section-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* Clip-reveal heading */
.clip-wrap {
  overflow: hidden;
  display: inline-block;
}
.clip-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.clip-inner.up { transform: translateY(0); }
.section-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 500px;
}
.section-header { margin-bottom: 4rem; }

/* ── Service cards (tilt) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  /* gradient border on featured */
  border-radius: var(--radius);
  padding: 2.2rem;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.6),
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent),
    0 1px 0 rgba(255,255,255,0.04) inset;
}
.service-card.featured {
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(212,168,42,0.05));
  border-image: linear-gradient(135deg, var(--accent), transparent 70%) 1;
  border-image-slice: 1;
}
.card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%),
    rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover .card-glare { opacity: 1; }
.card-icon {
  width: 42px; height: 42px;
  color: var(--accent);
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}
.card-title {
  font-family: var(--font-display), sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.card-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.card-price {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ── About layout ── */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
.about-visual {
  position: relative;
}
.about-art {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.about-art-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 35%, rgba(212,168,42,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 75% 70%, rgba(122,158,200,0.12) 0%, transparent 55%),
    var(--bg-card2);
}
.about-art-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display), sans-serif;
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(212,168,42,0.08);
  user-select: none;
}
.about-art-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: rgba(212,168,42,0.4);
  border-style: solid;
}
.arc-tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.arc-tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.arc-bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.arc-br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--accent);
  color: #000;
  width: 106px; height: 106px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: badgeSpin 24s linear infinite;
}
.badge-num { font-family: var(--font-display), sans-serif; font-size: 2.1rem; font-weight: 800; line-height: 1; }
.badge-txt { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em; text-align: center; line-height: 1.3; }
@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
}
.about-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23D4A82A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Mini-hero (sub-pages) ── */
.mini-hero {
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.mini-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 60%, rgba(212,168,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(122,158,200,0.08) 0%, transparent 55%);
}
.mini-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--muted); opacity: 0.5; }
.mini-hero-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
}
.mini-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 480px;
  line-height: 1.75;
}

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.gallery-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-label {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  background: rgba(10,8,5,0.7);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Contact ── */
.contact-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--accent);
  color: #000;
  padding: 1.3rem 3rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-display), sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}
.phone-btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,168,42,0.4);
}
.phone-btn svg { flex-shrink: 0; }
.contact-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  width: 100%;
  text-align: left;
}
.contact-meta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.cmeta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.cmeta-val { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* ── CTA section ── */
.cta-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 2.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-logo {
  font-family: var(--font-display), sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-44px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-r { opacity: 0; transform: translateX(44px);  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.d60  { transition-delay: 0.06s; }
.d120 { transition-delay: 0.12s; }
.d180 { transition-delay: 0.18s; }
.d240 { transition-delay: 0.24s; }
.d300 { transition-delay: 0.30s; }
.d360 { transition-delay: 0.36s; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-name { transform: none !important; }
  .reveal, .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; }
  .clip-inner { transform: none !important; }
  .trust-chip { opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero-tagline, .hero-desc, .hero-btns,
  .scroll-hint { opacity: 1 !important; transform: none !important; }
}
