/* ============================================
   NIMMIO STUDIO — Global Stylesheet
   ============================================ */

/* ===== Inter (self-hosted, identical to the reference Framer build) ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}

/* ============================================
   Unified CTA Button — Black pill + animated white dot
   Applied to all CTA-style buttons across the site
   ============================================ */

/* The white circle inside each button */
.tm-dot,
.hb-profile .pulse-dot,
.lt-pulse,
.trends-dot,
.qn-pulse,
.wc-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  animation: none !important;
  box-shadow: none !important;
}
.tm-dot::before,
.hb-profile .pulse-dot::before,
.lt-pulse::before,
.trends-dot::before,
.qn-pulse::before,
.wc-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}

/* Hover state — animate the dot (scale + glow ring) */
.tm-cta:hover .tm-dot,
.hb-profile .cta:hover .pulse-dot,
.lt-profile-cta:hover .lt-pulse,
.trends-cta:hover .trends-dot,
.qn-submit:hover .qn-pulse,
.wc-badge:hover .wc-dot {
  transform: scale(1.4);
}

/* ============================================
   Global override — disable orange/accent hover
   on all CTA buttons. Keeps lift/scale animations.
   ============================================ */
.tm-cta:hover,
.hb-profile .cta:hover,
.lt-profile-cta:hover,
.trends-cta:hover,
.qn-submit:hover,
.wc-badge:hover,
.lt-submit:hover,
.sd-cta:hover,
.wi-cta:hover,
.ecs-cta:hover,
.om-close:hover,
.cs-video:hover .cs-video-play,
.btn-light:hover,
.showreel:hover .showreel-play,
.service-item:hover .service-arrow,
.cd-cta:hover,
.btn-accent:hover,
.sa-cta:hover,
.pd-next-cta:hover,
.ct-submit:hover {
  background-color: var(--text) !important;
  color: #fff !important;
  border-color: var(--text) !important;
}
/* Special — outline buttons stay transparent */
.btn-outline:hover { background-color: transparent !important; color: var(--text) !important; }
/* Text links can keep their color (no change) */
.ft-phones a:hover,
.ft-email:hover,
.ft-credit a:hover,
.ft-nav-list a:hover,
.footer-col a:hover,
.overlay-menu .om-legal a:hover {
  color: inherit !important;
}
.tm-cta:hover .tm-dot::before,
.hb-profile .cta:hover .pulse-dot::before,
.lt-profile-cta:hover .lt-pulse::before,
.trends-cta:hover .trends-dot::before,
.qn-submit:hover .qn-pulse::before,
.wc-badge:hover .wc-dot::before {
  opacity: 1;
  transform: scale(1.7);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-video {
  width: min(640px, 78vw);
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
  display: block;
}
@media (max-width: 640px) {
  .preloader-video { width: 82vw; }
}
body.preloading {
  overflow: hidden;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: auto; }
body {
  font-family: 'Inter', 'Inter Placeholder', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; font-family: inherit; letter-spacing: inherit; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; letter-spacing: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; letter-spacing: -0.04em; }
p { font-family: inherit; letter-spacing: -0.04em; line-height: 1.55; font-weight: 400; }

/* ---------- Design Tokens ---------- */
:root {
  --bg: #F5F5F5;
  --bg-alt: #ECECEC;
  --bg-dark: #0A0A0A;
  --text: #0A0A0A;
  --text-muted: #6B6B6B;
  --text-light: #F5F5F5;
  --border: #E0E0E0;
  --accent: #FF5C28;
  --accent-hover: #E84817;
  --card: #FFFFFF;

  --container: 1520px;
  --radius: 16px;
  --radius-lg: 24px;

  --font-display: 'Inter', 'Inter Placeholder', -apple-system, sans-serif;
  --font-body: 'Inter', 'Inter Placeholder', -apple-system, sans-serif;
  --font-mono: 'Fragment Mono', 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px) { .container { padding: 0 1.25rem; } }

section { padding: 5rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

/* ---------- Typography ----------
   Spec from nimmio.com: Inter, Inter Placeholder, sans-serif
   • body text: 16px / weight 500 / -0.04em / line-height 1.5
   • headings: weight 600 / tight tracking / line-height ~1.1
   • color: rgb(9,9,9)
*/
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}
.h-hero {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}
.h-section {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.h-card {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 700px;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 35px; width: auto; display: block; }
@media (max-width: 640px) { .site-header { padding: 1rem 1.25rem; } .logo img { height: 38px; } }
.main-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0;
  flex: 1;
  padding: 0;
}
.main-nav a {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0.25rem;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  will-change: transform;
}
.main-nav a:hover { transform: translateY(-4px) scale(1.06); }
.main-nav a:active { transform: translateY(-2px) scale(1.02); }
.main-nav a.active::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--text); }
.menu-toggle { display: flex; flex-direction: column; gap: 6px; padding: 0.5rem; width: 44px; height: 44px; align-items: center; justify-content: center; position: relative; z-index: 1001; margin-left: auto; grid-column: -1; justify-self: end; }
.menu-toggle span { width: 28px; height: 2px; background: var(--text); transition: transform 0.4s ease, opacity 0.3s ease; transform-origin: center; display: block; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Fullscreen Overlay Menu ---------- */
.overlay-menu {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 999;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.overlay-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.overlay-menu .om-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 2rem;
}
.overlay-menu .om-nav { display: flex; flex-direction: column; gap: 0.25rem; text-align: center; }
.overlay-menu .om-nav a {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  opacity: 0; transform: translateY(24px);
}
.overlay-menu .om-foot,
.overlay-menu .om-contact,
.overlay-menu .om-legal,
.overlay-menu .om-copyright {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.overlay-menu.open .om-nav a {
  animation: omFadeIn 0.6s ease forwards;
}
.overlay-menu.open .om-nav a:nth-child(1) { animation-delay: 0.10s; }
.overlay-menu.open .om-nav a:nth-child(2) { animation-delay: 0.16s; }
.overlay-menu.open .om-nav a:nth-child(3) { animation-delay: 0.22s; }
.overlay-menu.open .om-nav a:nth-child(4) { animation-delay: 0.28s; }
.overlay-menu.open .om-nav a:nth-child(5) { animation-delay: 0.34s; }
.overlay-menu.open .om-nav a:nth-child(6) { animation-delay: 0.40s; }
@keyframes omFadeIn { to { opacity: 1; transform: translateY(0); } }
.overlay-menu .om-nav a { will-change: transform; }
.overlay-menu.open .om-nav a:hover { transform: translateY(-8px) scale(1.04); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); animation: none; opacity: 1; }

/* Services button inside overlay menu — looks like nav links */
.overlay-menu .om-nav .om-nav-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
  padding: 0;
  text-align: center;
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  transition: color 0.25s ease;
}
.overlay-menu.open .om-nav .om-nav-btn { animation: omFadeIn 0.6s ease forwards; }
.overlay-menu.open .om-nav .om-nav-btn:hover { transform: translateY(-8px) scale(1.04); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); animation: none; opacity: 1; }

/* Services trigger in main header nav — looks identical to <a> nav links */
.main-nav .nav-services-trigger {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

/* ---------- Services Overlay (separate fullscreen menu for service list) ---------- */
.services-overlay {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 1000;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.services-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.services-overlay .so-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 2rem;
}
.services-overlay .so-list {
  display: flex; flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.services-overlay .so-item {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.services-overlay.open .so-item { animation: omFadeIn 0.6s ease forwards; }
.services-overlay.open .so-item:nth-child(1) { animation-delay: 0.10s; }
.services-overlay.open .so-item:nth-child(2) { animation-delay: 0.18s; }
.services-overlay.open .so-item:nth-child(3) { animation-delay: 0.26s; }
.services-overlay.open .so-item:nth-child(4) { animation-delay: 0.34s; }
.services-overlay.open .so-item:hover {
  transform: translateY(-8px) scale(1.04);
  animation: none; opacity: 1;
}

/* Reuse om-foot styles from .overlay-menu for the services-overlay footer */
.services-overlay .om-foot {
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end;
  padding: 2rem 2.5rem;
}
/* Services overlay close button — always visible when overlay is open */
.services-overlay .om-close {
  position: absolute !important;
  top: 1.25rem !important;
  right: 2rem !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: var(--text) !important;
  color: var(--bg) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  cursor: pointer !important;
  z-index: 1010 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transition: transform 0.3s ease, background 0.25s ease !important;
}
.services-overlay .om-close svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #fff;
  stroke: #fff;
}
.services-overlay .om-close:hover {
  transform: rotate(90deg) !important;
}
@media (max-width: 640px) {
  .services-overlay .om-close {
    top: 1rem !important;
    right: 1.25rem !important;
    width: 48px !important;
    height: 48px !important;
  }
}
.overlay-menu .om-foot,
.services-overlay .om-foot {
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end;
  padding: 2rem 2.5rem;
  gap: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.overlay-menu .om-contact,
.services-overlay .om-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.overlay-menu .om-contact a,
.services-overlay .om-contact a { color: var(--text); }
.overlay-menu .om-contact a.email,
.services-overlay .om-contact a.email { text-decoration: underline; text-underline-offset: 4px; }
.overlay-menu .om-contact .plus-circle,
.services-overlay .om-contact .plus-circle { display:inline-flex; align-items:center; justify-content:center; width: 22px; height: 22px; border-radius: 50%; background: var(--text); color: var(--bg); font-size: 0.85rem; margin-right: 0.5rem; font-weight: 600; }
.overlay-menu .om-legal,
.services-overlay .om-legal { display: flex; gap: 2rem; justify-content: center; }
.overlay-menu .om-legal a,
.services-overlay .om-legal a { color: var(--text-muted); transition: color 0.2s; }
.overlay-menu .om-legal a:hover,
.services-overlay .om-legal a:hover { color: var(--accent); }
.overlay-menu .om-copyright,
.services-overlay .om-copyright { color: var(--text-muted); text-align: right; }
.overlay-menu .om-edit {
  position: fixed; right: 1.25rem; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 0.95rem;
}
.om-close {
  position: absolute; top: 1.25rem; right: 2rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1002;
  transition: transform 0.3s ease, background 0.25s ease;
  opacity: 0;
}
.overlay-menu.open .om-close { opacity: 1; animation: omFadeIn 0.4s ease 0.05s forwards; }
.om-close:hover { background: var(--accent); transform: rotate(90deg); }
@media (max-width: 640px) { .om-close { top: 1rem; right: 1.25rem; width: 48px; height: 48px; } }
@media (max-width: 768px) {
  .overlay-menu .om-foot { grid-template-columns: 1fr; text-align: left; gap: 1.25rem; padding: 1.5rem; }
  .overlay-menu .om-legal { justify-content: flex-start; gap: 1.25rem; }
  .overlay-menu .om-copyright { text-align: left; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 1rem; }
}
body.menu-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.75rem; border-radius: 999px;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { transform: translateY(-2px); }
.btn-light { background: var(--bg); color: var(--text); }
.btn-light:hover { transform: translateY(-2px); }
.btn .arrow { width: 18px; height: 18px; transition: transform 0.25s; }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* ---------- Video Hero Banner ---------- */
.hero-banner {
  position: relative;
  min-height: calc(100vh - 96px);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(50,45,40,0.5), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(40,35,30,0.6), transparent 55%),
    radial-gradient(ellipse at 50% 50%, #1a1614 0%, #0a0908 70%, #050505 100%);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  border-radius: 20px;
  margin: 0 12px 12px;
}
@media (max-width: 640px) { .hero-banner { margin: 0 8px 8px; border-radius: 16px; } }
.hero-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 18px 18px, 32px 32px;
  background-position: 0 0, 9px 9px;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}
.hero-banner-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 3rem 1.75rem;
  gap: 0;
}
.hb-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex: 0 0 auto;
}
.hb-spacer-l { flex: 0 0 220px; }
.hb-middle { flex: 1 1 auto; min-height: 3rem; position: relative; }
.hb-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex: 0 0 auto;
}
/* Decorative + markers — horizontal row at exact vertical middle */
.hb-plus {
  position: absolute; z-index: 3;
  color: rgba(255,255,255,0.45);
  font-size: 1.5rem; font-weight: 300;
  pointer-events: none; line-height: 1;
  top: 50%; transform: translateY(-50%);
}
.hb-plus.tl  { left: 4%; }
.hb-plus.tcl { left: 27%; }
.hb-plus.tcr { left: 50%; }
.hb-plus.tr  { left: 73%; }

/* Right-aligned wordmark — upper area */
.hb-wordmark {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  flex: 0 1 auto;
}
.hb-wordmark .nimmio-wordmark-img {
  width: clamp(360px, 62vw, 920px);
  height: auto;
  display: block;
  margin: 0 0 0 auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
}
.hb-wordmark .studio {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: -0.15em;
  color: #fff;
  text-align: right;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}

/* Right services list */
.hb-services {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-right: 1rem;
  padding-top: 2.5rem;
  flex: 0 0 auto;
  min-width: 220px;
}
.hb-services li {
  font-size: 1.125rem;         /* 18px — matches reference */
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
  list-style: none;
}

/* Bottom row */
.hb-tagline {
  flex: 0 1 500px;
  max-width: 500px;
  color: rgba(255,255,255,0.95);
  font-size: 1.375rem;         /* 22px — matches reference */
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
}
.hb-copyright {
  flex: 0 0 auto;
  text-align: right;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  padding-bottom: 0.5rem;
}
.hb-profile {
  flex: 0 0 auto;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 380px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 3px 10px rgba(0,0,0,0.18);
}
.hb-profile .avatar {
  width: 115px; height: 150px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd6c5, #b8ad95);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hb-profile .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hb-profile .avatar-initials {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(0,0,0,0.4);
}
.hb-profile .info {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4px 8px 4px 0;
  gap: 10px;
}
.hb-profile .role {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.hb-profile .role-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.hb-profile .role-org {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 1px;
  letter-spacing: -0.04em;
}
.hb-profile .name {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
.hb-profile .cta {
  align-self: flex-start;
  background: var(--text);
  color: #fff;
  padding: 8px 6px 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 0 0;
  min-width: 120px;
  transition: background 0.2s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
}
.hb-profile .cta:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.04);
}
.hb-profile .pulse-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
  margin-left: auto;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  50%      { box-shadow: 0 0 0 4px rgba(255,255,255,0); }
}

