/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #F5A623;
  --yellow-lt: #FFCA60;
  --yellow-dk: #D4900F;
  --black: #080808;
  --dark-2: #111111;
  --dark-3: #181818;
  --steel: #222222;
  --white: #FFFFFF;
  --gray: #666666;
  --gray-lt: #999999;
  --transition: 0.3s ease;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-logo { width: 64px; height: 64px; animation: loaderPulse 1.2s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.88)} }
.loader-bar { width: 200px; height: 3px; background: var(--steel); }
.loader-fill { height: 100%; width: 0; background: var(--yellow); animation: loaderFill 1.8s ease forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 0 rgba(245, 166, 35, 0.25);
}
.nav-container {
  max-width: 1220px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  display: flex; flex-direction: column;
  font-family: 'Oswald', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--white); line-height: 1.1;
}
.nav-logo-text span { font-size: 9px; letter-spacing: 0.22em; color: var(--yellow); font-family: 'Inter', sans-serif; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.65); transition: color var(--transition);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--yellow); color: var(--black);
  padding: 10px 22px; font-weight: 700; letter-spacing: 0.08em;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--yellow-lt); transform: translateY(-1px); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  background: rgba(8,8,8,0.98); backdrop-filter: blur(12px);
  border-top: 2px solid var(--yellow);
}
.mobile-menu a {
  padding: 14px 0; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition); text-transform: uppercase; letter-spacing: 0.08em;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--yellow); }
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--black);
}
.hero-bg { position: absolute; inset: 0; }
.hero-img-overlay { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.96) 25%, rgba(8,8,8,0.72) 55%, rgba(8,8,8,0.22) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1220px; width: 100%; margin: 0 auto;
  padding: 140px 24px 100px 80px;
  text-align: left;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 28px;
}
.eyebrow-line { display: block; width: 40px; height: 2px; background: var(--yellow); flex-shrink: 0; }
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(72px, 11vw, 152px);
  font-weight: 700; line-height: 0.92;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--white); margin-bottom: 32px;
}
.hero-title-accent { color: var(--yellow); }
.line-wrap { display: block; overflow: hidden; }
.animate-line { display: block; animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(100%); }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.72s; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.58); max-width: 540px;
  margin: 0 0 40px; line-height: 1.75;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.animate-fade { opacity: 0; animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black); padding: 15px 32px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--yellow-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.35); color: var(--black); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.28); color: var(--white);
  padding: 13px 32px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--yellow); background: rgba(245,166,35,0.07); color: var(--white); }
.hero-stats { display: flex; align-items: center; flex-wrap: wrap; }
.h-stat { padding-right: 36px; }
.h-stat strong {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 44px; font-weight: 700; color: var(--yellow); line-height: 1;
}
.h-stat span { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.h-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); margin-right: 36px; }
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.28); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollBob 2.2s ease-in-out infinite; z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(245,166,35,0.55), transparent); }
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== CAUTION STRIPE ===== */
.caution-stripe-bar {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0, var(--yellow) 12px,
    var(--black) 12px, var(--black) 24px
  );
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden; background: var(--dark-2); padding: 14px 0;
  border-top: 1px solid rgba(245,166,35,0.12);
  border-bottom: 1px solid rgba(245,166,35,0.12);
}
.ticker { display: flex; align-items: center; gap: 32px; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker span { font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.14em; text-transform: uppercase; }
.tick-sep { color: rgba(245,166,35,0.35); font-size: 7px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--yellow); flex-shrink: 0;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  line-height: 1.02; text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 24px;
}
.section-title em { color: var(--yellow); font-style: normal; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header p { color: rgba(255,255,255,0.5); font-size: 16px; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--dark-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-stack { position: relative; height: 520px; }
.about-img { position: absolute; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img.main-img { width: 75%; height: 400px; left: 0; top: 0; box-shadow: 0 24px 64px rgba(0,0,0,0.6); }
.about-img.sec-img { width: 55%; height: 260px; right: 0; bottom: 0; border: 3px solid var(--dark-2); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }
.about-badge-box {
  position: absolute; top: 56%; right: 6%; transform: translateY(-50%);
  background: var(--yellow); color: var(--black);
  padding: 18px 22px; z-index: 3;
  box-shadow: 0 12px 40px rgba(245,166,35,0.4);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.about-badge-box strong { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: var(--black); letter-spacing: 0.06em; text-transform: uppercase; }
.about-badge-box span { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; opacity: 0.75; }
.about-content p { color: rgba(255,255,255,0.58); font-size: 16px; margin-bottom: 18px; line-height: 1.75; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 40px; }
.af-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.af-icon {
  width: 28px; height: 28px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.af-icon svg { width: 14px; height: 14px; stroke: var(--yellow); }

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--steel); }
.service-card {
  background: var(--dark-2); position: relative;
  transition: background var(--transition), transform var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: left; z-index: 2;
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { transform: scaleX(1); }
.sc-num {
  position: absolute; top: 10px; left: 14px;
  font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700;
  color: rgba(245,166,35,0.13); z-index: 1; line-height: 1;
  pointer-events: none; user-select: none;
}
.service-card:hover .sc-num { color: rgba(245,166,35,0.22); }
.sc-img { width: 100%; height: 200px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .sc-img img { transform: scale(1.06); }
.sc-body { padding: 28px; }
.sc-icon { width: 44px; height: 44px; margin-bottom: 16px; }
.sc-icon svg { width: 100%; height: 100%; }
.sc-body h3 {
  font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 12px; color: var(--white);
}
.sc-body p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.sc-link { font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; }
.sc-link:hover { color: var(--yellow-lt); }

/* ===== IMAGE BAND ===== */
.img-band { position: relative; overflow: hidden; }
.img-band-inner { position: relative; }
.img-band-inner > img { width: 100%; height: 520px; object-fit: cover; object-position: center 40%; display: block; }
.img-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.68) 50%, rgba(8,8,8,0.3) 100%);
  display: flex; align-items: center;
}
.img-band-content { max-width: 640px; }
.img-band-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.img-band-tag::before { content: ''; width: 28px; height: 2px; background: var(--yellow); }
.img-band-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 600; line-height: 1.25; color: var(--white); margin-bottom: 36px;
  text-transform: uppercase; letter-spacing: -0.01em;
}

/* ===== STATS ===== */
.stats-section { padding: 0; background: var(--yellow); position: relative; overflow: hidden; }
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.04) 0, rgba(0,0,0,0.04) 1px,
    transparent 1px, transparent 32px
  );
}
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { text-align: center; padding: 80px 24px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: rgba(0,0,0,0.18);
}
.stat-num { font-family: 'Oswald', sans-serif; font-size: 88px; font-weight: 700; color: var(--black); display: inline; line-height: 1; }
.stat-suffix { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: var(--black); }
.stat-item p { font-size: 11px; font-weight: 700; color: rgba(0,0,0,0.55); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 10px; }

