/* ═══════════════════════════════════════════════
   ADHAAR GROUP LTD. — STYLE.CSS v3
   Color rule: dark bg = light text. Light bg = dark text. Always.
═══════════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-light: #ffffff;
  --bg-light-warm: #f8f7f4;

  /* Text on DARK backgrounds */
  --text-on-dark-primary: #f0ede8;
  --text-on-dark-secondary: #888;
  --text-on-dark-muted: #555;

  /* Text on LIGHT backgrounds */
  --text-on-light-primary: #0a0a0a;
  --text-on-light-secondary: #333;
  --text-on-light-muted: #4a4a52;

  /* Accent */
  --accent: #c8b89a;
  --accent-dark: #a8966e;

  /* Fonts */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 90px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-on-dark-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── SHARED TYPOGRAPHY ── */

/* On dark sections */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-on-dark-primary);
}
.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-on-dark-secondary);
}

/* On light sections — these classes explicitly override */
.on-light .section-eyebrow { color: var(--accent-dark); }
.on-light .section-heading { color: var(--text-on-light-primary); }
.on-light .section-heading em { color: var(--text-on-light-muted); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
/* Dark state (default — over hero) */
#nav .nav-links a { color: var(--text-on-dark-primary); }
#nav .logo-black { display: none; }
#nav .logo-white { display: block; }
#nav .nav-burger span { background: var(--text-on-dark-primary); }

/* Light state (after scroll) */
#nav.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
#nav.scrolled .nav-links a { color: var(--text-on-light-primary); }
#nav.scrolled .nav-links a.nav-cta { color: #fff; }
#nav.scrolled .logo-white { display: none; }
#nav.scrolled .logo-black { display: block; }
#nav.scrolled .nav-burger span { background: var(--text-on-light-primary); }

.nav-logo img { height: 76px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-links a.nav-cta {
  padding: 9px 20px;
  background: var(--bg-dark);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.25s, border-color 0.25s;
}
#nav.scrolled .nav-links a.nav-cta {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}
.nav-links a.nav-cta:hover { opacity: 1; background: #222; }

.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-on-dark-primary);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-white {
  background: var(--text-on-dark-primary);
  color: var(--bg-dark);
  border: 1px solid var(--text-on-dark-primary);
}
.btn-white:hover { background: transparent; color: var(--text-on-dark-primary); }
.btn-outline-white {
  background: transparent;
  color: var(--text-on-dark-primary);
  border: 1px solid rgba(240,237,232,0.45);
}
.btn-outline-white:hover { background: rgba(240,237,232,0.1); }

/* ══════════════════════════════════════════
   01. HERO — DARK BG, LIGHT TEXT
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 6vw, 80px) clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0; }
.hero-poster {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('assets/images/WEB6.webp');
  background-size: cover; background-position: center;
}

/* ── HERO LOGO LOADER — covers hero until video is ready, fades out once ──
   Large centered mark, logo itself stays upright while a ring orbits
   around it — reads as "loading," not "spinning text," and never looks
   upside-down or sideways the way rotating the logo itself would. ── */
.hero-loader {
  position: absolute; inset: 0; z-index: 3;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.hero-loader.hero-loader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.hero-loader-inner {
  display: flex; align-items: center; justify-content: center;
}
.hero-loader-ring {
  position: relative;
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-loader-ring::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(255,255,255,0.85);
  border-right-color: rgba(255,255,255,0.35);
  animation: heroLoaderSpin 1.4s linear infinite;
}
.hero-loader-mark {
  width: clamp(64px, 8vw, 96px);
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  position: relative; z-index: 1;
}
@keyframes heroLoaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-loader-ring::before { animation: none; border-top-color: rgba(255,255,255,0.5); border-right-color: rgba(255,255,255,0.5); }
}

/* ── HERO CAROUSEL — fades in once the video finishes, loops continuously ── */
.hero-carousel {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.hero-carousel.hero-carousel--active { opacity: 1; visibility: visible; }
.hero-carousel-track {
  position: absolute; inset: 0;
  display: flex;
  height: 100%;
  transition: transform 1s var(--ease);
}
.hero-carousel-slide {
  width: 100%; height: 100%; flex-shrink: 0;
  background-size: cover; background-position: center right;
}
@media (max-width: 768px) {
  /* Source images are wide (≈1.83:1) with text burned into the right
     third. On a tall mobile viewport, cover+center crops that text off
     entirely — contain keeps the whole frame (text included) visible,
     letterboxed top/bottom against the dark hero background instead. */
  .hero-carousel-slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0a0a0a;
  }
}
.hero-carousel-dots {
  position: absolute; bottom: clamp(24px, 4vh, 40px); left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; gap: 8px;
}
.hero-carousel-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s, transform 0.3s;
}
.hero-carousel-dots .dot.active { background: rgba(255,255,255,0.9); transform: scale(1.3); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.82) 100%
  );
}
.hero-content { position: relative; z-index: 4; max-width: 680px; }