.hb-edit-fab {
  position: absolute;
  right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1100px) {
  .hb-profile { min-width: 280px; }
  .hb-plus.tcl, .hb-plus.tcr { display: none; }
}
@media (max-width: 900px) {
  .hero-banner { min-height: auto; }
  .hero-banner-inner { padding: 2rem 1.25rem 1.5rem; gap: 1.25rem; }
  .hb-top { flex-direction: column; align-items: center; gap: 1.5rem; }
  .hb-spacer-l { display: none; }
  .hb-wordmark { align-items: center; text-align: center; }
  .hb-wordmark .studio { text-align: center; align-self: center; }
  .hb-services { text-align: center; align-items: center; padding: 0; min-width: 0; }
  .hb-middle { min-height: 0.5rem; }

  /* Bottom row — stacked, profile sits BETWEEN tagline and copyright via flex order */
  .hb-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }
  .hb-tagline { text-align: center; max-width: 100%; order: 1; margin: 0;flex: 0 1 160px; }
  .hb-profile { order: 2; }            /* profile in the middle */
  .hb-copyright { order: 3; margin: 0; }
  .hb-plus { display: none; }

  /* Simran profile — same white card as desktop, just compact */
  .hb-profile {
    display: flex;
    width: auto;
    max-width: 340px;
    align-items: stretch;
    gap: 14px;
    padding: 8px;
    text-align: left;
  }
  .hb-profile .avatar { width: 90px; height: 115px; }
  .hb-profile .info { padding: 2px 4px 2px 0; gap: 6px; }
  .hb-profile .role-title { font-size: 0.82rem; }
  .hb-profile .role-org { font-size: 0.72rem; }
  .hb-profile .name { font-size: 1.1rem; }
  .hb-profile .cta { padding: 6px 6px 6px 12px; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .hero-banner-inner { padding: 2rem 1rem 1.5rem; gap: 1.5rem; }
  .hb-profile {
    max-width: 300px;
    padding: 6px;
    gap: 10px;
  }
  .hb-profile .avatar { width: 76px; height: 96px; }
  .hb-profile .role-title { font-size: 0.78rem; }
  .hb-profile .role-org { font-size: 0.7rem; }
  .hb-profile .name { font-size: 1rem; }
  .hb-profile .cta { padding: 5px 5px 5px 10px; font-size: 0.68rem; }
}

/* ---------- Inline (legacy) Hero ---------- */
.hero { padding: 6rem 0 4rem; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.hero-tag { padding: 0.5rem 1.1rem; border: 1px solid var(--border); border-radius: 999px; font-size: 0.85rem; background: rgba(255,255,255,0.5); backdrop-filter: blur(10px); }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.hero-stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; letter-spacing: -0.04em; }
.hero-stat .label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- Client Logos Slider ---------- */
.clients-section {
  padding: 4rem 0 4.5rem;
  background: var(--bg);
  overflow: hidden;
}
.clients-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin: 0 auto 2.5rem;
  padding: 0 3rem;
  max-width: var(--container);
}
.clients-head .ch-left {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.04em;
}
.clients-head .ch-bullet {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1px;
}
.clients-head .ch-right {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.04em;
}
@media (max-width: 640px) {
  .clients-head { padding: 0 1.25rem; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
  .clients-head .ch-left, .clients-head .ch-right { font-size: 0.9rem; }
  .clients-head .ch-bullet { width: 22px; height: 22px; font-size: 0.9rem; }
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-marquee-track {
  display: flex;
  gap: 0.50rem;
  align-items: center;
  width: max-content;
  animation: logoScroll 42s linear infinite;
  will-change: transform;
  padding: 0.5rem 0;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 250px;
  background: #FFFFFF;
  border-radius: 22px;
  padding: 2rem 2.5rem;
  border: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.logo-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}
.logo-item img {
  width: 160px;
  height: 70px;
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.logo-item:hover img { opacity: 1; filter: grayscale(0%); }
@keyframes logoScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 768px) {
  .clients-section { padding: 3rem 0; }
  .clients-head { margin-bottom: 2rem; }
  .logo-marquee-track { gap: 1rem; animation-duration: 28s; }
  
}

/* ---------- Filter Pills ---------- */
.filter-pill {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-pill:hover { transform: translateY(-2px); border-color: #9F9F9F; }
.filter-pill.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.pc-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: 0.4rem;
  padding-left: 1.25rem;
}

/* ---------- Projects Section ---------- */
.projects-section {
  padding: 6rem 0 5rem;
  background: var(--bg);
}
.projects-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 4rem;
  padding: 0 3rem;
  margin: 0 auto 5rem;
  max-width: var(--container);
}
.projects-head .ph-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.projects-head .ph-heading {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
  margin: 0;
}
.projects-head .ph-tag {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-top: 0.5rem;
}
.projects-head .ph-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 280px;
  margin-top: 1.5rem;
  align-self: start;
}
.projects-head .ph-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  margin: 0;
}
.projects-head .ph-cta {
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: -0.04em;
}
@media (max-width: 900px) {
  .projects-section { padding: 4rem 0 3rem; }
  .projects-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
  }
  .projects-head .ph-desc { max-width: 100%; margin-top: 0.5rem; }
}

/* ---------- Projects Grid ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem; }
.section-head .title-wrap { max-width: 700px; }

.projects-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .projects-wrap { padding: 0 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: transparent;
}
.pc-header {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.pc-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
}
.pc-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
}
.pc-year {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.04em;
}
.pc-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pc-more:hover { background: rgba(0,0,0,0.04); }
.pc-more span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background-color 0.35s ease, transform 0.35s ease;
}
/* Colored dots on card hover — macOS-style traffic lights */
.project-card:hover .pc-more span:nth-child(1) { background: #FF5F57; }   /* red   */
.project-card:hover .pc-more span:nth-child(2) { background: #FEBC2E; }   /* yellow */
.project-card:hover .pc-more span:nth-child(3) { background: #28C940; }   /* green */

.pc-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  isolation: isolate;
}
.pc-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, transform;
}
.pc-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  transition: background 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.pc-thumb-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-thumb-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}
.pc-thumb-logo {
  max-width: 38%;
  max-height: 22%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0,0,0,0.55));
}

/* Soft default overlay so logo is readable without hover */
.pc-thumb-overlay { opacity: 0.6; }

/* HOVER EFFECTS */
.project-card:hover .pc-thumb-img {
  filter: blur(8px) brightness(0.85);
  transform: scale(1.04);
}
.project-card:hover .pc-thumb-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.project-card:hover .pc-thumb-title {
  transform: scale(1.06);
}

/* ---------- Why Choose Us — Section Head ---------- */
.why-section { padding: 6rem 0 5rem; background: var(--bg); }
.why-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--container);
  padding: 0 3rem;
  margin: 0 auto 4rem;
}
.why-head .wh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  padding-top: 0.75rem;
}
.why-head .wh-bullet {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1px;
  flex-shrink: 0;
}
.why-head .wh-heading {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
  max-width: 1100px;
}
.why-head .wh-muted { color: var(--text-muted); }
@media (max-width: 900px) {
  .why-section { padding: 4rem 0 3rem; }
  .why-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
  }
  .why-head .wh-eyebrow { padding-top: 0; }
}

/* ---------- Why Choose Us — Image + Stats Layout ---------- */
.why-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.why-content {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) 2.4fr;
  gap: 11rem;
  align-items: stretch;
}

/* LEFT: image with hover overlay */
.wc-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1a1a1a;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  isolation: isolate;
}
.wc-image .wc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wc-plus {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 400; line-height: 1;
  z-index: 3;
}
.wc-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
.wc-image:hover .wc-img {
  filter: blur(6px) brightness(0.7);
  transform: scale(1.04);
}
.wc-image:hover .wc-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wc-hover-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.wc-image:hover .wc-hover-text { transform: translateY(0); }
.wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  padding: 0.6rem 0.6rem 0.6rem 1rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(10px);
  transition-delay: 0.1s;
}
.wc-image:hover .wc-badge {
  transform: translateY(0);
}
.wc-badge:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.04);
}
.wc-badge .wc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}

/* RIGHT: description + stats */
.wc-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.wc-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 720px;
}
.wc-desc strong {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.wc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  flex: 1;
}
.wc-stat-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  min-height: 360px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.wc-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.wcs-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.wcs-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
}
.wcs-idx {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.wcs-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  text-align: right;
  margin-bottom: auto;
}
.wcs-desc {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: right;
  margin-top: auto;
}

@media (max-width: 900px) {
  .why-wrap { padding: 0 1.5rem; }
  .why-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .wc-image { aspect-ratio: 16/10; }
  .wc-stat-card { min-height: 260px; padding: 1.5rem; }
  .wcs-label, .wcs-desc { text-align: left; }
}
@media (max-width: 540px) {
  .wc-stats { grid-template-columns: 1fr; }
}

/* ---------- Why Choose Us (legacy 3-card grid) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--card); border-radius: var(--radius-lg); padding: 2.5rem; transition: transform 0.3s; border: 1px solid var(--border); }
.why-card:hover { transform: translateY(-6px); }
.why-card .icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.why-card h3 { margin-bottom: 0.75rem; }
.why-card p { color: var(--text-muted); }

/* ---------- Services — Dark Accordion (full-width like banner) ---------- */
.services-dark {
  padding: 2rem 0;
}
.sd-card {
  margin: 0 12px;
  background: #050505;
  color: #fff;
  border-radius: 20px;
  padding: 9.5rem clamp(2rem, 5vw, 5rem) 9.5rem;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}
@media (max-width: 640px) {
  .sd-card { margin: 0 8px; border-radius: 16px; }
  .sd-foot {grid-template-columns:50px auto 1fr!important;}
}
.sd-head,
.sd-list,
.sd-foot {
  max-width: var(--container);
  
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.sd-head {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}
.sd-eyebrow {
  position: absolute;
  top: 0; left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.95);
}
.sd-bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1px;
}
.sd-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: #fff;
  margin: 0;
}
.sd-count {
  font-size: 0.22em;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.55);
  vertical-align: top;
  margin-left: 0.05em;
  position: relative;
  top: 0.5em;
}

/* List + rows */
.sd-list { display: flex; flex-direction: column; }
.sd-row {
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  cursor: pointer;
}
.sd-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.sd-row.is-open {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  cursor: default;
}
.sd-row:not(.is-open):hover { background: rgba(255,255,255,0.015); }

.sd-row-inner {
  display: grid;
  grid-template-columns: 260px 1.4fr 1fr 60px;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}
.sd-row.is-open .sd-row-inner { padding: 1.5rem 0; }

.sd-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.04em;
  align-self: center;
}

/* Middle column */
.sd-mid { min-width: 0; }
.sd-name-closed {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  display: block;
}
.sd-expanded {
  display: none;
  grid-template-columns: 132px 1fr;
  gap: 1.5rem;
  align-items: center;
}
.sd-row.is-open .sd-name-closed { display: none; }
.sd-row.is-open .sd-expanded { display: grid; }
.sd-thumb {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
.sd-expanded-text { min-width: 0; }
.sd-name-open {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.55rem;
}
.sd-desc {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 380px;
}

/* Toggle button */
.sd-toggle {
  grid-column: 4;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  justify-self: end;
  align-self: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.sd-row:hover .sd-toggle {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.sd-line {
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: 12px 12px;
}
.sd-row.is-open .sd-line-v { transform: scaleY(0); opacity: 0; }

/* Categories — only rendered when row is open */
.sd-cats {
  grid-column: 3;
  display: none;
  align-self: center;
}
.sd-row.is-open .sd-cats { display: block; }
.sd-cats-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.85rem;
}
.sd-cats-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sd-pill {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: #050505;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #FFFFFF;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}
.sd-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.sd-pill-more {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: transparent;
}
.sd-pill-more:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Footer button — aligned with accordion title column */
.sd-foot {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 260px auto 1fr;
  gap: 2rem;
  align-items: center;
}
.sd-foot::before { content: ''; }
.sd-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  justify-self: start;
  background: #fff;
  color: #050505;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sd-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
  transform: translateY(-3px) scale(1.04);
}
.sd-cta .arrow { width: 16px; height: 16px; transition: transform 0.25s; }
.sd-cta:hover .arrow { transform: translate(3px, -3px); }

/* Responsive */
@media (max-width: 1000px) {
  .sd-row-inner { grid-template-columns: 60px 1fr 44px; gap: 1rem; padding: 1.25rem 0; }
  .sd-row.is-open .sd-row-inner {
    grid-template-columns: 60px 1fr 44px;
    grid-template-rows: auto auto;
    padding: 1.75rem 0;
  }
  .sd-cats { grid-column: 2; grid-row: 2; margin-top: 1.25rem; }
  .sd-row.is-open .sd-num { align-self: start; padding-top: 0.4rem; }
  .sd-row.is-open .sd-toggle { align-self: start; }
  .sd-toggle { width: 36px; height: 36px; }
}
@media (max-width: 640px) {
  .sd-card { padding: 3rem 1.25rem 2rem; }
  .sd-head { margin-bottom: 2.5rem; }
  .sd-eyebrow { position: static; justify-content: center; margin-bottom: 1.25rem; }
  .sd-expanded { grid-template-columns: 1fr; gap: 1rem; }
  .sd-thumb { width: 100%; height: auto; aspect-ratio: 1/1; max-width: 280px; }
}

/* ---------- Services Section (legacy light) ---------- */
.services-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.service-item { display: grid; grid-template-columns: 80px 1fr auto 60px; gap: 2rem; align-items: center; padding: 2.5rem 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: padding 0.3s; }
.service-item:hover { padding-left: 1.5rem; }
.service-num { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 500; color: var(--text-muted); letter-spacing: -0.04em; }
.service-name { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.05; }
.service-tags { color: var(--text-muted); font-size: 0.9rem; font-weight: 400; letter-spacing: -0.015em; max-width: 380px; text-align: right; line-height: 1.5; }
.service-arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.service-item:hover .service-arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
@media (max-width: 768px) {
  .service-item { grid-template-columns: 1fr auto; gap: 1rem; padding: 2rem 0; }
  .service-num, .service-tags { display: none; }
}

/* ---------- About Us — Centered Headline ---------- */
.about-us {
  padding: 6rem 0 5rem;
  background: var(--bg);
}
.about-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.au-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  padding-top: 1.5rem;
}
.au-bullet {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1px;
  flex-shrink: 0;
}
.au-content {
  max-width: 900px;
}
.au-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}
.au-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.au-muted { color: var(--text-muted); }
.au-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 580px;
}
@media (max-width: 900px) {
  .about-us { padding: 4rem 0 3rem; }
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .au-eyebrow { padding-top: 0; }
  .au-logo { height: 36px; margin-bottom: 1rem; }
  
}

