/* ================================================
   GC MIAMI BARBERS — style.css
   Concept: "Grind Culture" — Dark, Raw, Masculine
   Palmetto Bay, Miami · Est. 2014
   Veteran Owned & Operated
   ================================================ */

/* ── 0. RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
input { font: inherit; }

/* ── 1. TOKENS ───────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:      #0A0A0A;
  --bg-2:    #111111;
  --bg-3:    #1A1A1A;
  --bg-card: #161616;
  --bg-light: #F5F2EE;

  /* Text */
  --ink:   #F0EDE8;
  --ink-2: #888480;
  --ink-3: #444240;

  /* Accent — Red (barber pole) */
  --red:       #C41E3A;
  --red-dim:   #A01830;
  --red-glow:  rgba(196, 30, 58, 0.15);

  /* Gold — secondary premium accent */
  --gold:      #B8963E;
  --gold-dim:  #D4B06A;

  /* Utility */
  --border:   rgba(240, 237, 232, 0.08);
  --border-h: rgba(196, 30, 58, 0.40);

  /* Typography */
  --font-d:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'DM Sans', system-ui, sans-serif;
  --font-ui: 'JetBrains Mono', 'Courier New', monospace;

  /* Easing */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-o: cubic-bezier(0.0, 0.0, 0.2, 1.0);

  /* Layout */
  --max-w:  1280px;
  --nav-h:  64px;
  --radius: 4px;
}

/* ── 2. BASE ─────────────────────────────────────── */
body {
  font: 400 1rem/1.6 var(--font-b);
  color: var(--ink);
  background: var(--bg);
}

/* ── 3. TYPOGRAPHY ───────────────────────────────── */
.label {
  display: inline-block;
  font: 500 0.6875rem/1 var(--font-ui);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.section-title {
  font: 300 clamp(2.5rem, 5vw, 4rem)/1.05 var(--font-d);
  letter-spacing: -0.02em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── 4. ANIMATIONS ───────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-o), transform 0.7s var(--ease-o);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease-o);
  transition-delay: var(--delay, 0ms);
}
.reveal-fade.visible { opacity: 1; }

/* ── 5. GRAIN OVERLAY ────────────────────────────── */
#grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.035;
}

