@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300&family=Barlow:wght@300;400;500&display=swap');

/* ════════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════════ */
:root {
  --yellow:  #EAB308;
  --black:   #0a0a0a;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --dark3:   #222222;
}

/* ════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--black);
  color: #f0f0f0;
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); }

/* ════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
════════════════════════════════════════════════ */
.bebas      { font-family: 'Bebas Neue', cursive; }
.barlow-cond { font-family: 'Barlow Condensed', sans-serif; }

/* ════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.container-sm {
  max-width: 900px;
  margin: 0 auto;
}
.section-pad { padding: 7rem 2rem; }

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 2rem;
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 2rem;
  border-bottom-color: rgba(234,179,8,0.18);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo-img {
  height: 48px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s;
}
.nav-link:hover           { color: var(--yellow); }
.nav-link:hover::after    { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.hb-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.hb-bar--yellow {
  width: 16px;
  background: var(--yellow);
  align-self: flex-end;
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}

/* ════════════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--yellow); }

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn-primary {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.1em;
  background: var(--yellow);
  color: #000;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(234,179,8,0.35);
}
.btn-ghost {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.1em;
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn-cta-lg {
  padding: 1.1rem 3.5rem;
  font-size: 1.5rem;
}
.btn-nav {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}
.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}
.btn-mobile {
  padding: 0.75rem 3rem;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════
   SECTION LABEL (pre-heading row)
════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-label--mb-lg { margin-bottom: 1.4rem; }

.label-line {
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  background: var(--yellow);
}
.label-line--dark { background: #000; }
.label-line--sm   { width: 36px; height: 2px; background: var(--yellow); flex-shrink: 0; }

.label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
}
.label-text--dark { color: rgba(0,0,0,0.6); }

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ─── Hero entrance animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-enter-1 { animation: fadeUp 0.9s ease 0.2s both; }
.hero-enter-2 { animation: fadeUp 0.9s ease 0.4s both; }
.hero-enter-3 { animation: fadeUp 0.9s ease 0.6s both; }
.hero-enter-4 { animation: fadeUp 0.9s ease 0.8s both; }
.hero-enter-5 { animation: fadeUp 0.9s ease 1.0s both; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(234,179,8,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,179,8,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Vertical accent lines */
.hero-vline {
  position: absolute; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(234,179,8,0.22), transparent);
  pointer-events: none;
}
.hero-vline--left  { left: 8%; }
.hero-vline--right { right: 8%; }

/* Corner triangle accents */
.hero-triangle-lg {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 220px 220px 0;
  border-color: transparent rgba(234,179,8,0.07) transparent transparent;
  pointer-events: none;
}
.hero-triangle-sm {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 120px 120px 0;
  border-color: transparent rgba(234,179,8,0.05) transparent transparent;
  pointer-events: none;
}

/* Diagonal wash */
.hero-diagonal-wash {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0) 55%,
    rgba(234,179,8,0.04) 55%,
    rgba(234,179,8,0.04) 70%,
    rgba(0,0,0,0) 70%
  );
  pointer-events: none;
}

/* Watermark CY */
.hero-watermark {
  position: absolute; right: -1%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(220px, 28vw, 400px);
  color: rgba(255,255,255,0.022);
  user-select: none; pointer-events: none;
  line-height: 1; letter-spacing: -0.04em;
}

/* Yellow horizontal accent */
.hero-accent-bar {
  position: absolute; left: 0; bottom: 22%;
  width: 28%; height: 2px;
  background: var(--yellow);
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 7rem 0 4rem;
  width: 100%;
}
.hero-inner { max-width: 760px; }

/* Pre-label */
.hero-prelabel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.hero-prelabel-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Main headline */
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(90px, 15vw, 210px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  margin-bottom: 0;
}
.hero-title-white  { color: #fff; display: block; }
.hero-title-yellow { color: var(--yellow); display: block; margin-top: -0.06em; }

/* Tagline */
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  margin-bottom: 1.8rem;
}

/* Description */
.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 2.4rem;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Mini stats */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.hero-stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.6rem;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}
.scroll-indicator-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: #000;
  padding: 0 28px;
}
.ticker-sep {
  color: rgba(0,0,0,0.3);
  padding: 0 4px;
}

/* ════════════════════════════════════════════════
   ABOUT / MISSION
════════════════════════════════════════════════ */
#nosotros {
  background: var(--dark);
  padding: 7rem 2rem;
}
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.9;
  color: #fff;
}
.about-title-accent { color: var(--yellow); }
.about-accent-bar {
  width: 56px; height: 3px;
  background: var(--yellow);
  margin-top: 1.8rem;
}

