/* ============================================================
   SPARXADS GLOBAL MEDIA — Shared Stylesheet
   Strict black & white system. No color, no gradients.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340;0,9..144,420;0,9..144,560;0,9..144,650;1,9..144,420;1,9..144,500&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --white:#FFFFFF;
  --black:#000000;
  --line:rgba(0,0,0,0.12);
  --line-strong:rgba(0,0,0,0.75);
  --ink-90:rgba(0,0,0,0.9);
  --ink-70:rgba(0,0,0,0.68);
  --ink-50:rgba(0,0,0,0.5);
  --ink-35:rgba(0,0,0,0.35);
  --paper-90:rgba(255,255,255,0.92);
  --paper-70:rgba(255,255,255,0.7);
  --paper-50:rgba(255,255,255,0.5);
  --paper-30:rgba(255,255,255,0.3);

  --display: 'Fraunces', ui-serif, Georgia, serif;
  --body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --wrap: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-pad: clamp(72px, 11vw, 160px);
  --ease: cubic-bezier(.16,.8,.24,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--white);
  color:var(--black);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

img,svg{ display:block; max-width:100%;height: auto; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }

::selection{ background:var(--black); color:var(--white); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--black);
  outline-offset:3px;
}

.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 var(--gutter);
}

.section{ padding:var(--section-pad) 0; position:relative; }
.section-tight{ padding:calc(var(--section-pad)*0.6) 0; }
.section-alt{ background:var(--black); color:var(--white); }
.section-line-top{ border-top:1px solid var(--line); }

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:560;
  letter-spacing:-0.01em;
  margin:0;
  line-height:1.05;
}
h1{ font-size:clamp(2.6rem, 6.5vw, 5.6rem); font-weight:420; }
h2{ font-size:clamp(2rem, 4.2vw, 3.4rem); }
h3{ font-size:clamp(1.3rem, 2vw, 1.7rem); }
p{ margin:0; }

.italic{ font-style:italic; font-weight:420; }

.eyebrow{
  font-family:var(--mono);
  font-size:0.72rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--ink-50);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.section-alt .eyebrow{ color:var(--paper-50); }
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background:currentColor;
  display:inline-block;
}

.lede{
  font-size:clamp(1.05rem, 1.6vw, 1.3rem);
  color:var(--ink-70);
  max-width:640px;
  font-weight:400;
}
.section-alt .lede{ color:var(--paper-70); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 30px;
  font-family:var(--body);
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.01em;
  border-radius:999px;
  border:1px solid var(--black);
  white-space:nowrap;
  transition:transform 0.5s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color .35s var(--ease);
  position:relative;
  overflow:hidden;
}
.btn-primary{ background:var(--black); color:var(--white); }
.btn-primary:hover{ transform:translateY(-2px); background:#1a1a1a; }
.btn-ghost{ background:transparent; color:var(--black); }
.btn-ghost:hover{ transform:translateY(-2px); background:var(--black); color:var(--white); }
.section-alt .btn-primary{ background:var(--white); color:var(--black); border-color:var(--white); }
.section-alt .btn-primary:hover{ background:#eee; }
.section-alt .btn-ghost{ border-color:var(--white); color:var(--white); }
.section-alt .btn-ghost:hover{ background:var(--white); color:var(--black); }
.btn svg{ width:15px; height:15px; transition:transform .4s var(--ease); }
.btn:hover svg{ transform:translate(3px,-3px); }

.btn-row{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* ---------- Nav ---------- */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:var(--paper-90);
  backdrop-filter:blur(14px) saturate(1.1);
  -webkit-backdrop-filter:blur(14px) saturate(1.1);
  border-bottom:1px solid transparent;
  transition:border-color .4s var(--ease), background .4s var(--ease);
}
.site-nav.scrolled{ border-bottom-color:var(--line); }
.nav-inner{
  max-width:var(--wrap);
  margin:0 auto;
  padding:20px var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--mono);
  font-weight:500;
  font-size:0.95rem;
  letter-spacing:0.02em;
}
.brand-mark{ width:26px; height:26px; flex:none; }
.brand-name b{ font-weight:600; }
.brand-name span{ color:var(--ink-50); }

