/* =========================================================
   SparkX Visuals — Stylesheet
   Palette: bg #0B0B0B / surface #1A1A1A / gold #D4AF37 / text #FFF
   Type: Cormorant Garamond (display) + Jost (body/UI)
   ========================================================= */

:root {
  --bg: #0B0B0B;
  --surface: #1A1A1A;
  --surface-2: #141414;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.35);
  --gold-glow: rgba(212, 175, 55, 0.55);
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.68);
  --text-faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.1);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul, li { list-style: none; }

button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section { padding: var(--section-pad) 0; position: relative; }

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.section-title.light { color: var(--text); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }

.body-text { color: var(--text-dim); font-size: 1.05rem; max-width: 46ch; }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- glassmorphism ---------- */
.glass {
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gold);
}

.btn-solid {
  background: var(--gold);
  color: #0B0B0B;
  font-weight: 500;
}
.btn-solid:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 26px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0B0B0B;
  box-shadow: 0 0 26px var(--gold-glow);
}

.full-width { width: 100%; }

/* =========================================================
   LOADER
   ========================================================= */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-mark {
  position: relative;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
}
.loader-ring {
  position: absolute; inset: 0;
  border: 1px solid var(--gold-soft);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
.loader-x { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.5rem; }
.loader-text { letter-spacing: 0.5em; font-size: 0.7rem; color: var(--text-faint); }

@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #f4e3a1);
  z-index: 2000;
  transition: width 0.1s linear;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  padding: 0.9rem 0;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark { color: var(--gold); font-size: 1.1rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.logo-text em { font-style: italic; font-weight: 300; }
.accent { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  letter-spacing: 0.15em;
}
.nav-cta:hover { background: var(--gold); color: #0B0B0B !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 1100;
}
.hamburger span {
  height: 1px;
  width: 100%;
  background: var(--text);
  transition: all 0.35s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at 50% 30%, #241d10 0%, #0B0B0B 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.35) 40%, rgba(11,11,11,0.9) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-frame { position: absolute; inset: clamp(1rem, 4vw, 2.5rem); z-index: 1; pointer-events: none; }
.corner { position: absolute; width: 26px; height: 26px; border: 1px solid var(--gold-soft); }
.corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 900px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.08;
  margin: 0.6rem 0 1.2rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 2.4rem;
}

.hero-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-cue-line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-icons { display: flex; gap: 2.2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.about-icon { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.icon-circle {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-size: 1.3rem;
}
.about-icon p { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-dim); }

.about-visual { position: relative; }
.about-frame { position: relative; overflow: hidden; }
.about-frame img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-frame:hover img { transform: scale(1.06); }
.about-frame .corner { border-color: var(--gold); width: 34px; height: 34px; }

.about-stat {
  position: absolute;
  bottom: -1.6rem; left: -1.6rem;
  padding: 1.3rem 1.8rem;
  display: flex; flex-direction: column;
  border-radius: 4px;
}
.stat-number { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.3rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--surface-2); }

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

.service-card {
  padding: 2.4rem 1.8rem;
  border-radius: 6px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.08);
}
.service-icon { font-size: 1.8rem; display: inline-block; margin-bottom: 1.1rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.55; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.filter-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.7rem; margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.35s var(--ease);
}
.filter-btn:hover { border-color: var(--gold-soft); color: var(--text); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #0B0B0B; }

.masonry {
  columns: 4 220px;
  column-gap: 1.1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.masonry-item.hide { display: none; }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.8s var(--ease), filter 0.8s; }
.masonry-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.masonry-item figcaption {
  position: absolute; left: 1rem; bottom: 0.9rem; right: 1rem;
  font-size: 0.78rem; letter-spacing: 0.05em;
  color: var(--text);
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s var(--ease);
  z-index: 1;
}
.masonry-item:hover img { transform: scale(1.1); }
.masonry-item:hover::after, .masonry-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6,6,6,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  padding: 2rem;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 80vh; object-fit: contain; border: 1px solid var(--line); }
.lightbox-caption { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); font-size: 0.85rem; color: var(--text-dim); letter-spacing: 0.05em; }
.lightbox-close, .lightbox-nav {
  position: absolute; color: var(--text); font-size: 1.8rem;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; transition: all 0.3s;
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* =========================================================
   FEATURED FILM
   ========================================================= */
.film { padding: 0; }
.film-media { position: relative; height: 72vh; min-height: 460px; overflow: hidden; }
.film-poster { width: 100%; height: 100%; object-fit: cover; }
.film-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,11,0.55), rgba(11,11,11,0.75)); }

.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
}
.play-ring {
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}
.play-triangle {
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--gold);
  margin-left: 6px;
  z-index: 1;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  70% { box-shadow: 0 0 0 22px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.film-caption { position: absolute; left: 0; right: 0; bottom: 2.4rem; text-align: center; padding: 0 1.5rem; }

.film-modal {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.film-modal.active { opacity: 1; visibility: visible; }
.film-modal-inner { width: min(90vw, 1000px); aspect-ratio: 16/9; }
.film-modal-inner iframe { width: 100%; height: 100%; border: 1px solid var(--line); }
.film-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.8rem; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; }
.film-modal-close:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why { background: var(--surface-2); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.why-card {
  text-align: center; padding: 2.6rem 1.4rem;
  border: 1px solid var(--line); border-radius: 6px;
  transition: all 0.5s var(--ease);
}
.why-card:hover { border-color: var(--gold-soft); transform: translateY(-6px); }
.why-icon { font-size: 1.9rem; display: block; margin-bottom: 1rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-dim); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-slider { max-width: 700px; margin: 0 auto; text-align: center; position: relative; min-height: 220px; }
.testimonial-track { position: relative; height: 200px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.testimonial-slide.active { opacity: 1; transform: translateY(0); }
.stars { color: var(--gold); letter-spacing: 0.2em; }
.testimonial-slide p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-style: italic; line-height: 1.5; }
.testimonial-slide cite { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-dim); font-style: normal; }

.testimonial-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.5rem; }
.testimonial-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  cursor: pointer; transition: background 0.3s;
}
.testimonial-dots span.active { background: var(--gold); }

/* =========================================================
   BOOKING CTA
   ========================================================= */
.booking-cta {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12), transparent 60%),
    var(--surface);
}
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2.2rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.9rem; font-size: 0.92rem; color: var(--text-dim); }
.contact-list a:hover { color: var(--gold); }
.contact-icon { font-size: 1.05rem; }

.map-embed { margin-top: 2rem; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.4) invert(0.92) contrast(0.9); }
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }

.contact-form { padding: 2.4rem; border-radius: 8px; display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.form-row input, .form-row textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-faint); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }

.form-status { font-size: 0.82rem; color: var(--gold); min-height: 1.2em; text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--surface-2); padding-top: 3.5rem; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1.8rem; padding-bottom: 2.5rem;
}
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--text-dim); }
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 0.9rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; letter-spacing: 0.05em; color: var(--text-dim);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
  font-size: 0.76rem; color: var(--text-faint);
}
#back-to-top { color: var(--text-dim); font-size: 0.76rem; letter-spacing: 0.08em; transition: color 0.3s; }
#back-to-top:hover { color: var(--gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .masonry { columns: 3 180px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem 2.4rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }

  .about-stat { position: static; margin-top: 1.2rem; align-self: flex-start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2 160px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}