/* ── 6. CUSTOM CURSOR ────────────────────────────── */
#cursor {
  position: fixed; z-index: 10000; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  will-change: left, top;
}
#cursor.hovered { width: 36px; height: 36px; opacity: 0.5; }
@media (pointer: coarse) { #cursor { display: none; } }

/* ── 7. BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 2px;
  font: 500 0.8125rem/1 var(--font-ui); letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn--primary {
  background: var(--red); color: #fff; border: 1px solid var(--red);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(240, 237, 232, 0.25);
}
@media (hover: hover) {
  .btn--primary:hover { background: var(--red-dim); border-color: var(--red-dim); transform: translateY(-1px); }
  .btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
}

/* ── 8. NAV ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
              transform 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav.hidden { transform: translateY(-100%); }

.nav__inner {
  width: 100%; max-width: var(--max-w); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; gap: 0.1rem; }
.nav__logo-name {
  font: 600 1.0625rem/1 var(--font-d); letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink);
}
.nav__logo-sub {
  font: 400 0.5rem/1 var(--font-ui); letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-2);
}
.nav__links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav__link {
  font: 500 0.6875rem/1 var(--font-ui); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
@media (hover: hover) {
  .nav__link:hover { color: var(--ink); }
  .nav__link:hover::after { transform: scaleX(1); }
}
.btn--nav {
  padding: 0.625rem 1.25rem;
  font-size: 0.625rem; letter-spacing: 0.15em;
}
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0; cursor: pointer;
}
.nav__burger span {
  display: block; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ── 9. MOBILE MENU ──────────────────────────────── */
.nav__overlay {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.nav__overlay.open { opacity: 1; pointer-events: all; }
.nav__overlay .nav__link {
  font-size: 1rem; letter-spacing: 0.15em; color: var(--ink);
}
.nav__overlay .btn--primary { margin-top: 1rem; }

/* ── 10. HERO ────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    108deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.70) 40%,
    rgba(10,10,10,0.30) 70%,
    rgba(10,10,10,0.10) 100%
  );
}
.hero__overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%; z-index: 2;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}
.hero__layout {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero__content { max-width: clamp(320px, 58%, 680px); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: 500 0.625rem/1 var(--font-ui); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.hero__title {
  font: 200 clamp(3.2rem, 8vw, 6.5rem)/0.92 var(--font-d);
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1.5rem;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-inner {
  display: block;
  transform: translateY(110%); opacity: 0;
  transition: transform 0.85s var(--ease-o), opacity 0.85s var(--ease-o);
}
.hero__title-line:nth-child(1) .hero__title-inner { transition-delay: 50ms; }
.hero__title-line:nth-child(2) .hero__title-inner { transition-delay: 180ms; }
.hero__title-line:nth-child(3) .hero__title-inner { transition-delay: 310ms; }
.hero__title-line.visible .hero__title-inner { transform: translateY(0); opacity: 1; }
.hero__title em { font-style: italic; color: var(--gold); }

.hero__sub {
  font: 400 1.0625rem/1.7 var(--font-b);
  color: rgba(240,237,232,0.60); max-width: 44ch; margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero__trust > span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font: 400 0.8125rem/1 var(--font-b); color: rgba(240,237,232,0.45);
}
.hero__trust-icon { color: var(--gold); font-size: 0.75rem; }

.hero__scroll {
  position: absolute; bottom: 2.5rem; right: clamp(1.5rem, 5vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font: 400 0.5625rem/1 var(--font-ui); letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(240,237,232,0.25); z-index: 3;
  animation: fade-in 0.6s var(--ease-o) 1.4s both;
}
.hero__scroll-track {
  width: 1px; height: 40px; background: rgba(240,237,232,0.12); position: relative; overflow: hidden;
}
.hero__scroll-thumb {
  position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--red);
  animation: scroll-thumb 2s var(--ease) infinite;
}
@keyframes scroll-thumb { 0% { top: -50%; } 100% { top: 100%; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ── 11. TICKER ──────────────────────────────────── */
.ticker {
  background: var(--red); overflow: hidden;
  padding-block: 0.75rem; display: flex;
}
.ticker__track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker__item {
  font: 600 0.625rem/1 var(--font-ui); letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff;
  padding-inline: 2.5rem;
}
.ticker__item::before { content: '✦'; margin-right: 2.5rem; opacity: 0.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 12. HOW IT WORKS ────────────────────────────── */
.how {
  background: var(--bg-2);
  padding-block: clamp(5rem, 10vw, 9rem);
}
.how__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.how__header { margin-bottom: 4rem; }
.how__steps {
  display: flex; gap: 0; position: relative;
}
.how__step {
  flex: 1; padding: 2.5rem 2rem 2.5rem 0;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
  position: relative;
}
.how__step:first-child { border-left: none; padding-left: 0; }
.how__num {
  font: 300 3.5rem/1 var(--font-d); color: var(--red); opacity: 0.25;
  margin-bottom: 1rem; letter-spacing: -0.04em;
}
.how__step-title {
  font: 600 1.0625rem/1.2 var(--font-b); color: var(--ink);
  margin-bottom: 0.75rem;
}
.how__step-desc { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.65; }

/* Stats */
.stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.stat {
  flex: 1; padding: 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__num {
  font: 300 clamp(2.5rem, 5vw, 3.5rem)/1 var(--font-d);
  color: var(--ink); letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.stat__num span { color: var(--red); }
.stat__label {
  font: 400 0.75rem/1 var(--font-ui); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ── 13. SERVICES ────────────────────────────────── */
.services { background: var(--bg); padding-block: clamp(5rem, 10vw, 9rem); }
.services__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.services__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.svc-card {
  background: var(--bg-card);
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: default;
}
.svc-card:first-child {
  grid-column: span 2; aspect-ratio: auto; min-height: 480px;
}
.svc-card__img {
  position: absolute; inset: 0;
  transition: transform 0.7s var(--ease);
}
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.30) 55%, transparent 100%);
}
.svc-card__body {
  position: relative; z-index: 1; padding: 1.75rem;
}
.svc-card__price {
  font: 400 0.6875rem/1 var(--font-ui); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
}
.svc-card__title {
  font: 300 1.75rem/1.1 var(--font-d); color: #fff; margin-bottom: 0.5rem;
}
.svc-card:first-child .svc-card__title { font-size: clamp(2rem, 4vw, 3rem); }
.svc-card__desc { font: 400 0.875rem/1.55 var(--font-b); color: rgba(240,237,232,0.55); }
.svc-card__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem;
  font: 500 0.625rem/1 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red);
  transition: gap 0.2s;
}
@media (hover: hover) {
  .svc-card:hover .svc-card__img { transform: scale(1.04); }
  .svc-card:hover .svc-card__cta { gap: 0.75rem; }
}
.services__note {
  margin-top: 1.5rem;
  font: 400 0.8125rem/1.6 var(--font-b); color: var(--ink-3);
  text-align: right;
}

/* ── 14. GALLERY ─────────────────────────────────── */
.gallery { background: var(--bg-2); padding-block: clamp(5rem, 10vw, 9rem); }
.gallery__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.gallery__header { margin-bottom: 2.5rem; }
.gallery__filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.gallery__filter {
  padding: 0.5rem 1.25rem;
  font: 500 0.625rem/1 var(--font-ui); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-2); border: 1px solid var(--border);
  border-radius: 2px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.gallery__filter.active, .gallery__filter:hover {
  color: var(--ink); border-color: var(--red); background: rgba(196,30,58,0.08);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 4px;
}
.gallery__item {
  overflow: hidden; background: var(--bg-card); cursor: pointer;
  transition: opacity 0.3s;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
@media (hover: hover) { .gallery__item:hover img { transform: scale(1.06); } }
.gallery__item--wide { grid-column: span 2; }
.gallery__item[data-filter] { opacity: 1; }

/* Before/After */
.ba { margin-top: 3rem; }
.ba__header { margin-bottom: 1.5rem; }
.ba__title { font: 300 2rem/1.1 var(--font-d); color: var(--ink); }
.ba__sub { font: 400 0.875rem/1 var(--font-b); color: var(--ink-3); margin-top: 0.35rem; }
.ba__container {
  position: relative; height: 400px; overflow: hidden;
  border-radius: var(--radius); cursor: ew-resize; user-select: none;
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__img--after { clip-path: inset(0 50% 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 2;
  width: 2px; background: #fff; transform: translateX(-50%);
}
.ba__handle::before, .ba__handle::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; top: 50%; margin-top: -20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.ba__label {
  position: absolute; bottom: 1rem; z-index: 3;
  font: 600 0.5625rem/1 var(--font-ui); letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(10,10,10,0.75); color: #fff; padding: 0.35rem 0.75rem; border-radius: 2px;
}
.ba__label--before { left: 1rem; }
.ba__label--after  { right: 1rem; }

/* ── 15. TEAM ────────────────────────────────────── */
.team { background: var(--bg); padding-block: clamp(5rem, 10vw, 9rem); }
.team__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.team__header { margin-bottom: 3rem; }
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
}
.team-card { background: var(--bg-card); overflow: hidden; }
.team-card__photo { aspect-ratio: 3/4; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
@media (hover: hover) { .team-card:hover .team-card__photo img { transform: scale(1.04); } }
.team-card__body { padding: 1.5rem; }
.team-card__name { font: 300 1.5rem/1.1 var(--font-d); color: var(--ink); margin-bottom: 0.25rem; }
.team-card__role {
  font: 400 0.625rem/1 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
}
.team-card__bio { font: 400 0.875rem/1.6 var(--font-b); color: var(--ink-2); }

/* ── 16. PRICING ─────────────────────────────────── */
.pricing { background: var(--bg-2); padding-block: clamp(5rem, 10vw, 9rem); }
.pricing__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.pricing__header { margin-bottom: 3rem; }
.pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
.price-card { background: var(--bg-card); padding: 2.5rem; position: relative; }
.price-card--featured { background: var(--bg-3); }
.price-card__badge {
  display: inline-block; margin-bottom: 1rem;
  font: 600 0.5625rem/1 var(--font-ui); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red);
  padding: 0.3rem 0.75rem; border-radius: 2px;
}
.price-card__name { font: 300 2rem/1.1 var(--font-d); color: var(--ink); margin-bottom: 0.5rem; }
.price-card__desc { font: 400 0.9rem/1.6 var(--font-b); color: var(--ink-2); margin-bottom: 2rem; }
.price-list { display: flex; flex-direction: column; gap: 0; }
.price-item {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 0.875rem; border-bottom: 1px solid var(--border);
}
.price-item:last-child { border-bottom: none; }
.price-item__name { font: 400 0.9375rem/1 var(--font-b); color: var(--ink); }
.price-item__price { font: 500 0.875rem/1 var(--font-ui); color: var(--gold); letter-spacing: 0.05em; }
.pricing__note {
  margin-top: 1.5rem; font: 400 0.8125rem/1.6 var(--font-b);
  color: var(--ink-3); text-align: center;
}

/* ── 17. REVIEWS ─────────────────────────────────── */
.reviews { background: var(--bg); padding-block: clamp(5rem, 10vw, 9rem); }
.reviews__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.reviews__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}
.reviews__rating {
  display: flex; align-items: center; gap: 0.75rem;
  font: 300 3rem/1 var(--font-d); color: var(--ink);
}
.reviews__stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.reviews__count { font: 400 0.8125rem/1 var(--font-b); color: var(--ink-3); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.review-card { background: var(--bg-card); padding: 2rem; }
.review-card__stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-card__text {
  font: 400 italic 1rem/1.7 var(--font-d); color: var(--ink);
  margin-bottom: 1.25rem;
}
.review-card__author {
  font: 600 0.625rem/1 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-3);
}
.review-card__source { color: var(--red); font-size: 0.5625rem; margin-top: 0.25rem; }

/* ── 18. FAQ ─────────────────────────────────────── */
.faq { background: var(--bg-2); padding-block: clamp(5rem, 10vw, 9rem); }
.faq__inner {
  max-width: 800px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.faq__header { margin-bottom: 3rem; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 1.25rem; cursor: pointer; gap: 1rem;
  font: 500 1.0625rem/1.4 var(--font-b); color: var(--ink);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--red); }
.faq__icon {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--ink-2);
  transition: transform 0.3s var(--ease), border-color 0.2s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); border-color: var(--red); color: var(--red); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s;
}
.faq__item.open .faq__a { max-height: 400px; padding-bottom: 1.25rem; }
.faq__a p { font: 400 0.9375rem/1.7 var(--font-b); color: var(--ink-2); }