/* ---------- Process Cards + Showreel ---------- */
.process-cards-section {
  padding: 2rem 0 4rem;
  background: var(--bg);
}
.process-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.pc-step {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.pc-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.pcs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pcs-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pcs-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(9,9,9,0.18);
}
.pcs-dots .dot.is-on { background: var(--text); }
.pcs-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.pcs-body {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.pcs-thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ddd, #aaa);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.pcs-text { min-width: 0; }
.pcs-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.35rem;
}
.pcs-desc {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

/* Showreel — play button + text always visible */
.showreel {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  isolation: isolate;
  padding: 0;
  border: 0;
  font: inherit;
}
.showreel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: grayscale(0.4) brightness(0.95);
}
.showreel:hover .showreel-img {
  transform: scale(1.03);
  filter: grayscale(0) brightness(1) blur(3px);
}
.showreel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}
.showreel:hover .showreel-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}
.showreel-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
}
.showreel-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease;
}
.showreel:hover .showreel-play {
  transform: scale(1.12);
  background: var(--accent);
  color: #fff;
}
.showreel-play svg { margin-left: 3px; transition: transform 0.25s ease; }
.showreel:hover .showreel-play svg { transform: scale(1.1); }
.showreel-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.showreel:hover .showreel-text { transform: translateX(4px); }
.sr-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: color 0.25s ease;
}
.showreel:hover .sr-title { color: #fff; }
.sr-sub {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.9);
  margin-top: 0.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ---------- Video Modal Popup ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.vm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.vm-content {
  position: relative;
  width: min(90vw, 1100px);
  max-height: 90vh;
  z-index: 1;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-modal.is-open .vm-content { transform: scale(1); }
.vm-close {
  position: absolute;
  top: -52px;
  right: -2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.2s ease;
}
.vm-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}
.vm-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.vm-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body.video-open { overflow: hidden; }
@media (max-width: 640px) {
  .vm-content { width: 95vw; }
  .vm-close { top: -44px; right: 0; width: 36px; height: 36px; }
}

@media (max-width: 900px) {
  .process-wrap { padding: 0 1.5rem; }
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
  .showreel { aspect-ratio: 4/3; border-radius: 16px; }
  .showreel-play { width: 56px; height: 56px; }
  
}
@media (max-width: 540px) {
  .pc-grid { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process { background: var(--bg-dark); color: var(--text-light); border-radius: var(--radius-lg); margin: 0 2rem; padding: 5rem 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 0 3rem; margin-top: 3rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); padding: 0 2rem; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.15); }
.process-step .step-num { font-family: var(--font-display); font-size: 1rem; color: var(--accent); margin-bottom: 1.5rem; }
.process-step h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.75rem; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.process-head { padding: 0 3rem; }
.process-head .h-section, .process-head .eyebrow { color: var(--text-light); }
.process-head .eyebrow { color: var(--accent); }
@media (max-width: 900px) { .process-head { padding: 0 2rem; } .process { margin: 0 1rem; } }

/* ---------- Experiences (new Testimonials) ---------- */
.experiences-section {
  padding: 5rem 0 4rem;
  background: var(--bg);
}

.experiences-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 900px) {
  .experiences-wrap {padding: 0 1.5rem; }
  .experiences-section { padding: 2rem 0 2rem; }

}
.exp-head {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.exh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  padding-top: 1rem;
}
.exh-bullet {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1px;
  flex-shrink: 0;
}
.exh-center {
  text-align: center;
}
.exh-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
  margin: 0;
}
.exh-sub {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-top: 0.5rem;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

/* ----- Stats card (column 1) ----- */
.exp-stats {
  background: #fff;
  border-radius: 22px;
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  min-height: 100%;
}
.exp-stats:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}
.exp-stats { min-height: 460px; }
.ecs-top { display: flex; align-items: flex-start; gap: 1.25rem; }
.ecs-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
  flex-shrink: 0;
}
.ecs-num-sm {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.04em;
  vertical-align: super;
}
.ecs-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: var(--text-muted);
  padding-top: 0.25rem;
}
.ecs-text strong {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.ecs-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  gap: 1.5rem;
}
.ecs-logo {
  height: 48px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
  align-self: flex-start;
}
.ecs-trust { display: flex; align-items: center; gap: 0.85rem; }
.ecs-avatars { display: flex; align-items: center; flex-shrink: 0; }
.ec-av {
  width: 30px; height: 30px;
  border-radius: 20%;
  border: 2px solid #fff;
  margin-left: -10px;
  display: inline-block;
  background-color: #ccc;
}
.ec-av:first-child { margin-left: 0; }
.ec-av-count {
  background: var(--text);
  color: #fff;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  width: 32px;
  height: 32px;
  border-radius: 20%;
  margin-left: -10px;
  flex-shrink: 0;
}
.ec-av-count sup { font-size: 0.65em; margin-left: 1px; }
.ecs-trust-text { display: flex; flex-direction: column; line-height: 1.2; }
.ecs-stars { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.08em; line-height: 1; }
.ecs-tt {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 0.25rem;
}
.ecs-cta {
  background: var(--text);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-align: center;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ecs-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ----- Testimonial column (mini + quote stacked) ----- */
.exp-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 460px;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.exp-col.variant-name-bottom { flex-direction: column-reverse; }

/* Hover: cards visually merge by closing the gap */
.exp-col:hover {
  gap: 0;
}
/* Kill individual card shadows when merged — shadow goes on container instead */
.exp-col:hover .exp-mini,
.exp-col:hover .exp-quote {
  transform: translateY(0);
  box-shadow: none;
}
.exp-col {
  border-radius: 22px;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.exp-col:hover {
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}
/* Round only outer corners on hover so the pair reads as one card */
.exp-col.variant-name-top:hover .exp-mini {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.exp-col.variant-name-top:hover .exp-quote {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.exp-col.variant-name-bottom:hover .exp-quote {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.exp-col.variant-name-bottom:hover .exp-mini {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.exp-mini {
  background: #fff;
  border-radius: 22px;
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-mini:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.ec-photo {
  width: 46px; height: 46px;
  border-radius: 10px;
  background-color: #d8c5a8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.ec-author-info { min-width: 0; flex: 1; }
.ec-name {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}
.ec-role {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.exp-quote {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.exp-quote:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.06); }

.ec-stars-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ec-stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.ec-plus {
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.45;
}

.ec-quote {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

/* For name-top: stars at TOP of quote box, quote at BOTTOM */
.variant-name-top .exp-quote .ec-stars-row { order: -1; }
.variant-name-top .exp-quote .ec-quote { margin-top: auto; }
/* For name-bottom: quote at TOP, stars at BOTTOM */
.variant-name-bottom .exp-quote {
  flex-direction: column;
  justify-content: space-between;
}
.variant-name-bottom .exp-quote .ec-quote { order: 1; margin-bottom: auto; }
.variant-name-bottom .exp-quote .ec-stars-row { order: 2; margin-top: auto; }

@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .exp-head { grid-template-columns: 1fr; text-align: left; }
  .exh-center { text-align: left; }
  .exh-spacer { display: none; }
}
@media (max-width: 560px) {
  .exp-grid { grid-template-columns: 1fr; }
}

/* ---------- Big Stats Counter ---------- */
.big-stats-section {
  padding: 5rem 0 4rem;
  background: var(--bg);
}
.bs-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.bs-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.bs-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
}
.bs-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .big-stats-section { padding: 3rem 0; }
  .bs-wrap { padding: 0 1.5rem; }
  .bs-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .bs-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Testimonials (legacy) ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.t-card { background: var(--card); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); position: relative; }
.t-card .stars { color: var(--accent); margin-bottom: 1.25rem; letter-spacing: 0.1rem; }
.t-card blockquote { font-size: 1.1rem; font-weight: 400; line-height: 1.55; letter-spacing: -0.04em; margin-bottom: 2rem; }
.t-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #ff8e6f); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; letter-spacing: -0.04em; }
.t-author .name { font-weight: 600; letter-spacing: -0.03em; }
.t-author .role { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; letter-spacing: -0.01em; margin-top: 0.2rem; }

/* ---------- FAQ — 2-column ---------- */
.faq-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.faq-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT */
.faq-left { padding-top: 0.5rem; }
.faq-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.faq-side {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 320px;
}

/* RIGHT — accordion cards */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}
.faq-card.is-open {
  background: #050505;
  color: #fff;
}
.faq-q {
  width: 100%;
  padding: 1.1rem 1.4rem 0rem 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: inherit;
  text-align: left;
}
.faq-card.is-open .faq-q-text {padding-bottom: 1.1rem;}
.faq-q-text { flex: 1; }
.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  color: inherit;
  opacity: 0.7;
}
.faq-card.is-open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-card.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: 0 1.4rem 1.25rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
  .faq-section { padding: 3rem 0; }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .faq-side { max-width: 100%; }
}

/* ---------- What It Is & What You Get ---------- */
.whatis-section {
  padding: 2rem 0;
}
.whatis-card {
  margin: 0 12px;
  background: #050505;
  color: #fff;
  border-radius: 20px;
  padding: 8rem clamp(2rem, 5vw, 5rem) 8rem;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}
@media (max-width: 640px) { .whatis-card { margin: 0 8px; border-radius: 16px; padding: 3rem 1.25rem; } }

.wi-head {
  max-width: var(--container);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: flex-start;
  gap: 10rem;
}
.wi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.95);
}
.wi-bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1px;
}
.wi-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin: 0;
  text-align: left;
  justify-self: start;
  width: 850px;
}

/* Tab description (varies per tab) — 2-column matching heading */
.wi-desc-wrap {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  position: relative;
}
.wi-desc {
  display: none;
  grid-template-columns: 220px 1fr;
  gap: 10rem;
  align-items: start;
}
.wi-desc.is-active { display: grid; }
.wi-desc::before {
  content: '';
  display: block;
}
.wi-desc p {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1rem;
  text-align: left;
}
.wi-desc p:last-child { margin-bottom: 0; }

/* Tab pills — aligned with heading column 2 */
.wi-tabs-wrap {
  max-width: var(--container);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10rem;
  align-items: center;
}
.wi-tabs-wrap::before {
  content: '';
  display: block;
}
.wi-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
  justify-content: flex-start;
  border-radius: 999px;
  padding: 0.4rem;
  width: fit-content;
  justify-self: start;
}
.wi-tab {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.wi-tab:hover { color: #fff; }
.wi-tab.is-active {
  background: #fff;
  color: #050505;
}

/* Section label */
.wi-section-label {
  max-width: var(--container);
  margin: 0 auto 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.85);
}
.wi-section-label .wi-bullet {
  background: #fff;
  color: #050505;
}

/* Panel show/hide */
.wi-panel {
  display: none;
  max-width: var(--container);
  margin: 0 auto;
}
.wi-panel.is-active { display: block; }

.wi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0;
}
.wi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
}
.wi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.wi-cn {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.wi-csub {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.wi-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.5rem 0;
}
.wi-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wi-list li {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-left: 1rem;
}
.wi-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.wi-foot {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
}
.wi-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #050505;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wi-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}
.wi-cta .arrow { width: 16px; height: 16px; transition: transform 0.25s; }
.wi-cta:hover .arrow { transform: translate(3px, -3px); }

@media (max-width: 1100px) {
  .wi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .wi-head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .wi-desc {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wi-desc::before { display: none; }
  .wi-tabs-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wi-tabs-wrap::before { display: none; }
}
@media (max-width: 700px) {
  .wi-grid { grid-template-columns: 1fr; }
  .wi-eyebrow { justify-content: flex-start; }
  .wi-tabs { flex-direction: column; width: 100%; }
  .wi-tab { width: 100%; text-align: center; }
}

/* ---------- CSF Case Study ---------- */
.case-study-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.cs-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.cs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
  align-items: stretch;
}
.cs-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* LEFT — Video poster */
.cs-video {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  min-height: 540px;
  isolation: isolate;
}
.cs-video-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-video:hover .cs-video-img { transform: scale(1.03); }
.cs-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.cs-video-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.cs-video-tag strong {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}
.cs-video-tag span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.15rem;
  letter-spacing: -0.015em;
}
.cs-video-plus {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
}
.cs-video-name {
  position: absolute;
  bottom: 5rem;
  left: 0; right: 0;
  z-index: 2;
}
.csvn-strip {
  background: #F7C234;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  padding: 0.45rem 1.25rem;
  display: inline-block;
}
.csvn-sub {
  background: #F7C234;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0.25rem 1.25rem 0.5rem;
  display: inline-block;
  margin-top: -1px;
}
.cs-video-tagline {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  margin: 0;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  text-align: right;
  z-index: 2;
}
.cs-video-tagline-sub { font-weight: 500; opacity: 0.85; }
.cs-video-play {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.25s ease, transform 0.3s ease;
}
.cs-video:hover .cs-video-play { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* TOP MIDDLE — Engagement Boost */
.cs-engagement {
  grid-column: 2;
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 100% 50%, rgba(0,0,0,0.025) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(0,0,0,0.015) 0%, transparent 70%),
    #fff;
  background-size: 60% 60%, 100% 100%, 100% 100%;
  background-position: right center, right center, 0 0;
  background-repeat: no-repeat;
  padding: 1.75rem;
  justify-content: space-between;
  min-height: 540px;
}
.cse-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.cse-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2.4rem, 1.9vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
  max-width: 320px;
}
.cse-muted { color: var(--text-muted); font-weight: 600; }