.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 1.4rem;
  color: var(--text-on-dark-primary);
}
.hero-heading .line {
  display: block;
  padding-bottom: 0.08em; /* room for descenders (g, y, p, j) so they never clip */
  /* Initial state + motion now handled by GSAP in main.js */
}
.hero-heading .italic { font-style: italic; font-weight: 300; color: rgba(240,237,232,0.65); }

.hero-tagline {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(240,237,232,0.65); margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.88s forwards;
}
.tag-divider { color: var(--accent); font-size: 14px; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.06s forwards;
}
.hero-scroll-hint {
  position: absolute;
  right: clamp(24px, 4vw, 60px); bottom: clamp(40px, 7vh, 90px);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s forwards;
}
.hero-scroll-hint span {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(240,237,232,0.4); writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 56px;
  background: rgba(240,237,232,0.15); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent); animation: scrollTick 2s ease infinite;
}

/* ══════════════════════════════════════════
   02. STATS — LIGHT BG, DARK TEXT
══════════════════════════════════════════ */
.stats {
  background: var(--bg-light);
  padding: 64px clamp(24px, 6vw, 80px);
}
.stats-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-around; gap: 32px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 110px; }
.stat-num-wrap { display: flex; align-items: baseline; gap: 3px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1;
  color: var(--text-on-light-primary); /* DARK on light bg */
}
.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 300;
  color: var(--accent-dark);
}
.stat-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-on-light-muted); /* DARK on light bg */
  line-height: 1.45; margin-top: 10px;
}
.stat-divider { width: 1px; height: 70px; background: rgba(0,0,0,0.1); flex-shrink: 0; }

/* ══════════════════════════════════════════
   03. SERVICES — IMAGE CARDS
══════════════════════════════════════════ */
.services { background: var(--bg-dark); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.services-header { max-width: var(--container); margin: 0 auto 52px; }

.services-grid-visual {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  perspective: 1400px;
}
@media (max-width: 720px) {
  .svc-grid { grid-template-columns: 1fr; }
}
.svc-card {
  position: relative; overflow: hidden;
  background: #111;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.svc-img-wrap {
  position: relative;
  height: clamp(200px, 28vw, 360px);
  overflow: hidden;
  flex-shrink: 0;
}
.svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.6) 100%);
}
.svc-body {
  padding: 28px 28px 36px;
  flex: 1;
}
.svc-num {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 300;
  color: rgba(255,255,255,0.07);
  display: block; line-height: 1; margin-bottom: 14px;
}
.svc-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 400;
  color: var(--text-on-dark-primary);
  margin-bottom: 10px;
}
.svc-body p { font-size: 14px; color: var(--text-on-dark-secondary); line-height: 1.7; }