.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  padding:10px 18px;
  font-size:0.9rem;
  font-weight:500;
  position:relative;
  color:var(--ink-70);
  transition:color .3s var(--ease);
}
.nav-links a::after{
  content:'';
  position:absolute; left:18px; right:18px; bottom:6px; height:1px;
  background:var(--black);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color:var(--black); }
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-cta .btn{ padding:12px 22px; font-size:0.85rem; }

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border:1px solid var(--line);
  border-radius:50%;
  background:none;
  align-items:center; justify-content:center;
}
.nav-toggle span{ position:relative; width:16px; height:1px; background:var(--black); display:block; }
.nav-toggle span::before,.nav-toggle span::after{
  content:''; position:absolute; left:0; width:16px; height:1px; background:var(--black); transition:transform .3s var(--ease);
}
.nav-toggle span::before{ top:-5px; }
.nav-toggle span::after{ top:5px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ transform:translateY(5px) rotate(45deg); }
.nav-toggle.open span::after{ transform:translateY(-5px) rotate(-45deg); }

.mobile-panel{
  position:fixed;
  inset:0;
  top:0;
  width:100%;
  height:100vh;
  background:var(--white);
  z-index:190;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  padding:90px var(--gutter) 32px;
  overflow-y:auto;
  transform:translateY(-100%);
  transition:transform .55s var(--ease);
}
.mobile-panel.open{ transform:translateY(0); }
.mobile-panel a{
  width:100%;
  display:block;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  font-family:var(--display);
  font-size:clamp(1.5rem,6vw,2rem);
  line-height:1.2;
}

.mobile-panel .btn{
  margin-top:24px;
  width:100%;
  justify-content:center;
  align-self:stretch;
}

/* ---------- Reveal animation ---------- */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }
.reveal-delay-4{ transition-delay:.32s; }