.cs-rating-bottom {
  margin-top: auto;
  padding-top: 2rem;
}
.cs-stars { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.1em; }
.cs-quote {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text);
  margin: 0.6rem 0 1rem;
}
.cs-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cs-author-photo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c9dce8, #5e8aa8);
  flex-shrink: 0;
}
.cs-author-photo img{
  width: 100%; height: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.cs-author-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.2;
}
.cs-author-role {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.1rem;
  letter-spacing: -0.01em;
}

/* TOP RIGHT — 50K */
.cs-reached {
  grid-column: 3;
  grid-row: 1;
  min-height: 260px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.cs-ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.cs-ring-svg { display: block; }
.cs-ring-num {
  position: absolute;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-ring-label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  padding-top: 1.25rem;
  max-width: 300px;
  text-align: center;
}

/* BOTTOM RIGHT — 100+ chart */
.cs-chart {
  grid-column: 3;
  grid-row: 2;
  min-height: 260px;
  justify-content: space-between;
}
.cs-chart-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.cs-chart-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}
.cs-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  margin-top: 1.5rem;
  height: 170px;
  padding: 0 0.25rem;
}
.cs-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.cs-bar-fill {
  width: 35px;
  background: #ECECEC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.cs-bar-fill-dark { background: var(--text); }
.cs-bar-val {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  white-space: nowrap;
}
.cs-bar-fill-dark .cs-bar-val { color: #fff; }
.cs-bar-mon {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.cs-bar:last-child .cs-bar-mon { color: var(--text); font-weight: 600; }

@media (max-width: 1100px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .cs-video { grid-column: 1 / 3; grid-row: 1; min-height: 380px; }
  .cs-engagement { grid-column: 1; grid-row: 2 / 4; min-height: 460px; }
  .cs-reached { grid-column: 2; grid-row: 2; }
  .cs-chart { grid-column: 2; grid-row: 3; }
}
@media (max-width: 700px) {
  .cs-wrap { padding: 0 1.5rem; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-video, .cs-engagement, .cs-reached, .cs-chart { grid-column: 1; grid-row: auto; min-height: auto; }
  .cs-engagement { min-height: 380px; }
}

/* ---------- Approach Statement ---------- */
.approach-section {
  padding: 5rem 0 4rem;
  background: var(--bg);
}
.approach-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.ap-left { display: flex; flex-direction: column; gap: 1.5rem; }
.ap-logo {
  height: 48px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
  align-self: flex-start;
}
.ap-side {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 240px;
}
.ap-right {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.ap-lead {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0;
}
.ap-muted { color: var(--text-muted); font-weight: 400; }
.ap-bold { color: var(--text); font-weight: 600; letter-spacing: -0.035em; }
.ap-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 720px;
}
@media (max-width: 900px) {
  .approach-section { padding: 3rem 0; }
  .approach-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .ap-logo { height: 40px; }
  .ap-right { gap: 1.5rem; }
}

/* ---------- Team — Faces behind the stories (new) ---------- */
.team-section {
  padding: 2rem 0 4rem;
}
.team-card-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
}
.team-grid-2col {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid var(--border);
}
.team-left {
  padding: 1rem 1rem 0;
  display: flex;
  flex-direction: column;
}
.team-logo {
  height: 44px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
}
.team-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}
.team-muted { color: var(--text-muted); font-weight: 600; }
.team-pluses {
  display: flex;
  gap: 12rem;
  margin: 2.5rem 0;
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 300;
}
.team-plus { line-height: 1; opacity: 0.55; }
.team-mission { margin-top: auto; }
.team-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.tm-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 0.65rem;
}
.tm-side {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 320px;
}
.tm-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--text);
  color: #fff;
  padding: 0.7rem 0.7rem 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tm-cta:hover { background: var(--accent); transform: translateY(-2px) scale(1.04); }
/* .tm-dot styling now lives in the global unified CTA section at top of file */
.tm-paragraph {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 360px;
}
.tm-paragraph strong { color: var(--text); font-weight: 600; }
.team-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.team-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: #2a2a2a;
  isolation: isolate;
  cursor: pointer;
}
.team-tile-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-tile:hover .team-tile-img { transform: scale(1.04); }
.team-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.team-tile-plus {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  line-height: 1;
}
.team-tile-role {
  position: absolute;
  top: 0.95rem; right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  text-align: right;
}
.team-tile-role strong {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
}
.team-tile-role span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.75);
  margin-top: 0.15rem;
}
.team-tile-name {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 2;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@media (max-width: 900px) {
  .team-grid-2col { grid-template-columns: 1fr; padding: 1.5rem; gap: 2rem; }
  .team-left { padding: 0; }
  .team-mission-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-pluses { display: none; }
}
@media (max-width: 480px) {
  .team-right { grid-template-columns: 1fr; }
}

/* ---------- Team (legacy 4-card grid) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-6px); }
.team-photo { aspect-ratio: 1/1.1; background: linear-gradient(135deg, #c8c4b8, #a8a496); position: relative; overflow: hidden; }
.team-photo .initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 4rem; font-weight: 600; color: rgba(255,255,255,0.5); }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 1.5rem; }
.team-info h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.team-info .role { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

/* ---------- Trends / Blog Teaser ---------- */
.trends-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.trends-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.trends-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.trends-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}
.trends-muted { color: var(--text-muted); font-weight: 600; }
.trends-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content:flex-end;
}
.trends-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}
.trends-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--text);
  color: #fff;
  padding: 0.7rem 0.7rem 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trends-cta:hover { background: var(--accent); transform: translateY(-2px) scale(1.04); }
.trends-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.trends-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 1rem;
  align-items: stretch;
}
.trend-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 460px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--text);
}
.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.07);
}

/* Thumbnail — small in top-left by default, grows to 16:9 on hover */
.trend-thumb {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 76px;
  height: 46px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #F0F0F0;
  z-index: 1;
  aspect-ratio: auto;
  transition: width 0.6s cubic-bezier(0.22,1,0.36,1),
              height 0.6s cubic-bezier(0.22,1,0.36,1),
              aspect-ratio 0.6s cubic-bezier(0.22,1,0.36,1),
              border-radius 0.5s ease;
}
.trend-card:hover .trend-thumb {
  width: calc(100% - 2.5rem);
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

/* Plus icon — pinned top-right, fades on hover */
.trend-plus {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.trend-card:hover .trend-plus {
  opacity: 0;
  pointer-events: none;
}

/* Meta block — pinned to bottom */
.trend-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}
.trend-date {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.trend-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.trend-excerpt {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}
.trend-featured {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 460px;
  background: #1a1a1a;
  isolation: isolate;
  cursor: pointer;
}
.trend-feat-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.trend-featured:hover .trend-feat-img { transform: scale(1.04); }
.trend-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.trend-feat-logo {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  height: 32px;
  width: auto;
  z-index: 2;
}
.trend-feat-plus {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 2;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.2);
}
.trend-feat-title {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  margin: 0;
  z-index: 2;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@media (max-width: 1100px) {
  .trends-grid { grid-template-columns: 1fr 1fr; }
  .trend-featured { grid-column: 1 / 3; min-height: 320px; }
}
@media (max-width: 768px) {
  .trends-section { padding: 3rem 0; }
  .trends-wrap { padding: 0 1.5rem; }
  .trends-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .trends-side { flex-direction: column; align-items: flex-start; }
  .trends-grid { grid-template-columns: 1fr; }
  .trend-featured { grid-column: 1; min-height: 280px; }
  .trend-card { min-height: 320px; }
}

/* ---------- Blog Cards (legacy) ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s; border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-6px); }
.blog-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, #1a1a1a, var(--accent)); position: relative; }
.blog-body { padding: 1.75rem; }
.blog-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.75rem; }
.blog-body h3 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 1rem; }
.blog-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Quote + Newsletter Section ---------- */
.quote-news-section {
  padding: 5rem 0 4rem;
  background: var(--bg);
}
.qn-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.qn-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* LEFT — Quote */
.qn-quote { max-width: 720px; }
.qn-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  display: block;
}
.qn-muted { color: var(--text-muted); font-weight: 500; }
.qn-bold { color: var(--text); font-weight: 600; letter-spacing: -0.04em; }

.qn-author {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.qn-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  background: #1a1a1a;
}
.qn-avatar svg,
.qn-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.qn-author-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
}

/* RIGHT — Newsletter */
.qn-newsletter { max-width: 420px; }
.qn-news-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.05em;
}
.qn-dot-end {
  font-size: 0.4em;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 0.4em;
  margin-left: 0.15em;
}

.qn-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.qn-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
}
.qn-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
}
.qn-field input {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  background: transparent;
  border: none;
  padding: 0.25rem 0;
  outline: none;
}
.qn-field:focus-within { border-bottom-color: var(--text); }

.qn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.qn-submit:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.04);
}
.qn-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.qn-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 1rem 0 0;
  max-width: 380px;
}

@media (max-width: 900px) {
  .quote-news-section { padding: 3rem 0; }
  .qn-wrap { padding: 0 1.5rem; }
  .qn-grid { grid-template-columns: 1fr; gap: 3rem; }
  .qn-quote, .qn-newsletter { max-width: 100%; }
}

/* ---------- Let's Talk — Contact CTA with form ---------- */
.lt-section {
  padding: 2rem 0 4rem;
}
.lt-card {
  position: relative;
  margin: 0 12px;
  background: #050505;
  border-radius: 20px;
  overflow: hidden;
  min-height: 700px;
  isolation: isolate;
}
.lt-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

.lt-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 12rem 3rem;
}
.lt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15rem;
  align-items: start;
}

/* LEFT — White form */
.lt-form {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.lt-form-logo {
  height: 32px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
.lt-form-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.lt-form-muted { color: var(--text-muted); font-weight: 600; }

.lt-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.lt-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.lt-field .lt-phone input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  background: #F5F5F5;
  border: 0px solid var(--border);
  border-radius: 0px;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lt-field input,
.lt-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  background: #F5F5F5;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lt-field input::placeholder,
.lt-field textarea::placeholder { color: rgba(0,0,0,0.4); }
.lt-field input:focus,
.lt-field textarea:focus {
  border-color: var(--text);
  background: #fff;
}
.lt-field textarea { resize: vertical; min-height: 60px; }

.lt-phone {
  display: grid;
  grid-template-columns: 130px 1fr;
  background: #F5F5F5;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.cc-dropdown { position: relative; }
.cc-trigger {
  width: 100%;
  background: #F5F5F5;
  padding: 0.75rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cc-trigger:hover, .cc-dropdown.is-open .cc-trigger {
  border-color: var(--text);
  background: #fff;
}
.cc-trigger .cc-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.cc-trigger .cc-code { letter-spacing: -0.01em; }
.cc-trigger .cc-chevron {
  opacity: 0.5;
  transition: transform 0.3s ease;
}
.cc-dropdown.is-open .cc-trigger .cc-chevron { transform: rotate(180deg); }

.cc-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  z-index: 50;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 340px;
}
.cc-dropdown.is-open .cc-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cc-search-wrap { padding: 0.25rem 0.25rem 0.5rem; }
.cc-search {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #FAFAFA;
  padding: 0.55rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cc-search:focus { border-color: var(--text); background: #fff; }
.cc-search::placeholder { color: rgba(0,0,0,0.4); }

.cc-list {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cc-list::-webkit-scrollbar { width: 6px; }
.cc-list::-webkit-scrollbar-track { background: transparent; }
.cc-list::-webkit-scrollbar-thumb { background: #D0D0D0; border-radius: 999px; }
.cc-list::-webkit-scrollbar-thumb:hover { background: #909090; }

.cc-item {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: background 0.15s ease;
}
.cc-item:hover, .cc-item.is-active { background: #F0F0F0; }
.cc-item .cc-flag {
  width: 22px; height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.cc-item .cc-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.cc-item .cc-dial {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.cc-no-results {
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lt-captcha-wrap {
  margin: 0.5rem 0 1.25rem;
  transform-origin: 0 0;
}
@media (max-width: 380px) {
  /* Scale the 304px-wide reCAPTCHA box down to fit narrow phones */
  .lt-captcha-wrap { transform: scale(0.95); }
}

/* Legacy custom captcha box (kept for fallback) */
.lt-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9F9F9;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.25rem;
}
.lt-cap-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}
.lt-cap-box input { position: absolute; opacity: 0; pointer-events: none; }
.lt-cap-check {
  width: 22px; height: 22px;
  border: 2px solid #C0C0C0;
  background: #fff;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lt-cap-box input:checked + .lt-cap-check {
  background: #4285F4;
  border-color: #4285F4;
}
.lt-cap-box input:checked + .lt-cap-check::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 7px; height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lt-cap-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}
.lt-cap-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.lt-submit {
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lt-submit:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.02);
}
.lt-terms {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  margin: 1rem 0 0;
}
.lt-terms a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* RIGHT — heading + info + profile */
.lt-right { color: #fff; padding-left: 1rem; }
.lt-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 2rem;
}
.lt-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 2rem;
  max-width: 580px;
}
.lt-desc strong { color: #fff; font-weight: 600; }
.lt-desc-muted {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.lt-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 0 2rem;
}

.lt-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.lt-info { display: flex; flex-direction: column; gap: 0.75rem; }
.lt-info-icon { color: rgba(255,255,255,0.85); }
.lt-info-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}
.lt-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 240px;
}

/* Profile card */
.lt-profile {
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 420px;
  max-width: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}
.lt-profile-img {
  width: 110px; height: 110px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
}
.lt-profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 4px 4px 4px;
  gap: 6px;
}
.lt-profile-role {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.lt-profile-role strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}
.lt-profile-role span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-top: 1px;
}
.lt-profile-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
}
.lt-profile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--text);
  color: #fff;
  padding: 7px 10px 7px 14px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  margin-top: 2px;
  transition: background 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lt-profile-cta:hover { background: var(--accent); transform: translateY(-2px) scale(1.04); }
.lt-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
  margin-left: auto;
}

@media (max-width: 1000px) {
  .lt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .lt-right { padding-left: 0; }
  .lt-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .lt-card { margin: 0 8px; border-radius: 16px; min-height: 0; }
  .lt-inner { padding: 2.5rem 1.5rem; }
  .lt-profile { flex-direction: column; width: 100%; }
  .lt-profile-img { width: 100%; height: 200px; }
}

/* ---------- CTA Section (legacy) ---------- */
.cta { background: var(--bg-dark); color: var(--text-light); border-radius: var(--radius-lg); margin: 0 2rem; padding: 6rem 3rem; text-align: center; }
.cta h2 { color: var(--text-light); margin-bottom: 1.5rem; font-size: clamp(2.5rem, 6vw, 5rem); }
.cta .accent { color: var(--accent); font-style: italic; }
.cta p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1.1rem; max-width: 600px; margin-inline: auto; }
@media (max-width: 768px) { .cta { margin: 0 1rem; padding: 4rem 1.5rem; } }