/* ══════════════════════════════════════════
   03b. HOW WE WORK — LIGHT BG, DARK TEXT
══════════════════════════════════════════ */
.process { background: var(--bg-light-warm); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.process-header { max-width: var(--container); margin: 0 auto 60px; }
.process-header .section-eyebrow { color: var(--accent-dark); }
.process-header .section-heading { color: var(--text-on-light-primary); }
.process-header .section-heading em { color: var(--text-on-light-muted); }

.process-steps {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 0;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 300; line-height: 1;
  color: var(--text-on-light-primary);
  margin-bottom: 16px;
}
.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 400;
  color: var(--text-on-light-primary);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 13px; color: var(--text-on-light-muted);
  line-height: 1.7; max-width: 200px; margin: 0 auto;
}
.process-connector {
  width: 1px; height: 60px;
  background: rgba(0,0,0,0.15);
  margin: 16px auto 0;
  align-self: start;
}
.process-cta {
  max-width: var(--container); margin: 60px auto 0;
  text-align: center;
}
.btn-process-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--bg-dark);
  color: var(--text-on-dark-primary);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  transition: background 0.25s, opacity 0.25s;
}
.btn-process-cta:hover { background: #222; }

/* ══════════════════════════════════════════
   04. GALLERY — DARK BG, LIGHT TEXT
══════════════════════════════════════════ */
.gallery-section { background: var(--bg-dark); padding-top: var(--section-pad); overflow: hidden; }
.gallery-intro { padding: 0 clamp(24px, 6vw, 80px); max-width: var(--container); margin: 0 auto 44px; }
.gallery-track-wrap {
  overflow-x: auto; overflow-y: hidden;
  padding-bottom: var(--section-pad); scrollbar-width: none;
}
.gallery-track-wrap::-webkit-scrollbar { display: none; }
.gallery-track { display: flex; gap: 18px; padding: 0 clamp(24px, 6vw, 80px); width: max-content; }
.gallery-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 clamp(24px, 6vw, 80px);
  perspective: 1400px;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-grid .gallery-card { width: 100%; }
.gallery-card { width: clamp(280px, 33vw, 480px); background: #111; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; flex-shrink: 0; transition: transform 0.3s ease-out; will-change: transform; }
.gallery-card--dark { background: #0d0d0d; }
.gallery-img-wrap { height: clamp(200px, 27vw, 360px); overflow: hidden; }
.gallery-img-wrap img { transition: transform 0.7s var(--ease); }
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.04); }
.gallery-card-info { padding: 22px 26px 30px; }
.gallery-tag {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 9px;
}
.gallery-card-info h4 {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400;
  color: var(--text-on-dark-primary); /* LIGHT text on dark */ margin-bottom: 7px;
}
.gallery-card-info p { font-size: 13px; color: var(--text-on-dark-secondary); line-height: 1.65; }
.gallery-drag-hint {
  text-align: center; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-on-dark-muted);
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════
   06. ABOUT — DARK BG, LIGHT TEXT
══════════════════════════════════════════ */
.about { background: var(--bg-dark); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.about-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; perspective: 1400px; }
.about-image { aspect-ratio: 4/5; overflow: hidden; }
.about-image img { transition: transform 1.1s var(--ease); }
.about-image:hover img { transform: scale(1.04); }
.about-content .section-heading { margin-bottom: 24px; }
.about-body { font-size: 15px; color: var(--text-on-dark-secondary); line-height: 1.8; margin-bottom: 14px; }
.about-values {
  display: flex; flex-direction: column; gap: 13px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.value-chip { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-on-dark-secondary); }
.value-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ══════════════════════════════════════════
   07. CONTACT — DARK BG, LIGHT TEXT
══════════════════════════════════════════ */
.contact { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.contact-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-body { margin-top: 22px; font-size: 14px; color: var(--text-on-dark-secondary); line-height: 1.78; max-width: 360px; }
.contact-phone {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; font-family: var(--font-heading);
  font-size: 1.9rem; font-weight: 300;
  color: var(--text-on-dark-primary); /* LIGHT text */
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--accent); }
.contact-address { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--text-on-dark-secondary); }
.contact-form-wrap { display: flex; flex-direction: column; }
.ghl-placeholder {
  min-height: 280px; border: 1px dashed rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.placeholder-text { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.16); }
.ghl-form-wrap {
  width: 100%;
  min-height: 745px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.ghl-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 745px;
  border: none;
}
.ghl-cal-wrap {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.ghl-cal-wrap iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
}
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-on-dark-muted);
}
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

/* ══════════════════════════════════════════
   07b. CALENDAR SECTION — DARK BG
══════════════════════════════════════════ */
.calendar-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}
.calendar-section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.calendar-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.calendar-intro-text { max-width: 480px; }
.calendar-intro .section-eyebrow { color: var(--accent); }
.calendar-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-on-dark-primary);
  margin-bottom: 12px;
}
.calendar-heading em { font-style: italic; font-weight: 300; color: var(--text-on-dark-secondary); }
.calendar-sub {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  line-height: 1.75;
  margin-top: 12px;
}
.calendar-embed {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

/* ══════════════════════════════════════════
   08. FOOTER — DARKEST BG, LIGHT TEXT
══════════════════════════════════════════ */
.footer { background: var(--bg-darker); border-top: 1px solid rgba(255,255,255,0.07); padding: 72px clamp(24px, 6vw, 80px) 36px; }
.footer-inner {
  max-width: var(--container); margin: 0 auto 60px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-heading); font-size: 1rem; font-weight: 300; color: var(--text-on-dark-secondary); margin-bottom: 14px; font-style: italic; }