/* ===== WHY US ===== */
.why-us { padding: 120px 0; background: var(--dark-3); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content p { color: rgba(255,255,255,0.58); font-size: 16px; margin-bottom: 40px; line-height: 1.75; }
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-num {
  font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700;
  color: rgba(245,166,35,0.18); line-height: 1; flex-shrink: 0; min-width: 62px;
  transition: color var(--transition);
}
.why-item:hover .why-num { color: var(--yellow); }
.why-text h4 {
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 8px; padding-top: 10px;
}
.why-text p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.why-visual { display: flex; align-items: center; justify-content: center; }
.why-img-wrap { position: relative; width: 100%; overflow: visible; }
.why-img-wrap > img {
  width: 100%; height: 500px; object-fit: cover; object-position: center;
  display: block; box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}
.why-img-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--black); border: 2px solid var(--yellow);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  min-width: 220px;
}
.why-img-badge strong { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.why-img-badge span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 0; background: var(--black); overflow: hidden; }
.testi-slider { overflow: hidden; margin: 0 -12px; }
.testi-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); padding: 12px; }
.testi-card {
  flex: 0 0 calc(33.333% - 16px); min-width: 0;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px; position: relative;
  transition: border-color var(--transition);
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 12px; right: 22px;
  font-family: 'Oswald', sans-serif; font-size: 88px; font-weight: 700;
  color: rgba(245,166,35,0.08); line-height: 1; pointer-events: none;
}
.testi-card:hover { border-color: rgba(245,166,35,0.3); }
.stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-card > p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.ta-avatar {
  width: 44px; height: 44px;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.testi-author span { font-size: 12px; color: rgba(255,255,255,0.38); }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.tn-btn {
  width: 44px; height: 44px;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 18px; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.tn-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.tn-dots { display: flex; gap: 8px; }
.tn-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.2); cursor: pointer; transition: background var(--transition), width var(--transition); }
.tn-dot.active { background: var(--yellow); width: 24px; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: stretch; }
.contact-info p { color: rgba(255,255,255,0.58); font-size: 16px; margin-bottom: 40px; line-height: 1.75; }
.ci-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; stroke: var(--yellow); }
.ci-item > div strong {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ci-item > div span { font-size: 14px; color: rgba(255,255,255,0.5); }
.ci-item > div a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.ci-item > div a:hover { color: var(--yellow); }
.ci-hours {
  padding: 20px 24px; border: 1px solid rgba(255,255,255,0.07);
  background: var(--steel); border-left: 3px solid var(--yellow);
}
.ci-hours strong {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ci-hours p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.contact-map { min-height: 460px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.contact-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 3px solid var(--yellow); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; padding: 80px 0 60px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.75; margin: 20px 0 28px; max-width: 280px; }
.footer-logo { margin-bottom: 0; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,166,35,0.08); }
.footer-social svg { width: 16px; height: 16px; }
.footer-links-col h4 {
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col li, .footer-links-col a { font-size: 14px; color: rgba(255,255,255,0.38); }
.footer-links-col a { transition: color var(--transition); }
.footer-links-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  width: 44px; height: 44px;
  background: var(--yellow); color: var(--black); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--yellow-lt); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0ms);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0,0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-img-stack { height: 380px; }
  .about-img.main-img { height: 320px; }
  .about-img.sec-img { height: 220px; }
  .why-visual { order: -1; }
  .why-img-wrap > img { height: 380px; }
  .why-img-badge { left: 16px; bottom: -16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .img-band-inner > img { height: 420px; }
  .hero-content { padding-left: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-content { padding: 120px 24px 80px; }
  .h-stat-sep { display: none; }
  .h-stat { padding-right: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 320px; }
  .about-img.main-img { width: 80%; height: 260px; }
  .about-img.sec-img { width: 60%; height: 200px; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 52px; }
  .stat-suffix { font-size: 32px; }
  .stat-item { padding: 56px 12px; }
  .img-band-inner > img { height: 360px; }
  .img-band-overlay { background: linear-gradient(to bottom, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.72) 100%); }
  .why-img-badge { position: relative; left: auto; bottom: auto; margin-top: 16px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 48px 24px; }
  .hero-stats { gap: 20px; }
}