/* ---------- Footer — Light variant ---------- */
.site-footer.ft-light {
  background: var(--bg);
  color: var(--text);
  padding: 4rem 0 0rem;
}
.ft-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
.ft-grid {
  display: grid;
  grid-template-columns: 3.4fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* LEFT — Contact */
.ft-col-contact { color: var(--text); }
.ft-phones {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ft-phones a { color: var(--text); transition: color 0.2s; }
.ft-phones a:hover { color: var(--accent); }
.ft-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.ft-email:hover { color: var(--accent); border-color: var(--accent); }
.ft-email-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
  padding-bottom: 1px;
}

.ft-meet-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.ft-meet-region {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.ft-address {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #0a0a0aa1;
  margin: 0;
  max-width: 340px;
}

/* MIDDLE & RIGHT cols */
.ft-col-head {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
}
.ft-plus {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 300;
}
.ft-col-label { color: var(--text-muted); }
.ft-nav-list { list-style: none; padding: 0; margin: 0; }
.ft-nav-list li { margin-bottom: 0.75rem; }
.ft-nav-list a {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.3s ease;
}
.ft-nav-list a:hover { color: var(--accent); transform: translateX(3px); }

/* Footer Services button — looks identical to the <a> nav links */
.ft-nav-list .ft-nav-btn {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.3s ease;
}
.ft-nav-list .ft-nav-btn:hover { color: var(--accent); transform: translateX(3px); }

/* Big wordmark — aligned to start at Navigation column */
.ft-wordmark {
  position: relative;
  margin: 3rem 0 3rem;
  display: grid;
  grid-template-columns: 3.4fr 1fr 1fr;
  gap: 0rem;
}
.ft-wordmark::before {
  content: '';
  display: block;
}
.ft-mark-img {
  grid-column: 2 / 4;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.ft-mark-sub {
  grid-column: 2 / 4;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  text-align: right;
  margin: 1rem 0 0;
}

/* Bottom — Dark credit bar */
.ft-bottom {
  background: #050505;
  color: rgba(255,255,255,0.65);
  padding: 1.25rem 0;
  margin-top: 2rem;
}
.ft-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ft-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.ft-credit {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
}
.ft-credit a {
  color: rgba(255,255,255,0.9);
  margin: 0;
  transition: color 0.2s ease;
}
.ft-credit a:hover { color: var(--accent); }
.ft-by {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  margin-left: 0.75rem;
}
.ft-by a { color: rgba(255,255,255,0.95); font-weight: 600; }

@media (max-width: 768px) {
  .ft-bottom-inner { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ft-credit { flex-wrap: wrap; gap: 1rem; }
  .ft-by { margin-left: 0; }
}

@media (max-width: 900px) {
  .site-footer.ft-light { padding: 3rem 0 1.5rem; }
  .ft-wrap { padding: 0 1.5rem; }
  .ft-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer — legacy dark variant (fallback) ---------- */
.site-footer { background: var(--bg-dark); color: var(--text-light); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo span { color: var(--text-light); }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 1.5rem 0; max-width: 360px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Contact Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info .info-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.6rem; }
.contact-info p, .contact-info a { color: var(--text-muted); line-height: 1.7; }
.contact-info a:hover { color: var(--accent); }
.contact-form { background: var(--card); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 12px; background: var(--bg); transition: border 0.2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-success { background: #e8f5e8; color: #1d5a1d; padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.form-error { background: #fde7e7; color: #8b2222; padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }

/* ---------- Misc ---------- */
.alt-section { background: var(--bg-alt); }
.page-hero { padding: 8rem 0 4rem; text-align: center; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 700px; margin: 0 auto; }
.divider { height: 1px; background: var(--border); margin: 4rem 0; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================
   STUDIO HERO — Nimmio. heading + 3-col layout
   ============================================ */
.studio-hero {
  padding: 6rem 0 5rem;
  background: var(--bg);
}

/* Big "Nimmio." heading */
.sh-heading {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(5rem, 11vw, 9.25rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
  color: var(--text);
  margin: 0 0 3.5rem;
}

/* 3-column grid */
.sh-grid {
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 0 3rem;
  align-items: start;
}

/* Left — eyebrow with black-circle + icon */
.sh-col-left { padding-top: 0.35rem; }
.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
}
.sh-plus-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-eyebrow-label {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

/* Center — description + tagline + trust */
.sh-col-center { max-width: 730px; }

.sh-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 2.5rem;
  font-weight: 500;
}
.sh-desc strong {
  font-weight: 500;
  color: var(--text);
}
.sh-muted {
  color: var(--text-muted);
  font-weight: 500;
}

.sh-tagline {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 3rem;
}
.sh-dot {
  display: inline-block;
  margin: 0 0.15rem;
  opacity: 0.85;
}

/* Avatar trust row */
.sh-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.sh-avatars {
  display: flex;
  align-items: center;
}
.sh-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--bg);
  margin-left: -8px;
  flex-shrink: 0;
  background: var(--border);
}
.sh-avatar:first-child { margin-left: 0; }
.sh-avatar-count {
  background: var(--text);
  color: #fff;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sh-stars {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  line-height: 1;
  color: #FF8A3D;
}
.sh-trust-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  white-space: nowrap;
}
.sh-trust-label a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.sh-trust-label a:hover { color: var(--text); }

/* Right — quote */
.sh-col-right { padding-top: 0.5rem; }
.sh-quote {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 280px;
}

/* ============================================
   STUDIO BANNER — B&W photo + NIMMIO watermark
   ============================================ */
.sb-section {
  padding: 2rem 0 4rem;
  display: flex;
  justify-content: center;
}
.sb-card {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #0A0A0A;
  aspect-ratio: 2277 / 1373;   /* match natural image ratio so full image shows */
  isolation: isolate;
}
.sb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fits perfectly because aspect-ratio matches */
  object-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.92);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sb-card:hover .sb-image { transform: scale(1.02); }

/* NIMMIO stacked watermark — clipped at bottom edge */
.sb-watermark {
  position: absolute;
  right: clamp(1.5rem, 2.5vw, 2.5rem);
  bottom: clamp(-0.4rem, -0.5vw, -0.25rem);   /* peek-through clip */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.82;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: #fff;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.sb-mark-row { display: block; }

/* Responsive */
@media (max-width: 1560px) {
  .sb-section { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 768px) {
  .sb-section { padding: 1.5rem 12px 3rem; }
  .sb-card { border-radius: 16px; }
}

/* ============================================
   STUDIO COUNTERS — 4-column stats grid
   ============================================ */
.sc-section {
  padding: 5rem 0 5rem;
  background: var(--bg);
}
.sc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}
.sc-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sc-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--text);
}
.sc-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .sc-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; }
  .sc-section { padding: 4rem 0; }
}
@media (max-width: 540px) {
  /* Keep counters in 2 columns on mobile (not single-column) */
  .sc-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
  .sc-section { padding: 3rem 0; }
}

/* ============================================
   STUDIO APPROACH — NIMMIO mark + intro + heading + CTA
   ============================================ */
.sa-section {
  padding: 4rem 0 6rem;
  background: var(--bg);
}
.sa-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

/* Left — small NIMMIO stacked mark + caption */
.sa-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.4rem;
}
.sa-logo {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--text);
  text-transform: uppercase;
}
.sa-logo-row { display: block; }
.sa-caption {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 220px;
}

/* Right — content stack */
.sa-right {
  max-width: 880px;
}
.sa-intro {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  max-width: 540px;
}

.sa-heading {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 2.75rem;
  max-width: 820px;
}
.sa-heading strong {
  font-weight: 600;
  color: var(--text);
}
.sa-heading-muted {
  color: var(--text-muted);
  font-weight: 600;
}

/* Portfolio CTA pill */
.sa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
  position: relative;
  isolation: isolate;
}
.sa-cta:hover {
  transform: translateY(-2px);
  background: var(--text);
  color: #fff;
}
.sa-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.sa-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.sa-cta:hover .sa-dot { transform: scale(1.15); }
.sa-cta:hover .sa-dot::before { opacity: 1; transform: scale(1); }

/* Responsive */
@media (max-width: 900px) {
  .sa-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sa-section { padding: 3rem 0 4rem; }
  .sa-heading { font-size: 1.35rem; }
}

/* ============================================
   STUDIO CLIENTS — 3-col logo grid
   ============================================ */
.sl-section {
  padding: 3rem 0 6rem;
  background: var(--bg);
}
.sl-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 3rem;
  align-items: start;
}
.sl-left { padding-top: 0.35rem; }
.sl-content { width: 100%; }
.sl-meta {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Grid of tiles */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sl-tile {
  position: relative;
  background: #fff;
  border-radius: 14px;
  aspect-ratio: 4 / 3.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  cursor: default;
}
.sl-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.sl-tile img {
  max-width: 55%;
  max-height: 38%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.sl-tile:hover img { opacity: 1; filter: grayscale(0%); }

/* Text-based logo fallback */
.sl-text-logo {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  line-height: 1.1;
}
.sl-text-logo small {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
  color: rgba(0, 0, 0, 0.55);
}
.sl-text-accent { color: rgba(0, 0, 0, 0.85); }
.sl-htlogo { letter-spacing: -0.05em; font-size: 1.5rem; }
.sl-zs { font-weight: 600; letter-spacing: -0.1em; }

/* Bottom-right tag like "/2024" */
.sl-tag {
  position: absolute;
  bottom: 0.85rem;
  right: 1.1rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

/* Last "100+ Clients" tile */
.sl-tile-end .sl-end-text {
  text-align: center;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.3;
}
.sl-end-num { font-size: 1.05rem; }
.sl-end-sub { font-size: 1.05rem; }

/* Responsive */
@media (max-width: 1024px) {
  .sl-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .sl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .sl-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-section { padding: 2.5rem 0 4rem; }
}
@media (max-width: 480px) {
  .sl-grid { grid-template-columns: 1fr; }
  .sl-tile { aspect-ratio: 5 / 3; }
}

/* ============================================
   STUDIO SERVICES — Standout. + table list
   ============================================ */
.ss-section {
  padding: 5rem 0 7rem;
  background: var(--bg);
}

/* Heading row — 2-column: eyebrow left | heading + subtitle right */
.ss-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 10rem;
  margin-bottom: 4rem;
  align-items: start;
}
.ss-head-left {
  padding-top: 0.6rem;
}
.ss-head-right {
  max-width: 900px;
}
.ss-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 1.5rem;
  text-align: left;
}
.ss-subtitle {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.75rem, 1.1vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
  text-align: left;
}

/* Table — full container width, spread layout like reference */
.ss-table {
  border-top: 1px solid rgba(0,0,0,0.12);
  width: 100%;
}
.ss-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(280px, 2.2fr) minmax(280px, 2.2fr);
  gap: 0 2.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  align-items: start;
}
.ss-row-head {
  padding: 1rem 0;
}
.ss-row-head .ss-cat,
.ss-row-head .ss-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
}

.ss-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
}
.ss-cat {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}
.ss-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 340px;
}

/* Responsive */
@media (max-width: 1024px) {
  .ss-head { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
  .ss-head-left { padding-top: 0; }
  .ss-row { grid-template-columns: 80px 1fr 1.4fr; gap: 0 1.5rem; }
  .ss-row-head { display: none; }
  .ss-section { padding: 3.5rem 0 5rem; }
}
@media (max-width: 640px) {
  .ss-row {
    grid-template-columns: 60px 1fr;
    gap: 0.4rem 1rem;
    padding: 1.5rem 0;
  }
  .ss-desc { grid-column: 2; max-width: 100%; }
}

/* ============================================
   STUDIO CREW — 2-col photo cards
   ============================================ */
.cc-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.cc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cc-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  cursor: default;
}
.cc-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: #0A0A0A;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cc-card:hover .cc-img {
  transform: translateY(-4px);
}
.cc-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cc-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .cc-section { padding: 3rem 0 4rem; }
  .cc-img { aspect-ratio: 4 / 3; border-radius: 14px; }
}

/* ============================================
   STUDIO "WHAT ELSE" — eyebrow + statement
   ============================================ */
.we-section {
  padding: 5rem 0 6rem;
  background: var(--bg);
}
.we-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 3rem;
  align-items: start;
}
.we-left {
  padding-top: 0.6rem;
}
.we-right {
  max-width: 820px;
}
.we-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin: 0 0 2.5rem;
  color: var(--text);
}
.we-muted { color: var(--text-muted); font-weight: 500; }
.we-bold { color: var(--text); font-weight: 600; }
.we-caption {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .we-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .we-section { padding: 3.5rem 0 4.5rem; }
}

/* ============================================
   PROJECT DETAIL PAGE — project.php
   ============================================ */

/* HERO */
.pd-hero {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.pd-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(5rem, 13vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
  color: var(--text);
  margin: 0 0 8rem;
}

.pd-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}
.pd-intro-left { padding-top: 0.4rem; }
.pd-intro-right { max-width: 720px; }
.pd-intro-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* META TABLE — row borders full-width, content aligned with intro right-column */
.pd-meta-section {
  padding: 2rem 0 4rem;
  background: var(--bg);
}
.pd-meta-table {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.pd-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;     /* matches .pd-intro-grid */
  gap: 0 3rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.pd-meta-row-inner {
  grid-column: 2;                       /* sits in right half — aligned with intro paragraph */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.pd-meta-row .pd-meta-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.pd-meta-row .pd-meta-value {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  text-align: right;
}

/* Big project logo — aligned with meta-row content column (50% start) */
.pd-logo-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  padding: 5rem 0 3rem;
}
.pd-logo-img,
.pd-logo-text {
  grid-column: 2;             /* sits in right half — aligned with labels above */
  justify-self: start;
}
.pd-logo-img {
  max-width: 360px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pd-logo-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--accent);
  line-height: 1;
  margin: 0;
}