.stagger > *{ opacity:0; transform:translateY(20px); transition:opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.stagger.in > *{ opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(1){ transition-delay:.05s; }
.stagger.in > *:nth-child(2){ transition-delay:.12s; }
.stagger.in > *:nth-child(3){ transition-delay:.19s; }
.stagger.in > *:nth-child(4){ transition-delay:.26s; }
.stagger.in > *:nth-child(5){ transition-delay:.33s; }
.stagger.in > *:nth-child(6){ transition-delay:.4s; }
.stagger.in > *:nth-child(7){ transition-delay:.47s; }
.stagger.in > *:nth-child(8){ transition-delay:.54s; }
.stagger.in > *:nth-child(9){ transition-delay:.61s; }

/* ---------- Loader ---------- */
.loader{
  position:fixed; inset:0; z-index:999;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.done{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-mark{ width:54px; height:54px; }
.loader-mark path{
  stroke-dasharray:220;
  stroke-dashoffset:220;
  animation:draw 1.1s var(--ease) forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

/* ---------- Hero ---------- */
.hero{
  padding:calc(var(--section-pad) + 64px) 0 var(--section-pad);
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:clamp(24px,4vw,60px);
  align-items:end;
}
.hero-head{ max-width:760px; }
.hero-head h1{ margin-top:18px; }
.hero-head h1 em{ font-style:italic; font-weight:420; }
.hero-sub{
  margin-top:26px;
  font-size:clamp(1.05rem,1.6vw,1.25rem);
  color:var(--ink-70);
  max-width:520px;
}
.hero-side{
  border-left:1px solid var(--line);
  padding-left:clamp(20px,3vw,40px);
  display:flex; flex-direction:column; gap:22px;
}
.hero-side p{ color:var(--ink-70); font-size:0.98rem; }
.hero-actions{ margin-top:38px; }

.hero-chart{
  margin-top:70px;
  background:#fff;
  border:2px solid #000;
  border-radius:28px;
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  overflow:hidden;
}

.chart-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:24px;
}

.chart-badge{
  display:inline-block;
  padding:6px 12px;
  border:1px solid #000;
  border-radius:999px;
  font-family:var(--mono);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
}

.chart-header h3{
  margin-top:12px;
  font-family:var(--display);
  font-size:1.6rem;
}

.chart-stats{display:flex;gap:22px;flex-wrap:wrap;}

.mini-stat{border-left:2px solid #000;padding-left:14px;}
.mini-stat span{display:block;font-family:var(--mono);font-size:.72rem;color:var(--ink-50);letter-spacing:.1em;}
.mini-stat strong{display:block;font-size:1.7rem;font-weight:800;line-height:1.2;}

.hero-chart svg{width:100%;height:320px;overflow:visible;}
.grid line{stroke:rgba(0,0,0,.08);stroke-width:1;}
.chart-line{fill:none;stroke:#000;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1800;stroke-dashoffset:1800;transition:stroke-dashoffset 2.2s var(--ease);}
.hero-chart.in .chart-line{stroke-dashoffset:0;}

.hero-chart-labels{display:flex;justify-content:space-between;margin-top:18px;font-family:var(--mono);font-size:.72rem;letter-spacing:.16em;color:var(--ink-50);}

@media (max-width:760px){
  .chart-header{flex-direction:column;}
  .chart-stats{width:100%;justify-content:space-between;gap:16px;}
  .mini-stat strong{font-size:1.35rem;}
  .hero-chart svg{height:220px;}
}

/* ---------- Marquee / trust strip ---------- */
.marquee{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  padding:26px 0;
}
.marquee-track{
  display:flex; gap:0;
  width:max-content;
  animation:scroll-x 34s linear infinite;
}
@keyframes scroll-x{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee-item{
  font-family:var(--display);
  font-style:italic;
  font-size:1.5rem;
  color:var(--ink-35);
  padding:0 clamp(28px,4vw,56px);
  white-space:nowrap;
  border-right:1px solid var(--line);
}

/* ---------- Two column intro ---------- */
.intro-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:clamp(30px,6vw,90px);
}
.intro-num{ font-family:var(--mono); font-size:0.8rem; color:var(--ink-35); letter-spacing:.15em; }
.intro-grid h2{ margin-top:16px; }
.intro-copy{ display:flex; flex-direction:column; gap:22px; }
.intro-copy p{ color:var(--ink-70); font-size:1.05rem; max-width:560px; }

/* ---------- Feature / why choose us ---------- */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  margin-top:56px;
}
.feature-card{
  background:var(--white);
  padding:40px 34px;
  transition:background .4s var(--ease), transform .4s var(--ease);
}
.feature-card:hover{ background:var(--black); color:var(--white); transform:translateY(-4px); }
.feature-card:hover .feature-icon{ filter:invert(1); }
.feature-icon{ width:38px; height:38px; margin-bottom:26px; }
.feature-card h3{ margin-bottom:12px; }
.feature-card p{ color:var(--ink-70); font-size:0.95rem; }
.feature-card:hover p{ color:var(--paper-70); }

/* ---------- Stats ---------- */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(20px,3vw,40px);
  margin-top:56px;
}
.stat{ border-top:1px solid var(--paper-30); padding-top:20px; }
.stat-num{
  font-family:var(--display);
  font-size:clamp(2.6rem,4.5vw,3.8rem);
  font-weight:500;
  display:flex; align-items:baseline; gap:4px;
}
.stat-label{ font-family:var(--mono); font-size:0.78rem; color:var(--paper-50); margin-top:10px; letter-spacing:.03em; }

/* ---------- Timeline / process ---------- */
.timeline{ margin-top:60px; }
.timeline-row{
  display:grid;
  grid-template-columns:110px 1fr 1.4fr;
  gap:28px;
  padding:34px 0;
  border-top:1px solid var(--line);
  align-items:start;
}
.timeline-row:last-child{ border-bottom:1px solid var(--line); }
.timeline-index{ font-family:var(--mono); font-size:0.85rem; color:var(--ink-35); }
.timeline-title{ font-family:var(--display); font-size:1.5rem; }
.timeline-desc{ color:var(--ink-70); font-size:0.98rem; max-width:560px; }
.timeline-row:hover .timeline-index{ color:var(--black); }
.timeline-row:hover .timeline-title{ transform:translateX(6px); }
.timeline-title{ transition:transform .4s var(--ease); }

/* ---------- Results / case cards ---------- */
.results-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:56px;
}
.result-card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:36px 30px;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.result-card:hover{ transform:translateY(-6px); box-shadow:0 24px 50px -30px rgba(0,0,0,0.35); }
.result-tag{ font-family:var(--mono); font-size:0.72rem; letter-spacing:.1em; color:var(--ink-50); text-transform:uppercase; }
.result-metric{ font-family:var(--display); font-size:3rem; margin-top:16px; }
.result-metric span{ font-size:1.4rem; color:var(--ink-35); }
.result-desc{ margin-top:16px; color:var(--ink-70); font-size:0.94rem; }
.result-client{ margin-top:24px; padding-top:18px; border-top:1px solid var(--line); font-size:0.85rem; color:var(--ink-50); font-family:var(--mono); }

/* ---------- Testimonial preview / cards ---------- */
.t-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.t-card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:34px 30px;
  display:flex; flex-direction:column; gap:20px;
  background:var(--white);
}
.stars{ display:flex; gap:5px; }
.stars svg{ width:16px; height:16px; }
.t-quote{ font-family:var(--display); font-size:1.18rem; line-height:1.45; font-weight:400; }
.t-person{ display:flex; align-items:center; gap:14px; margin-top:auto; padding-top:16px; border-top:1px solid var(--line); }
.t-avatar{
  width:42px; height:42px; border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-style:italic; font-size:1.1rem;
}
.t-person-name{ font-weight:600; font-size:0.92rem; }
.t-person-role{ font-size:0.82rem; color:var(--ink-50); }

/* ---------- CTA banner ---------- */
.cta-banner{
  text-align:center;
  padding:96px var(--gutter);
  border-radius:32px;
  background:var(--black);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.cta-banner h2{ max-width:760px; margin:0 auto; }
.cta-banner .lede{ margin:22px auto 0; text-align:center; color:var(--paper-70); }
.cta-banner .btn-row{ justify-content:center; margin-top:38px; }
.cta-ring{
  position:absolute; border:1px solid var(--paper-30); border-radius:50%;
  width:620px; height:620px; top:-320px; right:-220px;
}

/* ---------- Footer ---------- */
.site-footer{ border-top:1px solid var(--line); padding:70px 0 30px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 0.8fr 0.8fr 1fr;
  gap:40px;
}
.footer-brand .brand{ margin-bottom:18px; }
.footer-brand p{ color:var(--ink-50); font-size:0.9rem; max-width:280px; }
.footer-col h4{ font-family:var(--mono); font-size:0.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-50); margin-bottom:18px; font-weight:500; }
.footer-col a, .footer-col p{ display:block; font-size:0.92rem; color:var(--ink-70); padding:6px 0; }
.footer-col a{ transition:color .3s var(--ease); }
.footer-col a:hover{ color:var(--black); }
.footer-bottom{
  margin-top:56px; padding-top:22px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:0.82rem; color:var(--ink-35);
}
.footer-social{ display:flex; gap:16px; }
.footer-social a{ color:var(--ink-50); }
.footer-social a:hover{ color:var(--black); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ padding:calc(var(--section-pad) + 60px) 0 60px; }
.page-hero h1{ margin-top:18px; max-width:820px; }
.page-hero .lede{ margin-top:24px; }

/* ---------- Services page ---------- */
.service-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); margin-top:20px;
}
.service-card{
  background:var(--white); padding:38px 32px; min-height:270px;
  display:flex; flex-direction:column;
  transition:background .4s var(--ease), color .4s var(--ease);
}
.service-card:hover{ background:var(--black); color:var(--white); }
.service-card:hover .service-icon{ filter:invert(1); }
.service-icon{ width:36px; height:36px; margin-bottom:24px; }
.service-num{ font-family:var(--mono); font-size:0.75rem; color:var(--ink-35); margin-bottom:auto; order:-1; }
.service-card:hover .service-num{ color:var(--paper-50); }
.service-card h3{ margin-bottom:10px; }
.service-card p{ font-size:0.93rem; color:var(--ink-70); }
.service-card:hover p{ color:var(--paper-70); }