.footer-address { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.7; margin-bottom: 12px; }
.footer-phone { font-size: 14px; color: var(--text-on-dark-secondary); transition: color 0.2s; }
.footer-phone:hover { color: var(--text-on-dark-primary); }

.footer-col-heading {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13px; color: var(--text-on-dark-secondary); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-on-dark-primary); }
.footer-coming { display: flex; align-items: center; gap: 8px; }
.coming-tag {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(200,184,154,0.35); padding: 1px 6px;
}
.footer-blurb { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-cta-btn {
  display: inline-block; padding: 11px 22px;
  border: 1px solid rgba(240,237,232,0.25);
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--text-on-dark-primary);
  transition: background 0.25s, border-color 0.25s;
}
.footer-cta-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(240,237,232,0.5); }

.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 11px; color: rgba(240,237,232,0.2); }
.footer-bottom-links { display: flex; gap: 24px; font-size: 11px; color: rgba(240,237,232,0.2); }
.footer-credit { font-size: 11px; color: rgba(240,237,232,0.2); }
.footer-credit a { color: var(--accent); transition: opacity 0.2s; }
.footer-credit a:hover { opacity: 0.7; }
.footer-policy-link {
  font-size: 11px;
  color: rgba(240,237,232,0.25);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-policy-link:hover { color: rgba(240,237,232,0.6); }

/* ══════════════════════════════════════════
   BLOG SECTION — LIGHT BG, DARK TEXT
══════════════════════════════════════════ */
.blog-section {
  background: var(--bg-light);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}
.blog-inner { max-width: var(--container); margin: 0 auto; }
.blog-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.blog-header .section-eyebrow { color: var(--accent-dark); }
.blog-header .section-heading { color: var(--text-on-light-primary); }
.blog-header .section-heading em { color: var(--text-on-light-muted); }
.blog-header-sub {
  font-size: 14px; color: var(--text-on-light-muted);
  line-height: 1.7; max-width: 360px; align-self: flex-end;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.blog-card {
  background: var(--bg-light);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: background 0.25s;
}
.blog-card:hover { background: var(--bg-light-warm); }
.blog-card-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.blog-cat {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-dark);
}
.blog-date {
  font-size: 11px; color: var(--text-on-light-muted);
  letter-spacing: 0.04em;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 400;
  color: var(--text-on-light-primary);
  line-height: 1.25;
  flex: 1;
}
.blog-card:hover .blog-title { color: var(--bg-dark); }
.blog-excerpt {
  font-size: 13px; color: var(--text-on-light-muted);
  line-height: 1.7; flex: 1;
}
.blog-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.blog-author { font-size: 12px; color: var(--text-on-light-secondary); }
.blog-read-more {
  font-size: 12px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--text-on-light-primary);
  background: none; border: none; cursor: pointer;
  transition: letter-spacing 0.2s;
  font-family: var(--font-body);
}
.blog-card:hover .blog-read-more { letter-spacing: 0.1em; }

/* Blog post modal */
.blog-modal-box {
  max-width: 740px !important;
  position: relative;
}
.blog-post-body { padding: clamp(36px, 6vw, 64px); }
.blog-post-meta {
  display: flex; align-items: center; gap: 20px; margin-bottom: 20px;
}
.blog-post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text-on-dark-primary);
  margin-bottom: 16px;
}
.blog-post-byline {
  font-size: 12px; color: var(--text-on-dark-muted);
  margin-bottom: 36px; letter-spacing: 0.04em;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.blog-post-byline strong { color: var(--text-on-dark-secondary); }
.blog-post-content p {
  font-size: 15px !important; color: var(--text-on-dark-secondary) !important;
  line-height: 1.85 !important; margin-bottom: 20px !important;
}
.blog-post-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 400;
  color: var(--text-on-dark-primary);
  margin: 32px 0 12px;
}

/* Blog load more */
.blog-grid--more {
  display: none;
  margin-top: 1px;
}
.blog-grid--more.visible { display: grid; }
.blog-load-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.blog-load-more-btn {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--text-on-light-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.blog-load-more-btn:hover {
  background: var(--bg-dark);
  color: var(--text-on-dark-primary);
  border-color: var(--bg-dark);
}
.blog-load-more-btn.hidden { display: none; }

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR — dot + ring + context labels
══════════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--text-on-dark-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.3s, background 0.3s, opacity 0.3s;
  will-change: transform;
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-primary);
  white-space: nowrap;
  opacity: 0;
  transform: translate(14px, 14px);
  transition: opacity 0.2s ease;
  mix-blend-mode: difference;
}