/* HERO MEDIA */
.pd-media-section {
  padding: 1rem 0 4rem;
}
.pd-media-card {
  position: relative;
  margin: 0 12px;
  border-radius: 20px;
  overflow: hidden;
  background: #0A0A0A;
  aspect-ratio: 16 / 9;
  isolation: isolate;
}
.pd-media-video,
.pd-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-media-logo {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  max-width: 140px;
  max-height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  z-index: 2;
}

/* OVERVIEW + APPROACH TEXT BLOCKS */
.pd-text-section {
  padding: 3rem 0 4rem;
  background: var(--bg);
}
.pd-text-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 3rem;
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.pd-text-block:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.pd-text-left { padding-top: 0.4rem; }
.pd-text-right { max-width: 720px; }
.pd-text-para {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* GALLERY — 6-col grid; equal-height boxes in shared rows */
.pd-gallery-section {
  padding: 2rem 0 4rem;
  background: var(--bg);
}
.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;       /* items stretch to match row height */
}

/* Default 2-up box — box hugs the image's natural ratio (full image, no
   letterbox, no crop). A 2-up pair of same-ratio images stays equal height. */
.pd-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0A0A0A;
  grid-column: span 3;
}
.pd-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-gallery-item:hover img { transform: scale(1.03); }

/* Cover fit (opt-in via admin "Cover") — fixed 16:9 box, fill & crop to the
   chosen focal point. Use when you want a uniform grid of equal boxes. */
.pd-gallery-item.pd-fit-cover {
  aspect-ratio: 16 / 9;
}
.pd-gallery-item.pd-fit-cover img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

/* Wide video card — 16:8 dark frame */
.pd-gallery-wide {
  grid-column: span 6;
  aspect-ratio: 16 / 8;
}
.pd-gallery-wide img,
.pd-gallery-wide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stacked full-width stills — alone in their row, so natural ratio is safe */
.pd-gallery-third {
  grid-column: span 6;
  aspect-ratio: auto;
  background: transparent;
}
.pd-gallery-third img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Video item — clickable card with play button overlay */
.pd-gallery-video { cursor: pointer; }
.pd-gallery-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  transition: background 0.3s ease;
  pointer-events: none;
}
.pd-gallery-video:hover::after { background: rgba(0,0,0,0.05); }

.pd-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}
.pd-play-btn svg { margin-left: 4px; }   /* optical center for triangle */
.pd-gallery-video:hover .pd-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

/* Video modal lightbox */
.pd-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem;
}
.pd-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.pd-video-player {
  width: 100%;
  max-width: 1100px;
  max-height: 80vh;
  border-radius: 14px;
  background: #000;
  outline: none;
}
.pd-video-embed {
  width: min(90vw, 1280px, calc(80vh * 16 / 9));
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 14px;
  background: #000;
  border: 0;
  display: block;
}
.pd-video-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.pd-video-close:hover { background: rgba(255,255,255,0.22); }

/* RESULTS */
.pd-results-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.pd-results-head { margin-bottom: 2.5rem; }
.pd-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 3rem;
}
.pd-result-num {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.pd-result-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
}

/* NEXT PROJECTS — header with NIMMIO mark + big heading + All projects pill */
.pd-next-section {
  padding: 5rem 0 6rem;
  background: var(--bg);
}
.pd-next-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

/* Logo image — stacked above heading */
.pd-next-mark-img {
  display: block;
  width: 56px;
  height: auto;
  margin-bottom: 1.25rem;
}

/* Heading + caption stack */
.pd-next-title-wrap {
  min-width: 0;
}
.pd-next-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 1rem;
}
.pd-next-meta-cap {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

/* All projects pill — reuses .sa-cta / .sa-dot pattern */
.pd-next-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease;
  align-self: end;
  margin-bottom: 0.8rem;
}
.pd-next-cta:hover {
  transform: translateY(-2px);
  background: var(--text);
  color: #fff;
}

/* Project cards grid — matches homepage */
.pd-next-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .pd-next-head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pd-next-cta { align-self: start; }
  .pd-next-cards-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 1024px) {
  .pd-intro-grid,
  .pd-text-block { grid-template-columns: 1fr; gap: 1.25rem; }
  .pd-meta-row { grid-template-columns: 1fr; }
  .pd-meta-row-inner { grid-column: 1; }
  .pd-logo-display { grid-template-columns: 1fr; }
  .pd-logo-img,
  .pd-logo-text { grid-column: 1; }
  .pd-results-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-next-grid { grid-template-columns: 1fr; }
  .pd-gallery-grid { grid-template-columns: 1fr; }
  .pd-gallery-item,
  .pd-gallery-wide,
  .pd-gallery-third { grid-column: 1 / -1; }
  /* On mobile each item is full-width; let images show at natural height.
     Only the cover-fit items keep a fixed ratio. */
  .pd-gallery-item.pd-fit-cover { aspect-ratio: 16 / 9; }
  .pd-media-card { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  .pd-hero { padding: 2rem 0 3rem; }
  .pd-title { margin-bottom: 4rem; }
  .pd-results-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .pd-logo-display { padding: 4rem 0 2rem; }
}

/* Responsive */
@media (max-width: 1024px) {
  .sh-grid {
    grid-template-columns: 160px 1fr;
    grid-template-rows: auto auto;
  }
  .sh-col-right {
    grid-column: 1 / -1;
    padding-top: 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }
  .sh-quote { max-width: 100%; }
}
@media (max-width: 768px) {
  .studio-hero { padding: 4rem 0 3rem; }
  .sh-heading { margin-bottom: 2.5rem; }
  .sh-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  .sh-col-right {
    grid-column: 1;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 0;
  }
}

/* ============================================
   CONTACT PAGE — contact.php
   ============================================ */
.ct-section {
  padding: 4rem 0 6rem;
  background: var(--bg);
}

/* Big heading */
.ct-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(9.75rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 4rem;
}

/* 2-col layout */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  align-items: start;
}

/* LEFT column */
.ct-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.ct-intro {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.70rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  max-width: 515px;
}
.ct-intro strong { font-weight: 600; color: var(--text); }
.ct-muted { color: var(--text-muted); font-weight: 500; }

/* Simran profile */
.ct-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ct-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.ct-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}
.ct-profile-name {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}
.ct-profile-role {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

/* Office address */
.ct-office { display: flex; flex-direction: column; gap: 0.3rem; }
.ct-office-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 0.25rem;
}
.ct-office-region {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.ct-office-addr {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text);
  font-style: normal;
  margin: 0;
}

/* RIGHT column — form */
.ct-form { display: flex; flex-direction: column; }
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.4rem;
  position: relative;
}
.ct-field label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.ct-field input,
.ct-field textarea {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  border-radius: 0;
  padding: 0.55rem 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(0,0,0,0.35); }
.ct-field input:focus,
.ct-field textarea:focus { border-bottom-color: var(--text); }
.ct-field textarea { resize: vertical; min-height: 44px; }

/* Phone + country code combo */
.ct-phone {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  transition: border-color 0.2s ease;
}
.ct-phone:focus-within { border-bottom-color: var(--text); }
.ct-phone input {
  border-bottom: 0 !important;
  padding-left: 0.5rem;
}
.ct-phone .cc-dropdown { position: relative; }
.ct-phone .cc-trigger {
  background: transparent;
  border: 0;
  padding: 0.5rem 0.5rem 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.ct-phone .cc-trigger:hover { background: transparent; }

/* reCAPTCHA */
.ct-captcha-wrap {
  margin: 0.5rem 0 1.5rem;
  transform-origin: 0 0;
}

/* Submit pill — black with animated white dot (reuses .sa-dot) */
.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--text);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease;
  align-self: flex-start;
  margin-bottom: 1rem;
}
.ct-submit:hover { transform: translateY(-2px); background: var(--text); color: #fff; }
.ct-terms {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
}
.ct-terms a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* Responsive */
@media (max-width: 900px) {
  .ct-title { margin-bottom: 3rem; }
  .ct-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ct-section { padding: 3rem 0 4rem; }
}

/* ===== Google Map section ===== */
.ct-map-section {
  padding: 2rem 0 5rem;
  background: var(--bg);
}
.ct-map-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.ct-map {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.ct-map-wrap:hover .ct-map { filter: grayscale(0%); }

@media (max-width: 768px) {
  .ct-map { height: 360px; }
  .ct-map-wrap { border-radius: 16px; }
  .ct-map-section { padding: 1.5rem 0 3rem; }
}

/* ============================================
   BLOG POST DETAIL — post.php (pt-*)
   ============================================ */
.pt-section {
  background: var(--bg);
  padding: 0;
}
.pt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  min-height: 100vh;
}

/* LEFT — sticky image inset from edges, all 4 corners rounded */
.pt-media {
  position: sticky;
  top: 12px;
  height: calc(95vh - 24px);
  margin: 12px 0 12px 12px;
  align-self: start;
  overflow: hidden;
  background: #0A0A0A;
  border-radius: 24px;              /* round all 4 corners */
}
.pt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.pt-media:hover img { transform: scale(1.02); }

/* RIGHT — scrolling content with comfortable padding */
.pt-content-wrap {
  padding: 8rem 4rem 6rem 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.pt-content {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  width: 100%;
}
.pt-date {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pt-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0 0 2rem;
}
/* Thin divider between title and byline meta */
.pt-divider {
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 0 0 2rem;
}

/* Byline meta — "By X | Updated: Y | Z min read" */
.pt-meta {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}
.pt-meta strong { font-weight: 600; color: var(--text); }
.pt-meta-sep {
  display: inline-block;
  margin: 0 0.5rem;
  color: rgba(0,0,0,0.25);
}

/* Rich body — paragraphs, headings, links, italics */
.pt-body p {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: #0A0A0A;
  margin: 0 0 20px;
}
.pt-body h2 {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  margin: 2.25rem 0 1.25rem;
}
.pt-body h2:first-child { margin-top: 0; }
.pt-body h3 {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--text);
  margin: 2rem 0 1rem;
}
.pt-body em,
.pt-body i {
  font-style: italic;
  color: var(--text-muted);
}
.pt-body a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.pt-body a:hover { color: var(--accent); }
.pt-body strong { font-weight: 600; color: var(--text); }
.pt-body ul,
.pt-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.pt-body li { margin-bottom: 0.5rem; }
.pt-body blockquote {
  border-left: 3px solid var(--text);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

/* Data table inside body */
.pt-body .pt-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  border-top: 1px solid rgba(0,0,0,0.14);
  border-bottom: 1px solid rgba(0,0,0,0.14);
}
.pt-body .pt-table th,
.pt-body .pt-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--text);
}
.pt-body .pt-table thead th {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  background: transparent;
  text-transform: none;
  border-bottom: 1px solid rgba(0,0,0,0.14);
}
.pt-body .pt-table tbody tr:last-child td { border-bottom: 0; }
.pt-body .pt-table tbody td {
  color: var(--text-muted);
  line-height: 1.5;
}
.pt-body .pt-table tbody td strong { color: var(--text); font-weight: 600; }

/* Charts — vertical bar chart */
.pt-body .pt-chart {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 1.25rem 1.25rem;
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
}
.pt-body .pt-chart-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.5rem;
}
.pt-body .pt-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  height: 220px;
  padding: 0 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.pt-body .pt-chart-bar {
  position: relative;
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, #4A90E2 0%, #2C6EC6 100%);
  border-radius: 4px 4px 0 0;
  min-width: 0;
  transition: opacity 0.25s ease;
}
.pt-body .pt-chart-bar:hover { opacity: 0.85; }
.pt-body .pt-chart-val {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  white-space: nowrap;
}
.pt-body .pt-chart-yr {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
}
.pt-body .pt-chart-source {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2.25rem;
}

/* Horizontal bar chart */
.pt-body .pt-chart-horiz .pt-chart-rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-bottom: 0;
  height: auto;
  padding: 0;
}
.pt-body .pt-chart-row {
  display: grid;
  grid-template-columns: 140px 1fr 32px;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  letter-spacing: -0.005em;
}
.pt-body .pt-chart-rlabel {
  color: var(--text-muted);
  text-align: right;
}
.pt-body .pt-chart-rbar {
  height: 16px;
  background: linear-gradient(90deg, #4A90E2 0%, #2C6EC6 100%);
  border-radius: 3px;
  width: var(--w, 50%);
  transition: opacity 0.25s ease;
}
.pt-body .pt-chart-rbar:hover { opacity: 0.85; }
.pt-body .pt-chart-rval {
  font-weight: 600;
  color: var(--text);
  font-size: 0.75rem;
}

/* Client review block */
.pt-body .pt-review {
  margin: 1.5rem 0;
  padding: 0;
}
.pt-body .pt-review-stars {
  color: #FF8A3D;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.pt-body .pt-review-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 0.85rem;
}
.pt-body .pt-review-author {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--text-muted);
}
.pt-body .pt-review-author strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ block */
.pt-body .pt-faq { margin: 1rem 0 1.5rem; }
.pt-body .pt-faq-item {
  padding: 0;
  margin: 0 0 1.5rem;
}
.pt-body .pt-faq-q {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.pt-body .pt-faq-a {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Previous / Next navigation cards */
.pt-prevnext {
  margin: 3rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: #F0F0F0;
  border-radius: 18px;
  padding: 18px;
}
.pt-pn-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 28 / 8.5;          /* taller card */
  text-decoration: none;
  color: #fff;
  background: #0A0A0A;
  isolation: isolate;
}
.pt-pn-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1),
              filter 0.45s ease;
  z-index: 0;
  filter: blur(0);
}
.pt-pn-card:hover .pt-pn-img {
  transform: scale(1.04);
  filter: blur(6px);              /* blur on hover */
}
.pt-pn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.pt-pn-card:hover .pt-pn-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
/* Label + title wrapper — vertically centered, 10px gap between */
.pt-pn-content {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;           /* Previous — left aligned */
  text-align: left;
}
.pt-pn-next .pt-pn-content {
  align-items: flex-end;             /* Next — right aligned */
  text-align: right;
}