.deliverables-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px 40px; margin-top:40px; }
.deliverable{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line); }
.deliverable svg{ width:20px; height:20px; flex:none; margin-top:3px; }
.deliverable-title{ font-weight:600; font-size:0.98rem; }
.deliverable p{ color:var(--ink-70); font-size:0.9rem; margin-top:4px; }

/* FAQ accordion */
.faq-list{ margin-top:40px; max-width:820px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none;
  padding:26px 0; display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-family:var(--display); font-size:1.2rem; color:var(--black);
}
.faq-q .plus{ position:relative; width:18px; height:18px; flex:none; }
.faq-q .plus::before,.faq-q .plus::after{ content:''; position:absolute; background:var(--black); transition:transform .35s var(--ease); }
.faq-q .plus::before{ left:0; top:8px; width:18px; height:1.4px; }
.faq-q .plus::after{ top:0; left:8px; width:1.4px; height:18px; }
.faq-item.open .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .5s var(--ease); }
.faq-a-inner{ padding-bottom:26px; color:var(--ink-70); max-width:680px; font-size:0.98rem; }
.faq-item.open .faq-a{ max-height:220px; }


/* ---------- Testimonials page ---------- */
.tstats-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:48px;
}

.tstat{
  border:1px solid var(--line);
  border-radius:20px;
  padding:32px 24px;
  text-align:center;
  transition:all .35s var(--ease);
}