/* ── 19. CTA ─────────────────────────────────────── */
.cta {
  background: var(--bg-3);
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: 'GC';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font: 200 30vw/1 var(--font-d); color: var(--red); opacity: 0.03;
  pointer-events: none; white-space: nowrap; letter-spacing: -0.05em;
}
.cta__inner {
  position: relative; z-index: 1;
  max-width: 700px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.cta__title {
  font: 200 clamp(2.5rem, 6vw, 5rem)/1.05 var(--font-d);
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1rem;
}
.cta__title em { font-style: italic; color: var(--red); }
.cta__sub {
  font: 400 1.0625rem/1.7 var(--font-b); color: var(--ink-2);
  max-width: 42ch; margin-inline: auto; margin-bottom: 2.5rem;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── 20. LOCATION ────────────────────────────────── */
.location { background: var(--bg); padding-block: clamp(5rem, 10vw, 9rem); }
.location__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.location__header { margin-bottom: 2rem; }
.location__info { display: flex; flex-direction: column; gap: 1.5rem; }
.location__item { display: flex; gap: 1rem; align-items: flex-start; }
.location__item-icon {
  width: 2rem; height: 2rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: 0.875rem; color: var(--red);
}
.location__item-label {
  font: 600 0.5625rem/1 var(--font-ui); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.35rem;
}
.location__item-val { font: 400 0.9375rem/1.6 var(--font-b); color: var(--ink); }
.location__hours { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1.5rem; }
.location__hours-day { font: 400 0.875rem/1.6 var(--font-b); color: var(--ink-2); }
.location__hours-time { font: 500 0.875rem/1.6 var(--font-b); color: var(--ink); }
.location__hours-closed { color: var(--red); }
.location__map {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.location__map iframe { width: 100%; height: 100%; border: none; }

/* ── 21. FOOTER ──────────────────────────────────── */
footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}
.footer__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer__brand {
  font: 600 1rem/1 var(--font-d); letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink);
}
.footer__sub {
  font: 400 0.625rem/1.5 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 0.25rem;
}
.footer__links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__link {
  font: 400 0.625rem/1 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-3);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--red); }