.pt-pn-label {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.95);
}
.pt-pn-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #fff;
}


/* Stay connected social block */
.pt-connect {
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
}
.pt-connect-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.pt-connect-text {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 480px;
}
.pt-connect-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pt-connect-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease, border-color 0.25s ease;
}
.pt-connect-socials a:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  transform: translateY(-2px);
}

/* Author block — placed below title */
.pt-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
}
.pt-author-top { margin: 0 0 1.75rem; }
.pt-author-logo {
  height: 28px;
  width: auto;
  display: block;
}
.pt-author-name {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

/* Back link (top) */
.pt-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.3s ease;
}
.pt-back-top { margin: 0 0 2rem; }
.pt-back:hover {
  color: var(--text);
  transform: translateX(-3px);
}

/* Responsive — collapse to single column, image no longer sticky */
@media (max-width: 1024px) {
  .pt-grid { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .pt-media {
    position: static;
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 12px;
    border-radius: 20px;             /* all 4 corners on mobile */
  }
  .pt-content-wrap { padding: 2.5rem 1.5rem 4rem; }
}

/* ============================================
   BLOG PAGE — hero + post list (bl-*)
   ============================================ */
.bl-hero {
  padding: 3rem 0 5rem;
  background: var(--bg);
}

/* Massive heading spans full width */
.bl-hero-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
  color: #0A0A0A;
  margin: 0 0 4.5rem;
}

/* 3-col row below heading */
.bl-hero-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0 3rem;
  align-items: start;
}
.bl-hero-eyebrow { padding-top: 0.35rem; }

.bl-hero-lead {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  max-width: 620px;
}
.bl-hero-lead strong { font-weight: 600; color: var(--text); }
.bl-hero-muted { color: var(--text-muted); font-weight: 500; }

.bl-hero-sub {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 240px;
  padding-top: 0.25rem;
}

/* Posts card grid */
.bl-cards-section {
  padding: 1rem 0 6rem;
  background: var(--bg);
}
.bl-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Default card */
.bl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  height: 480px;
  padding: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.bl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.07);
}

/* Thumbnail — absolute small in top-left, expands to large on hover */
.bl-card-thumb {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 76px;
  height: 46px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #F0F0F0;
  z-index: 1;
  transition: width 0.6s cubic-bezier(0.22,1,0.36,1),
              height 0.6s cubic-bezier(0.22,1,0.36,1),
              aspect-ratio 0.6s cubic-bezier(0.22,1,0.36,1),
              border-radius 0.5s ease;
  aspect-ratio: auto;
}
.bl-card:hover .bl-card-thumb {
  width: calc(100% - 2.5rem);
  height: auto;
  aspect-ratio: 16 / 9;        /* perfect 16:9 on hover */
  border-radius: 14px;
}

/* Plus icon — always pinned top-right, fades out on hover */
.bl-card-plus {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.bl-card:hover .bl-card-plus {
  opacity: 0;
  pointer-events: none;
}

/* Meta block — pinned to the bottom */
.bl-card-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  z-index: 2;
}
.bl-card-date {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
}
.bl-card-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1.125rem;          /* 18px — matches reference card title */
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #0A0A0A;
  margin: 0;
}
.bl-card-excerpt {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.9375rem;         /* 15px — matches reference paragraph */
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

/* Featured card — spans 2 cols, full-image background */
.bl-card-featured {
  grid-column: span 2;
  background: #0A0A0A;
  color: #fff;
  padding: 0;
}
.bl-card-featured .bl-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 1s cubic-bezier(0.22,1,0.36,1),
              filter 0.45s ease;
}
.bl-card-featured:hover .bl-card-bg {
  transform: scale(1.04);
  filter: blur(6px);                   /* blur background on hover */
}
.bl-card-featured .bl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.bl-card-featured:hover .bl-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.75) 100%);
}
.bl-card-featured .bl-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.75rem 1.75rem;
  min-height: 480px;
}
.bl-card-featured .bl-card-date {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: -0.005em;
}
.bl-card-featured .bl-card-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 460px;
}
.bl-card-featured .bl-card-title {
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.bl-card-featured .bl-card-excerpt {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
  .bl-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .bl-card-featured { grid-column: span 3; }
}
@media (max-width: 900px) {
  .bl-hero-title { margin-bottom: 2.5rem; }
  .bl-hero-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .bl-hero-sub { max-width: 100%; padding-top: 0; }
  .bl-hero { padding: 2.5rem 0 3rem; }
  .bl-cards-section { padding: 1rem 0 4rem; }
  .bl-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .bl-card-featured { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bl-cards-grid { grid-template-columns: 1fr; }
  .bl-card-featured { grid-column: 1; }
  .bl-card { min-height: 280px; }
}

/* ============================================
   PROJECTS PAGE — head + filters (proj-*)
   ============================================ */
.proj-section {
  padding: 4rem 0 4rem;
  background: var(--bg);
}

/* Head: title left, caption + desc right */
.proj-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.proj-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--text);
  margin: 0;
}
.proj-meta { padding-bottom: 0.5rem; }
.proj-meta-cap {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.proj-meta-desc {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
}

/* Filters row */
.proj-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 200;             /* keep entire filter row above project cards */
}
.proj-dropdown {
  position: relative;
  z-index: 1;               /* base — items above neighbors when open */
}
.proj-dropdown.is-open { z-index: 300; }