.about-body-primary {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.about-body-secondary {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar         { text-align: center; }
.pillar-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
}
.pillar-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ════════════════════════════════════════════════
   MOBILE — centrado de títulos y labels
════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  .hero-prelabel       { justify-content: center; }
  .hero-title          { text-align: center; }
  .hero-tagline        { text-align: center; }
  .hero-desc           { text-align: center; max-width: 100%; }
  .hero-cta-row        { justify-content: center; }
  .hero-stats          { justify-content: center; }

  /* Section labels (todas las secciones) */
  .section-label       { justify-content: center; }

  /* About */
  .about-title         { text-align: center; }
  .about-accent-bar    { margin-left: auto; margin-right: auto; }
  .about-body-primary,
  .about-body-secondary { text-align: center; }
  .countdown           { text-align: center; }
  .countdown-track     { justify-content: center; }

  /* Services */
  .services-header     { text-align: center; }
  .services-title      { text-align: center; }

  /* Why */
  .why-header          { text-align: center; }
  .why-title           { text-align: center; }

  /* Footer */
  .footer-heading,
  .footer-social-heading { text-align: center; }
  .footer-desc         { text-align: center; max-width: 100%; }
  .footer-bar-inner    { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
}

/* ─── COUNTDOWN  3 · 2 · 1  TIEMPO! ─── */
.countdown {
  margin-top: 0.25rem;
}
.countdown-track {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.1rem;
}
.countdown-digit {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  line-height: 1;
}
/* Progressive brightness: 3 most muted → 1 brightest, building tension */
.c3 { color: rgba(255,255,255,0.18); }
.c2 { color: rgba(255,255,255,0.45); }
.c1 { color: rgba(255,255,255,0.82); }

.countdown-dot {
  color: rgba(255,255,255,0.12);
  font-size: 2rem;
  line-height: 1;
  user-select: none;
}
.countdown-tiempo {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
#servicios {
  background: var(--black);
  padding: 7rem 2rem;
}
.services-inner    { max-width: 1280px; margin: 0 auto; }
.services-header   { margin-bottom: 4rem; }
.services-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 80px);
  color: #fff;
  line-height: 0.95;
}
.services-title-accent { color: var(--yellow); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Service card */
.svc-card {
  background: var(--dark2);
  border-top: 3px solid var(--yellow);
  position: relative; overflow: hidden;
  padding: 2.2rem;
  transition: transform 0.32s cubic-bezier(.22,.61,.36,1), box-shadow 0.32s;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(234,179,8,0.14);
}
.svc-card--featured { background: #1d1d1d; }

.bg-num {
  position: absolute; right: -6px; bottom: -14px;
  font-family: 'Bebas Neue', cursive;
  font-size: 9rem;
  color: rgba(255,255,255,0.03);
  user-select: none; pointer-events: none;
  line-height: 1;
}

.svc-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Bebas Neue', cursive;
  background: var(--yellow);
  color: #000;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 3px 10px;
}

.svc-icon        { margin-bottom: 1.6rem; }
.svc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.svc-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.6rem;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.1rem;
}
.svc-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.svc-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
}
.svc-list-item {
  display: flex; align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.svc-list-arrow {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-footer {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.svc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-link:hover { color: #fff; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   WHY CAPITAN YARD  (yellow section)
════════════════════════════════════════════════ */
#why {
  background: var(--yellow);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.why-deco-circle-lg {
  position: absolute; right: -4%; top: -15%;
  width: 320px; height: 320px;
  border: 3px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.why-deco-circle-sm {
  position: absolute; right: 4%; top: -25%;
  width: 200px; height: 200px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.why-deco-triangle {
  position: absolute; left: -2%; bottom: -8%;
  width: 280px; height: 280px;
  background: rgba(0,0,0,0.04);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  pointer-events: none;
}

.why-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}
.why-header { margin-bottom: 4rem; }
.why-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 80px);
  color: #000;
  line-height: 0.95;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-block { border-top: 2px solid rgba(0,0,0,0.3); padding-top: 1.5rem; }

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 80px);
  color: #000;
  line-height: 1;
}
.stat-sublabel {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.stat-desc {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */
#cta-banner {
  background: var(--black);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-top-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.cta-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.cta-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(255,255,255,0.018);
  user-select: none; pointer-events: none;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.cta-prelabel {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(60px, 11vw, 130px);
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1.4rem;
}
.cta-title-accent { color: var(--yellow); }
.cta-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: var(--dark);
}
.footer-contact {
  padding: 6rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.footer-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(42px, 5vw, 62px);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}
.footer-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 360px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer-social-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(42px, 5vw, 62px);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 2rem;
}

/* Contact rows */
.contact-row {
  display: flex; align-items: center;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.25s;
  text-decoration: none;
}
.contact-row:hover      { padding-left: 0.5rem; }
.contact-row--last      { border-bottom: none; cursor: default; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.18);
}
.contact-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.contact-detail-value {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* Social rows */
.social-link {
  display: flex; align-items: center;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: padding-left 0.25s;
}
.social-link:hover            { padding-left: 0.5rem; }
.social-link:hover .social-name { color: var(--yellow); }
.social-link--last            { border-bottom: none; }
.social-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.social-handle {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.social-text-col { flex: 1; }

.social-cta-box {
  margin-top: 2.5rem;
  padding: 1.4rem;
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.15);
}
.social-cta-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Footer bottom bar */
.footer-bar {
  padding: 1.6rem 2rem;
}
.footer-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}
.footer-logo-accent { color: rgba(234,179,8,0.35); }
.footer-copyright {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}