/* States */
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  background: rgba(200,184,154,0.12);
  border-color: var(--accent);
}
body.cursor-hover .cursor-dot {
  width: 5px; height: 5px;
}
body.cursor-drag .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}
body.cursor-view .cursor-ring {
  width: 68px; height: 68px;
  background: rgba(200,184,154,0.15);
  border-color: var(--accent);
}
body.cursor-view .cursor-label,
body.cursor-drag .cursor-label {
  opacity: 1;
}

/* On white sections — invert colours */
.stats, .process, .blog-section {
  --cursor-ring-color: rgba(0,0,0,0.35);
}

/* Hide on mobile — no cursor there */
@media (hover: none) {
  .cursor-dot, .cursor-ring, .cursor-label { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}
.gallery-card { cursor: pointer; }
.gallery-card:hover .gallery-card-info h4 { color: var(--accent); transition: color 0.3s; }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 860px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(32px);
  transition: transform 0.4s var(--ease);
  scrollbar-width: none;
}
.modal-box::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-img {
  width: 100%; height: clamp(220px, 35vw, 400px);
  overflow: hidden; position: relative; flex-shrink: 0;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-body { padding: clamp(28px, 5vw, 52px); }
.modal-tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 10px;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400; color: var(--text-on-dark-primary);
  margin-bottom: 24px; line-height: 1.15;
}
.modal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 32px;
}
.modal-detail-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-on-dark-muted); margin-bottom: 6px; display: block;
}
.modal-detail-value {
  font-size: 14px; color: var(--text-on-dark-secondary); line-height: 1.6;
}
.modal-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 400;
  color: var(--text-on-dark-primary);
  margin: 28px 0 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.modal-body p {
  font-size: 14px; color: var(--text-on-dark-secondary);
  line-height: 1.78; margin-bottom: 12px;
}
.modal-techniques {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.modal-chip {
  font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark-secondary);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px;
  transition: background 0.2s;
  border-radius: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-img { position: relative; }

@media (max-width: 600px) {
  .modal-grid { grid-template-columns: 1fr; gap: 20px; }
  .modal-overlay { padding: 12px; }
}

/* Line-by-line text reveal */
.line-reveal-wrap {
  overflow: hidden;
  display: block;
}
.line-reveal {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.line-reveal.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* Image reveal overlay */
.img-reveal-wrap {
  position: relative;
  overflow: hidden;
}
.img-reveal-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform: translateX(0%);
  transition: transform 1s cubic-bezier(0.77,0,0.18,1);
  z-index: 2;
  transform-origin: right center;
}
.img-reveal-wrap.revealed::after {
  transform: translateX(101%);
}

.parallax-container { overflow: hidden; }
.parallax-img {
  transform: scale(1.12);
  will-change: transform;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollTick { 0% { top: -100%; } 100% { top: 100%; } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid-visual { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-connector { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 24px; align-items: flex-start; }
  .step-content p { max-width: none; margin: 0; }
  .calendar-section-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .stat-divider { display: none; }
  .stats-inner { justify-content: center; gap: 28px; }
  .services-grid-visual { grid-template-columns: 1fr; }
  .svc-img-wrap { height: clamp(200px, 50vw, 300px); }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { flex-direction: column; gap: 28px; }
}

/* ══════════════════════════════════
   HOVER MICRO-INTERACTIONS
   buttons get a scale-up; .svc-card/.gallery-card get a JS-driven
   cursor-tilt instead (see main.js initCursorTilt) — no CSS :hover
   transform here for those two, it would fight the inline JS transform.
══════════════════════════════════ */
.btn-process-cta { transition: background 0.25s, opacity 0.25s, transform 0.2s ease-out; }
.btn-process-cta:hover { transform: scale(1.03); }
.footer-cta-btn { transition: background 0.25s, border-color 0.25s, transform 0.2s ease-out; }
.footer-cta-btn:hover { transform: scale(1.04); }
.nav-links a.nav-cta { transition: background 0.25s, border-color 0.25s, transform 0.2s ease-out; }
.nav-links a.nav-cta:hover { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .btn-process-cta:hover,
  .footer-cta-btn:hover,
  .nav-links a.nav-cta:hover { transform: none; }
}