.tstat:hover{
  transform:translateY(-6px);
  border-color:var(--black);
  box-shadow:0 16px 36px rgba(0,0,0,.08);
}

.tstat-number{
  font-family:var(--display);
  font-size:clamp(2.8rem,5vw,4rem);
  font-weight:560;
  line-height:1;
  color:var(--black);
  margin-bottom:12px;
}

.tstat-number span{
  font:inherit;
  color:inherit;
}

.tstat-label{
  font-family:var(--mono);
  font-size:.82rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ink-50);
  line-height:1.5;
}

@media (max-width:760px){
  .tstats-row{grid-template-columns:1fr;gap:18px;}
}

.carousel{ margin-top:60px; position:relative; }
.carousel-track-wrap{ overflow:hidden; }
.carousel-track{ display:flex; transition:transform .7s var(--ease); }
.carousel-slide{ flex:0 0 100%; padding:6px; }
.carousel-card{
  border:1px solid var(--line); border-radius:26px; padding:56px;
  display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center;
}
.carousel-quote{ font-family:var(--display); font-size:clamp(1.3rem,2vw,1.7rem); line-height:1.45; }
.carousel-meta{ margin-top:26px; }
.carousel-nav{ display:flex; justify-content:center; gap:14px; margin-top:34px; align-items:center; }
.carousel-btn{
  width:46px; height:46px; border-radius:50%; border:1px solid var(--black);
  display:flex; align-items:center; justify-content:center;
  background:var(--white); transition:background .3s var(--ease), color .3s var(--ease);
}
.carousel-btn:hover{ background:var(--black); color:var(--white); }
.carousel-btn svg{ width:16px; height:16px; }
.carousel-dots{ display:flex; gap:8px; }
.carousel-dot{ width:7px; height:7px; border-radius:50%; background:var(--line); transition:background .3s var(--ease), transform .3s var(--ease); }
.carousel-dot.active{ background:var(--black); transform:scale(1.3); }

.before-after{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:56px; }
.ba-panel{ border:1px solid var(--line); border-radius:22px; padding:38px; }
.ba-panel.before{ opacity:0.62; }
.ba-label{ font-family:var(--mono); font-size:0.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-50); }
.ba-metric-row{ display:flex; justify-content:space-between; align-items:baseline; padding:16px 0; border-bottom:1px solid var(--line); }
.ba-metric-row:last-child{ border-bottom:none; }
.ba-metric-label{ font-size:0.92rem; color:var(--ink-70); }
.ba-metric-val{ font-family:var(--display); font-size:1.6rem; }
.ba-arrow{ display:flex; align-items:center; justify-content:center; }
.ba-arrow svg{ width:34px; height:34px; }