/* Search pill */
.proj-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 0.7rem 1.25rem;
  min-width: 280px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.proj-search:focus-within {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.proj-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  padding: 0.25rem 0;
  min-width: 0;
}
.proj-search input::placeholder { color: rgba(0,0,0,0.4); }
.proj-search-ico {
  background: var(--text);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.proj-search-ico:hover { transform: scale(1.05); }

/* Dropdown pills (Category / Sort) */
.proj-dropdown {
  position: relative;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
}
.proj-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 15px;
  padding: 0.9rem 1.1rem 0.9rem 1.25rem;
  cursor: pointer;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.proj-dd-trigger:hover { border-color: rgba(0,0,0,0.25); }
.proj-dd-chev {
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.proj-dropdown.is-open .proj-dd-chev { transform: rotate(180deg); }

.proj-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  z-index: 500;
}
.proj-dropdown.is-open .proj-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.proj-dd-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease;
}
.proj-dd-item:hover { background: #F0F0F0; }
.proj-dd-item.is-active { background: var(--text); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .proj-head { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .proj-meta { padding-bottom: 0; }
  .proj-section { padding: 3rem 0; }
}
@media (max-width: 560px) {
  .proj-search { min-width: 100%; }
  .proj-filters { gap: 0.5rem; }
}

/* ===== Team & Office photo cards (cto-*) ===== */
.cto-section {
  padding: 3rem 0 6rem;
  background: var(--bg);
}
.cto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cto-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cto-img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-color: #0A0A0A;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cto-card:hover .cto-img { transform: translateY(-4px); }

.cto-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-left: 0.5rem;
}
.cto-title {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}
.cto-year {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .cto-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .cto-section { padding: 2rem 0 4rem; }
  .cto-img { aspect-ratio: 4 / 3; border-radius: 16px; }
}

/* ============================================
   SERVICE CLIENTS — auto-scrolling logo slider (cl-*)
   ============================================ */
.cl-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

/* Head row: eyebrow left, date range center/right */
.cl-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.cl-range {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

/* Slider — full width, breaks out of container */
.cl-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.cl-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: cl-scroll 36s linear infinite;
  padding: 0 7px;
}
.cl-slider:hover .cl-track { animation-play-state: paused; }

.cl-card {
  flex-shrink: 0;
  width: 240px;
  height: 150px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  transition: transform 0.35s ease;
}
.cl-card:hover { transform: translateY(-3px); }
.cl-card img {
  max-width: 100%;
  max-height: 60%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.cl-card:hover img { filter: grayscale(0%); opacity: 1; }

@keyframes cl-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .cl-head { grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 2rem; }
  .cl-card { width: 180px; height: 120px; padding: 1rem 1.5rem; }
  .cl-section { padding: 2.5rem 0 3.5rem; }
}

/* ============================================
   SERVICE FAQ — accordion (sf-*)
   ============================================ */
.sf-section {
  padding: 4rem 0 6rem;
  background: var(--bg);
}
.sf-list {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.sf-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.sf-q {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: var(--text);
  transition: padding-left 0.3s cubic-bezier(0.22,1,0.36,1);
}
.sf-q::-webkit-details-marker { display: none; }
.sf-item:hover .sf-q { padding-left: 0.5rem; }
.sf-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.sf-toggle-v {
  transition: opacity 0.25s ease;
}
.sf-item[open] .sf-toggle-v { opacity: 0; }
.sf-item[open] .sf-toggle { background: var(--accent); }
.sf-a {
  padding: 0 0 1.5rem;
  max-width: 880px;
}
.sf-a p {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 640px) {
  .sf-section { padding: 2.5rem 0 4rem; }
  .sf-q { font-size: 0.95rem; padding: 1.25rem 0; }
  .sf-toggle { width: 28px; height: 28px; }
}

/* ============================================================
   ===========  GLOBAL RESPONSIVE OVERRIDES  ==================
   ============================================================
   Comprehensive mobile/tablet rules — applied after all section
   styles so they override anything earlier in the cascade.
   Breakpoints:
     • Wide tablet/small laptop: ≤ 1200px
     • Tablet:                   ≤ 1024px
     • Small tablet:             ≤ 768px
     • Mobile:                   ≤ 640px
     • Small mobile:             ≤ 380px
   ============================================================ */

/* ---------- WIDE TABLET (≤1200px) ---------- */
@media (max-width: 1200px) {
  .container { padding-left: 24px; padding-right: 24px; }

  /* Studio + Service Hero — slightly tighter */
  .sh-heading { font-size: clamp(4.5rem, 10vw, 8.5rem); }
  .sh-grid { grid-template-columns: 180px 1fr 260px; gap: 0 2rem; }

  /* Projects */
  .proj-title { font-size: clamp(3rem, 7vw, 6rem); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {
  /* Header — hide inline nav, show hamburger on the right */
  .main-nav { display: none; }
  .menu-toggle {
    display: flex;
    margin-left: auto;
    justify-self: end;
    grid-column: -1;
  }
  .header-inner { grid-template-columns: auto 1fr !important; }

  /* All section-level grids collapse to single column */
  .sh-grid,
  .sa-grid,
  .we-grid,
  .ct-grid,
  .ss-head,
  .pd-intro-grid,
  .pd-text-block,
  .bl-hero-row,
  .bl-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Studio hero — keep right quote below */
  .sh-col-right { padding-top: 0; }
  .sh-quote { max-width: 100%; }

  /* Studio banner / Service banner — shorter on tablet */
  .sb-card { aspect-ratio: 16 / 9 !important; }

  /* Approach section — single column */
  .sa-section { padding: 3rem 0 4rem; }
  .sa-heading { font-size: 1.35rem !important; }

  /* Clients grid: 3 cols → 2 cols */
  .sl-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .sl-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Service clients slider — smaller cards */
  .cl-head { grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 2rem; }
  .cl-card { width: 200px; height: 130px; }

  /* Standout. table — drop the column headers, tighten */
  .ss-section { padding: 3rem 0 4rem; }
  .ss-title { font-size: clamp(2.2rem, 5vw, 3rem) !important; }
  .ss-row { grid-template-columns: 90px 1fr 1.4fr !important; gap: 0 1rem !important; padding: 1.25rem 0 !important; }
  .ss-row-head { display: none; }

  /* FAQ — homepage 2-col → single column */
  .faq-wrap { grid-template-columns: 1fr; gap: 2rem; }

  /* Counters — 4 → 2 columns */
  .sc-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .sc-num { font-size: clamp(2.8rem, 7vw, 3.8rem); }

  /* What else — single col with tighter text */
  .we-section { padding: 3rem 0 4rem; }
  .we-text { font-size: clamp(1.1rem, 2vw, 1.3rem); }

  /* Crew photos — stay 2-col but smaller */
  .cc-grid { gap: 12px; }
  .cc-img { aspect-ratio: 16 / 11; border-radius: 14px; }

  /* Contact form */
  .ct-title { font-size: clamp(2.5rem, 7vw, 4rem) !important; margin-bottom: 2.5rem; }
  .ct-section { padding: 2.5rem 0 4rem; }

  /* Projects page */
  .proj-section { padding: 2.5rem 0 3rem; }
  .proj-head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .projects-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Project detail */
  .pd-title { font-size: clamp(3.5rem, 12vw, 8rem); margin-bottom: 4rem; }
  .pd-hero { padding: 3rem 0 4rem; }
  .pd-meta-row { grid-template-columns: 1fr; }
  .pd-meta-row-inner { grid-column: 1; }
  .pd-logo-display { grid-template-columns: 1fr; padding: 3rem 0 2rem; }
  .pd-logo-img,
  .pd-logo-text { grid-column: 1; justify-self: start; }
  .pd-gallery-grid { gap: 12px; }
  .pd-next-head { grid-template-columns: 1fr; gap: 1.25rem; }
  .pd-next-cta { align-self: start; }
  .pd-next-cards-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Blog page */
  .bl-hero { padding: 2.5rem 0 3rem; }
  .bl-hero-title { margin-bottom: 2.5rem; }
  .bl-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bl-card-featured { grid-column: span 2; }

  /* Blog post detail — image becomes static banner */
  .pt-grid { grid-template-columns: 1fr; min-height: 0; }
  .pt-media {
    position: static;
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 12px 12px 0;
    border-radius: 20px;
  }
  .pt-content-wrap { padding: 2.5rem 1.5rem 4rem; }
  .pt-title { font-size: clamp(1.75rem, 4.5vw, 2.4rem); }

  /* Post body charts/tables — scrollable on mobile */
  .pt-body .pt-chart-bars { height: 180px; gap: 0.5rem; }
  .pt-body .pt-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
  .pt-body .pt-chart-row {
    grid-template-columns: 100px 1fr 30px;
    font-size: 0.72rem;
  }

  /* Footer — stack columns */
  .ft-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .ft-wordmark { margin: 2rem 0; grid-template-columns:0fr 0fr 1fr}
}

/* ---------- SMALL TABLET (≤768px) ---------- */
@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Studio + Service hero — much smaller heading */
  .sh-heading { font-size: clamp(3rem, 14vw, 5rem); margin-bottom: 2rem; }
  .studio-hero { padding: 3rem 0 2.5rem; }
  .sh-desc { font-size: clamp(1rem, 3.5vw, 1.25rem); }
  .sh-tagline { font-size: clamp(1rem, 3.5vw, 1.25rem); margin-bottom: 1.75rem; }
  .sh-trust { flex-direction: column; align-items: flex-start; gap: 0.85rem; }

  /* Counters — 2 cols on small tablet */
  .sc-section { padding: 3rem 0; }
  .sc-grid { gap: 2rem 1.5rem; }

  /* Standout. table — drop 3-col, stack date + content */
  .ss-row { grid-template-columns: 60px 1fr !important; gap: 0.4rem 1rem !important; padding: 1.25rem 0 !important; }
  .ss-desc { grid-column: 2 !important; max-width: 100% !important; font-size: 0.85rem; }

  /* Clients grid — 2 → still 2 (or 1 if too cramped) */
  .sl-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .sl-tile { aspect-ratio: 5 / 3; padding: 1rem 1.25rem; }
  .sl-tile img { max-width: 60%; }

  /* Service clients slider */
  .cl-section { padding: 2.5rem 0 3.5rem; }
  .cl-card { width: 170px; height: 110px; padding: 1rem 1.25rem; }
  .cl-track { animation-duration: 28s; }

  /* Crew photos — single column */
  .cc-grid,
  .cto-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .cc-img,
  .cto-img { aspect-ratio: 4 / 3; border-radius: 14px; }

  /* Approach */
  .sa-intro { font-size: 0.95rem; }
  .sa-heading { font-size: 1.2rem !important; line-height: 1.4; }

  /* Blog page */
  .bl-cards-grid { grid-template-columns: 1fr; }
  .bl-card-featured { grid-column: 1; }
  .bl-card { height: 380px; }
  .bl-card:hover .bl-card-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Projects filter — search full width */
  .proj-search { min-width: 100%; }
  .proj-filters { gap: 0.5rem; }

  /* Project detail meta + gallery */
  .pd-meta-section { padding: 1.5rem 0 3rem; }
  .pd-meta-row { padding: 1.25rem 0; }
  .pd-result-num { font-size: clamp(2.5rem, 8vw, 3.5rem); }

  /* Post detail */
  .pt-content-wrap { padding: 2rem 1rem 3rem; }
  .pt-body p { font-size: 0.95rem; }
  .pt-body h2 { font-size: 1.25rem; margin: 1.75rem 0 1rem; }
  .pt-body h3 { font-size: 1.05rem; }
  .pt-body .pt-chart { padding: 1.25rem 1rem 1rem; }
  .pt-body .pt-chart-bars { height: 140px; gap: 0.35rem; }
  .pt-body .pt-chart-val { font-size: 0.65rem; top: -1.25rem; }
  .pt-body .pt-chart-yr { font-size: 0.65rem; bottom: -1.25rem; }
  .pt-body .pt-chart-row {
    grid-template-columns: 80px 1fr 28px;
    font-size: 0.7rem;
    gap: 0.4rem;
  }
  .pt-body .pt-chart-rlabel { font-size: 0.68rem; }
  .pt-body .pt-table th,
  .pt-body .pt-table td { padding: 0.7rem 0.5rem; font-size: 0.78rem; }
  .pt-faq-q { font-size: 0.95rem; }
  .pt-faq-a { font-size: 0.9rem; }

  /* Prev/Next cards stack */
  .pt-prevnext { padding: 12px; gap: 12px; }
  .pt-pn-card { aspect-ratio: 16 / 9; }
  .pt-pn-title { font-size: 1rem; }

  /* Contact form — stack columns, smaller heading */
  .ct-section { padding: 2rem 0 3rem; }
  .ct-title { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .ct-grid { gap: 2rem !important; }
  .ct-map { height: 320px; }
  .ct-map-wrap { border-radius: 16px; }

  /* Overlay menu links */
  .overlay-menu .om-nav a,
  .overlay-menu .om-nav .om-nav-btn,
  .services-overlay .so-item { font-size: clamp(2rem, 8vw, 3.5rem); }

  .overlay-menu .om-foot,
  .services-overlay .om-foot {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .overlay-menu .om-legal,
  .services-overlay .om-legal { justify-content: flex-start; }
  .overlay-menu .om-copyright,
  .services-overlay .om-copyright { text-align: left; }

  /* Let's Talk + Quote/Newsletter sections */
  .lt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .qn-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lt-title { font-size: clamp(3rem, 10vw, 5rem); }
  .lt-form { padding: 1.5rem; }

  /* Homepage hero */
  .h-hero { font-size: clamp(2.5rem, 9vw, 4.5rem); }
  .hb-title { font-size: clamp(2.5rem, 10vw, 5rem); }

  /* Section spacing */
  section { scroll-margin-top: 60px; }
}

/* ---------- MOBILE (≤640px) ---------- */
@media (max-width: 640px) {
  .wi-title{
    width: 100%;
  }

  .container { padding-left: 14px; padding-right: 14px; }

  /* Header */
  .site-header { padding: 0.85rem 0; }
  .logo img { height: 32px; width: auto; }

  /* All major headings get smaller */
  h1.h-hero { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .sh-heading { font-size: clamp(2.6rem, 13vw, 4rem); }
  .pd-title { font-size: clamp(2.8rem, 13vw, 5rem); margin-bottom: 3rem; }
  .ct-title { font-size: clamp(1.8rem, 10vw, 2.6rem) !important; }
  .bl-hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .proj-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* Counters — 2 columns on mobile */
  .sc-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
  .sc-num { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .sc-label { font-size: 0.78rem; line-height: 1.35; }

  /* Standout. table — stack everything */
  .ss-section { padding: 2.5rem 0 3rem; }
  .ss-row { grid-template-columns: 1fr !important; gap: 0.35rem !important; padding: 1.25rem 0 !important; }
  .ss-num { color: var(--text-muted); font-size: 0.8rem; }
  .ss-cat { font-size: 0.95rem; }
  .ss-desc { font-size: 0.85rem; max-width: 100% !important; }

  /* Clients grid — single column */
  .sl-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .sl-tile { aspect-ratio: 16 / 7; padding: 1rem 1.5rem; }

  /* Approach NIM/MIO logo smaller */
  .sa-logo { font-size: 1.05rem; }
  .sa-caption { font-size: 0.82rem; }

  /* Service clients slider */
  .cl-card { width: 150px; height: 100px; padding: 0.75rem 1rem; border-radius: 12px; }
  .cl-card img { max-height: 50%; }

  /* What else statement */
  .we-text { font-size: 1.05rem; line-height: 1.45; }
  .we-caption { font-size: 0.88rem; }

  /* Blog card grid */
  .bl-card { padding: 1rem; height: 360px; }
  .bl-card-thumb { width: 60px; height: 38px; top: 1rem; left: 1rem; }
  .bl-card-plus { top: 1rem; right: 1rem; width: 22px; height: 22px; }
  .bl-card-title { font-size: 0.92rem; }
  .bl-card-excerpt { font-size: 0.78rem; }
  .bl-card-featured .bl-card-inner { padding: 1.25rem; min-height: 320px; }
  .bl-card-featured .bl-card-title { font-size: clamp(1.1rem, 5vw, 1.4rem); }
  .bl-card-featured .bl-card-excerpt { font-size: 0.82rem; }

  /* Post detail — image */
  .pt-media { aspect-ratio: 16 / 11; margin: 8px 8px 0; border-radius: 16px; }
  .pt-content-wrap { padding: 1.75rem 0.75rem 2.5rem; }
  .pt-title { font-size: clamp(1.5rem, 7vw, 2rem); margin: 0 0 1.5rem; }
  .pt-date { font-size: 0.82rem; margin-bottom: 1.25rem; }
  .pt-meta { font-size: 0.82rem; margin-bottom: 2rem; flex-wrap: wrap; }
  .pt-meta-sep { margin: 0 0.35rem; }

  /* Post body */
  .pt-body p { font-size: 0.9rem; line-height: 1.65; }
  .pt-body ul,
  .pt-body ol { padding-left: 1.25rem; }
  .pt-body h2 { font-size: 1.15rem; margin: 1.5rem 0 0.85rem; }
  .pt-body h3 { font-size: 1rem; margin: 1.25rem 0 0.75rem; }
  .pt-body .pt-chart { padding: 1rem 0.75rem 0.85rem; }
  .pt-body .pt-chart-title { font-size: 0.85rem; }
  .pt-body .pt-chart-bars { height: 120px; gap: 0.25rem; padding: 0 0.25rem; }
  .pt-body .pt-chart-val { font-size: 0.55rem; top: -1rem; }
  .pt-body .pt-chart-yr { font-size: 0.6rem; bottom: -1.15rem; }
  .pt-body .pt-chart-source { font-size: 0.62rem; margin-top: 1.75rem; }
  .pt-body .pt-chart-row { grid-template-columns: 70px 1fr 22px; font-size: 0.62rem; }
  .pt-body .pt-chart-rval { font-size: 0.65rem; }
  .pt-body .pt-table { font-size: 0.72rem; }
  .pt-body .pt-table thead th { font-size: 0.62rem; padding: 0.55rem 0.45rem; }
  .pt-body .pt-table td { padding: 0.55rem 0.45rem; }
  .pt-body .pt-review-text { font-size: 0.92rem; }

  /* Author block & back link */
  .pt-author-name { font-size: 0.88rem; }
  .pt-back { font-size: 0.82rem; }

  /* Prev/Next cards */
  .pt-pn-card { aspect-ratio: 16 / 10; }
  .pt-pn-title { font-size: 0.92rem; }
  .pt-pn-label { font-size: 0.78rem; }
  .pt-pn-content { left: 1rem; right: 1rem; gap: 8px; }

  /* Connect block */
  .pt-connect-title { font-size: 0.92rem; }
  .pt-connect-text { font-size: 0.85rem; }
  .pt-connect-socials a { width: 32px; height: 32px; }

  /* Contact form */
  .ct-field input,
  .ct-field textarea { font-size: 0.92rem; }
  .ct-field label { font-size: 0.78rem; }
  .ct-phone { grid-template-columns: 90px 1fr; }
  .ct-captcha-wrap { transform: scale(0.85); transform-origin: 0 0; }

  /* Contact info column */
  .ct-intro { font-size: 1.02rem; }
  .ct-office-title { font-size: 1rem; }
  .ct-office-addr { font-size: 0.88rem; }

  /* Map card */
  .ct-map { height: 280px; }
  .ct-map-wrap { border-radius: 14px; }

  /* Quote/Newsletter section */
  .qn-text { font-size: clamp(1.5rem, 8vw, 2.4rem); }
  .qn-news-title { font-size: clamp(1.75rem, 8vw, 2.6rem); }
  .quote-news-section { padding: 2.5rem 0; }

  /* Footer Let's Talk */
  .lt-section { padding: 2rem 0; }
  .lt-card { margin: 0 8px; border-radius: 16px; }
  .lt-inner { padding: 1.5rem 1rem; }
  .lt-form { padding: 1.25rem; border-radius: 16px; }
  .lt-form-title { font-size: 1.5rem; }
  .lt-title { font-size: clamp(2.5rem, 12vw, 4rem); margin-bottom: 1.5rem; }
  .lt-desc { font-size: 1rem; }
  .lt-info-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .lt-profile { width: 100%; flex-direction: row; }
  .lt-profile-img { width: 80px; height: 80px; }

  /* Footer wordmark + bottom */
  
  .ft-mark-sub { font-size: 2.9rem; }
  .ft-bottom-inner { grid-template-columns: 1fr !important; gap: 1rem; text-align: left; padding: 1.25rem 1rem !important; }
  .ft-copy { flex-direction: column; gap: 0.25rem; align-items: flex-start !important; }
  .ft-credit { flex-direction: column; gap: 0.5rem; align-items: flex-start !important; }
}

/* ---------- SMALL MOBILE (≤380px) ---------- */
@media (max-width: 380px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .sh-heading { font-size: 2.2rem; }
  .pd-title { font-size: 2.5rem; }
  .ct-title { font-size: 1.7rem !important; }
  .bl-hero-title { font-size: 2.75rem; }
  .pt-title { font-size: 1.4rem; }
  .sc-num { font-size: 2.2rem; }
  .cl-card { width: 130px; height: 90px; }

  /* Captcha scale further */
  .ct-captcha-wrap,
  .lt-captcha-wrap { transform: scale(0.78); }

  /* Buttons + pills slightly smaller */
  .sa-cta,
  .ct-submit,
  .pd-next-cta { padding: 0.45rem 0.45rem 0.45rem 0.95rem; font-size: 0.75rem; }
}

/* ---------- TOUCH-FRIENDLY (any pointer:coarse) ---------- */
@media (pointer: coarse) {
  /* Disable hover effects that don't translate to touch */
  .bl-card:hover .bl-card-thumb,
  .trend-card:hover .trend-thumb {
    /* tap-friendly: keep small thumb visible by default */
  }
  /* Larger tap targets */
  .pc-more,
  .proj-dd-trigger,
  .proj-search-ico,
  .sf-toggle,
  .faq-q,
  .pt-back,
  .pt-connect-socials a { min-height: 44px; }
}

/* ============================================
   ACCESSIBILITY & SEO HELPERS
   ============================================ */

/* Visually hidden but readable by screen readers & Google */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Mobile blog cards — simple stacked layout (no hover-expand gap) ===== */
@media (max-width: 768px) {
  .bl-card {
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  /* Image sits at the top, in normal flow, full width 16:9 */
  .bl-card-thumb {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }
  /* Text sits directly under the image — no pushed-to-bottom gap */
  .bl-card-meta {
    margin-top: 0;
    padding: 0.9rem 1.1rem 1.25rem;
    gap: 0.45rem;
  }
  /* The "+" is a hover affordance — not needed on touch */
  .bl-card-plus { display: none; }
}
