/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --color-bg:        #0D0D0D;
  --color-bg-2:      #111118;
  --color-surface:   #1A1A24;
  --color-border:    rgba(255,255,255,0.08);
  --color-blue:      #1B4FD8;
  --color-blue-light:#2E64F5;
  --color-white:     #FFFFFF;
  --color-muted:     #6B7280;
  --color-muted-2:   #9CA3AF;

  --font-display:    'Bebas Neue', sans-serif;
  --font-condensed:  'Barlow Condensed', sans-serif;
  --font-body:       'Inter', sans-serif;

  --fs-hero:         clamp(5rem, 14vw, 14rem);
  --fs-h2:           clamp(2.8rem, 6vw, 6rem);
  --fs-h3:           clamp(1.4rem, 2.5vw, 2rem);
  --fs-body:         clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-label:        clamp(0.7rem, 1vw, 0.85rem);
  --fs-price:        clamp(1.6rem, 2.5vw, 2.2rem);

  --space-xs:        clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:        clamp(0.75rem, 1.5vw, 1.25rem);
  --space-md:        clamp(1.5rem, 3vw, 2.5rem);
  --space-lg:        clamp(3rem, 6vw, 5rem);
  --space-xl:        clamp(5rem, 10vw, 9rem);
  --space-section:   clamp(6rem, 12vw, 12rem);

  --max-width:       1380px;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;

  --ease-expo:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:      cubic-bezier(0.76, 0, 0.24, 1);
  --dur-fast:        0.35s;
  --dur-base:        0.7s;
  --dur-slow:        1.2s;

  --nav-h:           72px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: none; background: none; border: none; font: inherit; }
em { font-style: italic; color: var(--color-blue); }

/* ─── Custom Cursor ──────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-expo), height 0.3s var(--ease-expo);
}
#cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(27, 79, 216, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), opacity 0.3s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 60px; height: 60px; mix-blend-mode: difference; background: var(--color-white); }
body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower { opacity: 0; }

/* ─── Loader ─────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  animation: loader-exit 0.7s cubic-bezier(0.76, 0, 0.24, 1) 2s forwards;
  pointer-events: none;
}
@keyframes loader-exit {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; visibility: hidden; }
}
.loader__logo {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-blue);
  animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  background: var(--color-blue);
  animation: loader-fill 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes loader-fill { from { width: 0% } to { width: 100% } }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section { padding: var(--space-section) 0; }
.section-header { margin-bottom: var(--space-lg); }
.section-label {
  font-family: var(--font-condensed);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-xs);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9em 2.4em;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease-expo);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border: 2px solid var(--color-blue);
}
.btn--primary:hover {
  background: var(--color-blue-light);
  border-color: var(--color-blue-light);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.5); }
.btn--xl { font-size: 1.25rem; padding: 1.1em 3em; }
.btn:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 4px; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  z-index: 1000;
  transition: background var(--dur-base), backdrop-filter var(--dur-base);
}
.nav.scrolled {
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--dur-fast);
}
.nav__logo:hover .nav__logo-img { opacity: 0.8; }
.nav__links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}
.nav__link {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  transition: color var(--dur-fast);
}
.nav__link:hover { color: var(--color-white); }
.nav__cta { font-size: 0.85rem; padding: 0.6em 1.8em; }
.nav__burger { display: none; flex-direction: column; gap: 5px; }
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--dur-fast);
}

/* ─── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}
.mobile-menu:not([hidden]) { opacity: 1; pointer-events: all; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.05em;
  transition: color var(--dur-fast);
}
.mobile-menu__link:hover { color: var(--color-blue); }
.mobile-menu__link--cta { color: var(--color-blue); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.2) 0%,
    rgba(13,13,13,0.4) 40%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-condensed);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
  opacity: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.9;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.2em;
  margin-bottom: var(--space-md);
}
.hero__word { display: inline-block; overflow: hidden; }
.hero__star {
  color: var(--color-blue);
  font-size: 0.6em;
  display: inline-block;
  transform: translateY(-0.1em);
}
.hero__sub {
  font-family: var(--font-condensed);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-muted-2);
  margin-bottom: var(--space-md);
  opacity: 0;
  line-height: 1.4;
}
.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0.4;
}
.hero__scroll-hint span {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-white));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Marquee ────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--color-blue);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.08em;
}
.marquee__dot { color: rgba(255,255,255,0.6); }
@keyframes marquee-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ─── Services ───────────────────────────────────────────── */
.services { background: var(--color-bg-2); }

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-md);
  flex-wrap: wrap;
}
.services__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: 0.02em;
}
.services__header-note {
  font-family: var(--font-condensed);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-muted);
  line-height: 1.6;
  text-align: right;
  max-width: 240px;
}

