*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --bg-card: #1a1a1a;
  --bg-elevated: #222222;
  --text: #f0f0f0;
  --text-muted: #8a8a8a;
  --text-soft: #b0b0b0;
  --silver: #c8c8c8;
  --silver-bright: #e4e4e4;
  --graphite: #3a3a3a;
  --charcoal: #2a2a2a;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #ffffff;
  --wa: #25d366;
  --radius: 14px;
  --radius-lg: 18px;
  --cursor-baron: url('assets/cursor_baron-48.png') 13 2, url('assets/cursor_baron-32.png') 8 1, auto;
  --cursor-baron-active: url('assets/cursor_baron2-48.png') 11 2, url('assets/cursor_baron2-32.png') 7 2, auto;
}

html { scroll-behavior: smooth; }

html,
body,
a,
button,
.btn,
.menu-btn,
input,
textarea,
select,
label[for],
[role="button"],
.hero-scroll,
.gallery-item,
.card,
.testimonial-card,
.diff-item {
  cursor: var(--cursor-baron);
}

body.is-clicking,
body.is-clicking * {
  cursor: var(--cursor-baron-active) !important;
}

iframe {
  cursor: auto;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
}

a { color: inherit; }

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}

header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrap img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: var(--silver-bright);
}

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.desktop-nav a {
  position: relative;
  margin: 0 14px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.25s;
  padding: 6px 0;
}

nav.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--silver), var(--silver-bright));
  transition: width 0.3s ease;
}

nav.desktop-nav a:hover {
  color: #fff;
}

nav.desktop-nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 12px;
  transition: background 0.2s;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 6%;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
}

.mobile-nav.open { display: flex; }

.mobile-nav a.mobile-link {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a.mobile-link:hover { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: none;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
  min-height: 48px;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(145deg, var(--silver-bright) 0%, var(--silver) 55%, #a8a8a8 100%);
  color: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #fff 0%, var(--silver-bright) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver-bright);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  padding: 10px 20px;
  min-height: auto;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: #1ebe5b;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.35);
}

/* ── Sections ── */
section { padding: 100px 8%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--graphite));
}

.section-label::after {
  background: linear-gradient(90deg, var(--graphite), transparent);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--silver-bright);
  line-height: 1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
}

.section-subtitle--spaced {
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-cta-wrap {
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Barber stripe divider */
.about::before,
.services::before,
.gallery::before,
.testimonials::before,
.contact::before {
  content: '';
  display: block;
  height: 3px;
  max-width: 1100px;
  margin: -100px auto 100px;
  background: repeating-linear-gradient(
    -45deg,
    var(--charcoal) 0px,
    var(--charcoal) 8px,
    var(--graphite) 8px,
    var(--graphite) 16px,
    #555 16px,
    #555 24px
  );
  opacity: 0.35;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/maps/maps_photo_19.png') center center / cover no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.35) 40%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(80, 80, 80, 0.12) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-badge i {
  color: var(--silver);
  font-size: 0.95rem;
}

.hero-badge strong {
  color: var(--silver-bright);
  font-weight: 700;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-logo {
  display: block;
  width: clamp(100px, 18vw, 160px);
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--silver-bright);
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.hero-accent {
  background: linear-gradient(180deg, #fff 30%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-soft);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  text-decoration: none;
  transition: border-color 0.3s;
}

.hero-scroll:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  background: var(--silver);
  border-radius: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 8%;
}

.stats-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}

.stat-item i {
  font-size: 1.4rem;
  color: var(--graphite);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--silver-bright);
  line-height: 1.1;
}

.stat-item span {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--graphite), transparent);
  flex-shrink: 0;
}

/* ── About ── */
.about {
  background: var(--bg-2);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.22) 0%, rgba(8, 8, 8, 0.06) 45%, rgba(8, 8, 8, 0.3) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(8, 8, 8, 0.12) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.about-image img,
.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(25%) brightness(0.92) contrast(1.06) saturate(0.92);
}