.wall-grid{ columns:3 260px; column-gap:24px; margin-top:56px; }
.wall-card{ break-inside:avoid; border:1px solid var(--line); border-radius:20px; padding:28px; margin-bottom:24px; }
.wall-card p{ font-size:0.95rem; color:var(--ink-70); margin-top:14px; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,6vw,90px); align-items:start; }
.form-field{ margin-bottom:22px; }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
label{ display:block; font-family:var(--mono); font-size:0.72rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-50); margin-bottom:8px; }
input, select, textarea{
  width:100%; border:none; border-bottom:1px solid var(--line);
  background:transparent; padding:12px 2px; font-family:var(--body); font-size:1rem; color:var(--black);
  transition:border-color .3s var(--ease);
}
input:focus, select:focus, textarea:focus{ border-color:var(--black); outline:none; }
textarea{ resize:vertical; min-height:110px; }
.submit-row{ margin-top:34px; display:flex; align-items:center; gap:18px; }
.form-note{ font-size:0.82rem; color:var(--ink-35); }
.form-success{
  display:none; align-items:center; gap:14px; padding:20px 22px; border:1px solid var(--line); border-radius:14px; margin-top:22px;
  font-size:0.95rem;
}
.form-success.show{ display:flex; }
.form-success svg{ width:22px; height:22px; flex:none; }

.info-block{ border-top:1px solid var(--line); padding:26px 0; }
.info-block:first-child{ border-top:none; padding-top:0; }
.info-block h4{ font-family:var(--mono); font-size:0.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-50); margin-bottom:12px; font-weight:500; }
.info-block p, .info-block a{ font-size:1rem; display:block; padding:2px 0; }
.hours-row{ display:flex; justify-content:space-between; font-size:0.94rem; padding:6px 0; color:var(--ink-70); }
.hours-row b{ color:var(--black); font-weight:600; }

.map-block{
  margin-top:56px; border:1px solid var(--line); border-radius:24px; overflow:hidden;
  aspect-ratio:16/7; position:relative; background:var(--white);
}
.map-block svg{ width:100%; height:100%; }
.map-pin{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-100%);
  display:flex; flex-direction:column; align-items:center;
}
.map-pin-dot{ width:14px; height:14px; border-radius:50%; background:var(--black); border:3px solid var(--white); box-shadow:0 0 0 1px var(--black); }
.map-pin-pulse{ position:absolute; top:0; width:14px; height:14px; border-radius:50%; border:1px solid var(--black); animation:pulse 2.4s ease-out infinite; }
@keyframes pulse{ 0%{ transform:scale(1); opacity:.8; } 100%{ transform:scale(3.6); opacity:0; } }

/* ---------- Utility layout helpers ---------- */
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; }
.section-head h2{ margin-top:14px; max-width:640px; }
.center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-lg{ margin-top:56px; }

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-side{ border-left:none; border-top:1px solid var(--line); padding-left:0; padding-top:24px; flex-direction:row; flex-wrap:wrap; }
  .feature-grid, .service-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .results-grid, .t-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .intro-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .before-after{ grid-template-columns:1fr; }
  .carousel-card{ grid-template-columns:1fr; padding:36px; }
}
@media (max-width:760px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .timeline-row{ grid-template-columns:1fr; gap:10px; }
  .feature-grid, .service-grid, .stats-grid, .results-grid, .t-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .deliverables-grid{ grid-template-columns:1fr; }
  .form-row-2{ grid-template-columns:1fr; }
  .wall-grid{ columns:1; }
  .cta-banner{ padding:64px 26px; border-radius:22px; }
  .tstats-row{ gap:32px; }
}

/* Navigation Logo */
.brand img,
.nav-logo {
    width: auto;
    height: 38px;      /* Adjust to 32px–40px if needed */
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-inner {
    padding: 14px var(--gutter);
}

/* Mobile Navigation Logo */
@media (max-width: 760px) {
  .brand img,
  .nav-logo {
    height: 28px;   /* Smaller logo for mobile */
    width: auto;
  }

  .brand {
    gap: 8px;
  }

  .nav-inner {
    padding: 10px var(--gutter);
  }
}

/* Space above the calendar section */
.bordered-section{
    margin-top: 4rem;
}

/* Premium bordered container */
.calendar-card{
    border: 2px solid #1f1f1f;
    border-radius: 28px;
    padding: 4rem 2rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.footer-brand .nav-logo{
    display: block;
    margin-bottom: 18px;
    transform: translateY(-10px); /* Moves the logo slightly upward */
}

.form-success{
    display:none;
    align-items:center;
    gap:12px;
}