.services__list {
  margin-bottom: var(--space-xl);
}

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto 2rem;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: padding-left var(--dur-base) var(--ease-expo);
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-blue);
  opacity: 0.06;
  transition: width var(--dur-base) var(--ease-expo);
}
.service-row:hover::before { width: 100%; }
.service-row:hover { padding-left: var(--space-sm); }

.service-row__num {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  transition: color var(--dur-fast);
}
.service-row:hover .service-row__num { color: var(--color-blue); }

.service-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1;
  transition: letter-spacing var(--dur-base) var(--ease-expo);
}
.service-row:hover .service-row__name { letter-spacing: 0.06em; }

.service-row__tag {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

.service-row__price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast);
  text-align: right;
}
.service-row:hover .service-row__price { color: var(--color-blue); }

.service-row__arrow {
  font-size: 1.2rem;
  color: var(--color-muted);
  transition: transform var(--dur-base) var(--ease-expo), color var(--dur-fast);
  line-height: 1;
}
.service-row:hover .service-row__arrow {
  transform: translate(3px, -3px);
  color: var(--color-blue);
}

.services__footer { text-align: center; }

/* ─── Gallery ────────────────────────────────────────────── */
.gallery { padding-bottom: var(--space-section); }
.gallery .section-header { padding: 0 var(--space-md); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 280px);
  gap: 4px;
  margin-top: var(--space-lg);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  transition: transform var(--dur-slow) var(--ease-expo);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-expo);
}
.gallery__item:hover .gallery__hover { opacity: 1; }
.gallery__cta {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.5em 1.2em;
  border-radius: var(--radius-sm);
  transform: translateY(8px);
  transition: transform var(--dur-base) var(--ease-expo), background var(--dur-fast), border-color var(--dur-fast);
}
.gallery__item:hover .gallery__cta { transform: translateY(0); }
.gallery__cta:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

/* ─── Team ───────────────────────────────────────────────── */
.team { background: var(--color-bg-2); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}
.barber-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-expo), border-color var(--dur-fast);
}
.barber-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 79, 216, 0.4);
}
.barber-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg);
}
.barber-card__img-wrap img { transition: transform var(--dur-slow) var(--ease-expo); }
.barber-card:hover .barber-card__img-wrap img { transform: scale(1.05); }
.barber-card__info {
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.barber-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.barber-card__specialty {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* ─── Reviews ────────────────────────────────────────────── */
.reviews { overflow: hidden; }
.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.reviews__google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.1rem;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.reviews__google-btn:hover { color: var(--color-white); border-color: var(--color-muted-2); }

.reviews__slider { position: relative; }
.reviews__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
}
.reviews__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-sizing: border-box;
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}
.review-card__stars {
  color: #f5b800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.review-card__text {
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted-2);
}
.review-card__badge {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 2px;
  padding: 0.1em 0.4em;
  vertical-align: middle;
  text-transform: uppercase;
}
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.reviews__arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}
.reviews__arrow:hover { border-color: var(--color-blue); color: var(--color-blue); }
.reviews__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast);
  padding: 0;
}
.reviews__dot.is-active {
  background: var(--color-blue);
  transform: scale(1.3);
}

/* ─── Location ───────────────────────────────────────────── */
.location { background: var(--color-bg-2); }
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.location__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.location__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.location__icon {
  color: var(--color-blue);
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.location__item strong {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-muted-2);
  margin-bottom: 0.25rem;
}
.location__item p {
  color: var(--color-white);
  line-height: 1.6;
}
.location__item a { transition: color var(--dur-fast); }
.location__item a:hover { color: var(--color-blue); }
.location__socials {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-muted-2);
  transition: color var(--dur-fast);
}
.social-link__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  transition: color var(--dur-fast);
}
.social-link:hover { color: var(--color-blue); }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.location__map iframe { display: block; filter: invert(0.9) hue-rotate(180deg) saturate(0.3); }

/* ─── Footer CTA ─────────────────────────────────────────── */
.footer-cta {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
  text-align: center;
}
.footer-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(27,79,216,0.25) 0%, transparent 70%),
    var(--color-bg);
}
.footer-cta__content { position: relative; z-index: 1; }
.footer-cta__label {
  font-family: var(--font-condensed);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
}
.footer-cta__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
}
.footer-cta__title em { color: var(--color-blue); font-style: normal; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--dur-fast);
}
.footer__logo:hover .footer__logo-img { opacity: 0.65; }
.footer__copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted-2);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.footer__social-link svg {
  width: 1.3rem;
  height: 1.3rem;
}
.footer__social-link:hover {
  color: var(--color-blue);
  transform: translateY(-2px);
}

/* ─── Animation base states ──────────────────────────────── */
[data-anim="fade-up"] { opacity: 0; transform: translateY(40px); }
[data-anim="scale-up"] { opacity: 0; transform: scale(0.92); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--wide { grid-column: span 2; }
  .location__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery__item--wide { grid-column: 1 / -1; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item { aspect-ratio: 4/3; }
  .gallery__item--wide { grid-column: 1; }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}