.about-image:hover::after {
  opacity: 0.4;
}

.about-image:hover img,
.about-image:hover video {
  transform: scale(1.04);
  filter: grayscale(5%) brightness(1) contrast(1.04) saturate(1);
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}

.diff-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.diff-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border);
}

.diff-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1.05rem;
  transition: border-color 0.3s, color 0.3s;
}

.diff-item:hover .diff-icon {
  border-color: var(--border-strong);
  color: var(--silver-bright);
}

.diff-item h3 {
  color: var(--silver-bright);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 5px;
}

.diff-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-2) 100%);
  padding: 32px 24px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 0.6;
}

.card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: 1px;
}

.card .diff-icon { margin: 0 auto 18px; }

.card h3 {
  color: var(--silver-bright);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ── Gallery ── */
.gallery {
  background: var(--bg-2);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(20%) contrast(1.02);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-overlay i {
  font-size: 1.6rem;
  color: var(--silver-bright);
  transform: scale(0.8) rotate(-15deg);
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1) rotate(0deg);
}

/* ── Testimonials ── */
.testimonials {
  background: var(--bg);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.testimonial-card .stars {
  color: var(--silver);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: #d8d8d8;
  font-size: 0.93rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card cite {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
}

.link-muted {
  display: inline-block;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--graphite);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.link-muted:hover {
  color: var(--silver-bright);
  border-color: var(--silver);
}

/* ── Contact ── */
.contact {
  background: var(--bg-2);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.info-card h3 {
  color: var(--silver-bright);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.info-card h3 i {
  color: var(--text-muted);
  margin-right: 8px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.schedule-row:last-child { border-bottom: none; }

.schedule-open {
  color: var(--silver-bright);
  font-weight: 500;
}

.schedule-closed { color: var(--text-muted); }

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.contact-detail i {
  color: var(--text-muted);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--silver-bright);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover { color: #fff; }

.contact-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  filter: grayscale(80%) contrast(1.1);
  transition: filter 0.4s;
}

.map-wrap:hover iframe {
  filter: grayscale(40%) contrast(1.05);
}

.map-link {
  text-align: center;
  padding: 14px;
  border-top: 1px solid var(--border);
}

/* ── CTA ── */
.cta {
  position: relative;
  text-align: center;
  background: var(--bg-3);
  padding: 110px 8%;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    -45deg,
    #fff 0px,
    #fff 6px,
    transparent 6px,
    transparent 12px
  );
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  letter-spacing: 2px;
  margin-bottom: 18px;
  line-height: 1;
  color: var(--silver-bright);
}

.cta p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 56px 8% 120px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.9;
}

.footer-brand p {
  color: var(--silver-bright);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.footer-brand span {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-info, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-info a, .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.footer-info a:hover, .footer-links a:hover { color: var(--silver-bright); }

.footer-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-info i { color: var(--graphite); width: 14px; }

.footer-bottom {
  max-width: 1100px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #555;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(0);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, background 0.2s, opacity 0.3s;
}

.wa-fab:hover {
  transform: translateX(-50%) translateY(-3px);
  background: #1ebe5b;
}

.wa-fab.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.wa-fab i { font-size: 1.2rem; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-bar-inner {
    flex-direction: column;
    gap: 28px;
    padding: 32px 0;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--graphite), transparent);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  header .btn-small { display: none; }
  .menu-btn { display: block; }

  section { padding: 80px 6%; }

  .about::before,
  .services::before,
  .gallery::before,
  .testimonials::before,
  .contact::before {
    margin: -80px auto 80px;
  }

  .hero h1 { font-size: 3.2rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .hero-scroll { display: none; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .gallery-item--featured {
    grid-column: span 2;
  }

  .wa-fab {
    padding: 14px 20px;
    font-size: 13px;
    bottom: 16px;
  }

  footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .wa-fab {
    padding: 16px;
    gap: 0;
  }

  .wa-fab-text {
    display: none;
  }

  .wa-fab i {
    font-size: 1.5rem;
  }
}