.footer__copy {
  font: 400 0.6875rem/1 var(--font-b); color: var(--ink-3);
}

/* ── 22. MOBILE STICKY BAR ───────────────────────── */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.875rem 1.25rem;
  gap: 0.75rem;
}
.mobile-bar.visible { display: flex; }
.mobile-bar .btn { flex: 1; justify-content: center; padding: 0.875rem 1rem; font-size: 0.5625rem; }

/* ── 23. CHAT WIDGET ─────────────────────────────── */
.chat-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: 0 4px 20px rgba(196,30,58,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (hover: hover) { .chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(196,30,58,0.5); } }

.chat-bubble {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 60;
  width: 340px; max-height: 480px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 6px; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
.chat-bubble.open { opacity: 1; transform: none; pointer-events: all; }
.chat-head {
  background: var(--red); padding: 1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-head__title {
  font: 600 0.75rem/1 var(--font-ui); letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
}
.chat-head__sub { font: 400 0.625rem/1 var(--font-b); color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.chat-close { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1; transition: color 0.2s; }
.chat-close:hover { color: #fff; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.chat-msg { max-width: 84%; padding: 0.625rem 0.875rem; border-radius: 4px; font-size: 0.875rem; line-height: 1.5; }
.chat-msg--bot { background: var(--bg-3); color: var(--ink); align-self: flex-start; }
.chat-msg--user { background: var(--red); color: #fff; align-self: flex-end; }
.chat-msg--typing { display: flex; gap: 4px; align-items: center; padding: 0.75rem 1rem; }
.chat-msg--typing span {
  width: 6px; height: 6px; background: var(--ink-2); border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chat-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot { 0%,80%,100% { transform: scale(0.7); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }
.chat-footer {
  padding: 0.75rem; border-top: 1px solid var(--border);
  display: flex; gap: 0.5rem;
}
.chat-input {
  flex: 1; padding: 0.625rem 0.875rem;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 3px; color: var(--ink); font-size: 0.875rem;
  outline: none; transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--red); }
.chat-send {
  padding: 0.625rem 1rem; background: var(--red); color: #fff;
  border-radius: 3px; font-size: 0.875rem;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--red-dim); }

/* ── 24. RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:first-child { grid-column: span 2; }
  .location__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .location__map { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero { align-items: flex-end; }
  .hero__content { max-width: 100%; }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10,10,10,0.50) 0%,
      rgba(10,10,10,0.70) 45%,
      rgba(10,10,10,0.92) 80%,
      rgba(10,10,10,0.98) 100%
    );
  }
  .hero__scroll { display: none; }

  .how__steps { flex-direction: column; }
  .how__step { border-left: none; padding-left: 0; border-top: 1px solid var(--border); }
  .how__step:first-child { border-top: none; }
  .stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .services__grid { grid-template-columns: 1fr; }
  .svc-card:first-child { grid-column: span 1; min-height: 340px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 1; }

  .team__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  .pricing__grid { grid-template-columns: 1fr; }

  .reviews__grid { grid-template-columns: 1fr; }

  .services__header { flex-direction: column; align-items: flex-start; }
  .reviews__header { flex-direction: column; align-items: flex-start; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .chat-bubble { width: calc(100vw - 2rem); right: 1rem; bottom: 5rem; }
  .mobile-bar { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-up, .reveal-fade { opacity: 1; transform: none; }
  .hero__title-line .hero__title-inner { transform: none; opacity: 1; transition: none; }
}
