/* ===================================================
   creAItive Labs — stylesheet
=================================================== */

:root{
  --black:#0b0b0c;
  --ink:#111111;
  --cream:#F7F3EE;
  --cream-2:#EFE8DF;
  --white:#FFFFFF;
  --terracotta:#D96C4A;
  --terracotta-dark:#B8532F;
  --terracotta-light:#F2A65A;
  --terracotta-tint:#FBEDE7;
  --whatsapp:#25D366;
  --whatsapp-dark:#1DA851;
  --muted:#6b665f;
  --muted-on-dark:#a9a49c;
  --border:#E4DCD1;
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:10px;
  --font-head:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }

.wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 40px;
}

.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9999;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.dot-suffix, .eyebrow .dot{ color:var(--terracotta); }
.nowrap-heading{ white-space:nowrap; font-size:clamp(22px,2.7vw,40px) !important; }
@keyframes kenBurns{
  0%{ transform:scale(1) translate(0,0); }
  50%{ transform:scale(1.08) translate(-1.2%,-1%); }
  100%{ transform:scale(1) translate(0,0); }
}
.ken-burns{ animation:kenBurns 16s ease-in-out infinite; }
.accent-grad{
  background:linear-gradient(100deg, var(--terracotta) 10%, var(--terracotta-light) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 26px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  transition:transform .35s var(--ease), background .3s ease, color .3s ease, box-shadow .3s ease;
  border:1.5px solid transparent;
  white-space:nowrap;
  cursor:pointer;
}
.btn-solid{
  background:var(--terracotta);
  color:var(--white);
  box-shadow:0 10px 24px -10px rgba(217,108,74,.55);
}
.btn-solid:hover{ background:var(--terracotta-dark); transform:translateY(-2px); }
.btn-outline{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline:hover{ background:var(--ink); color:var(--cream); transform:translateY(-2px); }
.btn-gradient{
  background:linear-gradient(100deg, var(--terracotta-dark), var(--terracotta) 55%, var(--terracotta-light));
  color:var(--white);
  box-shadow:0 14px 28px -12px rgba(217,108,74,.55);
  width:100%;
}
.btn-gradient:hover{ transform:translateY(-2px); filter:brightness(1.05); }

/* ---------- floating whatsapp ---------- */
.wa-float{
  position:fixed; right:26px; bottom:26px; z-index:400;
  width:58px; height:58px; border-radius:50%;
  background:var(--whatsapp); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.6);
  transition:transform .3s var(--ease), box-shadow .3s ease;
}
.wa-float svg{ width:30px; height:30px; fill:currentColor; }
.wa-float:hover{ transform:scale(1.08) translateY(-2px); box-shadow:0 18px 36px -8px rgba(37,211,102,.7); }
.wa-float::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  border:2px solid var(--whatsapp); opacity:.55;
  animation:waPulse 2.2s ease-out infinite;
}
@keyframes waPulse{
  0%{ transform:scale(1); opacity:.5; }
  100%{ transform:scale(1.6); opacity:0; }
}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:500;
  background:rgba(247,243,238,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, background .3s ease;
}
.site-header.scrolled{ border-color:var(--border); }
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height:84px;
}
.logo{ display:flex; align-items:center; gap:13px; flex:none; }
.logo-mark{ width:40px; height:36px; flex:none; overflow:visible; }
.logo-flask{ width:18px; height:20px; display:inline-block; vertical-align:-3px; margin:0 2px 0 7px; flex:none; }
.logo-word{ font-family:var(--font-head); font-weight:600; font-size:24px; letter-spacing:-.01em; display:inline-flex; align-items:center; white-space:nowrap; }
.logo-word .ink{ color:var(--ink); }
.logo-word .accent{ color:var(--terracotta); }

.main-nav{ display:flex; gap:36px; }
.main-nav a{ font-size:15px; font-weight:500; color:var(--ink); position:relative; padding:4px 0; }
.main-nav a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1.5px; background:var(--terracotta);
  transition:right .3s var(--ease);
}
.main-nav a:hover::after{ right:0; }

.nav-cta{ padding:12px 22px; font-size:14px; }
.nav-toggle{ display:none; }

/* ---------- hero ---------- */
.hero{ padding:52px 0 0; position:relative; }
.hero-top{
  display:grid; grid-template-columns:1.3fr 1fr; gap:40px;
  align-items:end;
  padding-bottom:44px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  padding:8px 16px; border:1px solid var(--border); border-radius:999px;
  margin:0 0 26px; color:var(--muted);
  background:var(--white);
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--terracotta); display:inline-block; }
.tagline{
  font-family:var(--font-head); font-style:italic; font-weight:500; font-size:15px;
  color:var(--terracotta); letter-spacing:.01em; margin:0 0 18px;
}
.hero-title{
  font-size:clamp(40px,5.4vw,74px);
  line-height:1.04;
  letter-spacing:-0.02em;
  color:var(--ink);
}
.hero-title .underline{ position:relative; color:var(--terracotta); white-space:nowrap; }
.hero-sub{ font-size:17px; line-height:1.6; color:var(--muted); max-width:38ch; margin-bottom:26px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* spinning badge (links to whatsapp) — fixed to viewport, always visible */
.spin-badge{
  position:fixed; top:104px; right:40px; width:150px; height:150px; z-index:450;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:transform .35s var(--ease);
}
.spin-badge:hover{ transform:scale(1.06); }
.spin-badge-svg{ width:100%; height:100%; animation:spin 18s linear infinite; }
.spin-badge-ring{ stroke:var(--ink); stroke-width:1.4; }
.spin-badge-inner-ring{ stroke:var(--terracotta); stroke-width:1.6; }
.spin-badge-dot{ position:absolute; width:9px; height:9px; border-radius:50%; background:var(--terracotta); }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* hero visual (replaces photo row) */
.hero-visual-wrap{
  position:relative;
  perspective:1800px;
  padding-bottom:8px;
}
.hero-visual{
  margin:0; border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:16/8;
  box-shadow:0 40px 80px -30px rgba(20,15,10,.4);
  transform-style:preserve-3d;
  will-change:transform;
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-visual-chip{
  position:absolute; padding:12px 20px; border-radius:999px;
  background:rgba(11,11,12,.72); backdrop-filter:blur(8px);
  color:var(--cream); font-size:13px; font-weight:600;
  box-shadow:0 16px 30px -14px rgba(0,0,0,.5);
}
.chip-1{ top:14%; left:6%; }
.chip-2{ bottom:12%; right:7%; }

/* ---------- section shared ---------- */
section{ padding:120px 0; position:relative; }
.section-head{ max-width:640px; margin:0 0 56px; }
.section-head.center{ max-width:640px; margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(30px,3.6vw,46px); line-height:1.08; margin-bottom:16px; }
.section-head p{ font-size:16.5px; color:var(--muted); line-height:1.6; }

/* ---------- about ---------- */
.about{ background:var(--white); }
.about-title{ font-size:clamp(34px,5.2vw,64px); line-height:1.06; margin-bottom:30px; }
.about-copy{ display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1000px; margin-bottom:64px; }
.about-copy p{ font-size:16.5px; line-height:1.65; color:var(--muted); }
.about-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:0 32px; }
.stat{ padding-top:20px; border-top:1px solid var(--border); }
.stat-num{ display:block; font-family:var(--font-head); font-size:40px; font-weight:700; margin-bottom:8px; }
.stat-label{ font-size:13.5px; color:var(--muted); line-height:1.4; }

/* about project carousel */
.about-carousel-wrap{ overflow:hidden; margin-top:70px; -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ac-track{ display:flex; gap:20px; width:max-content; animation:acScroll 30s linear infinite; }
.about-carousel-wrap:hover .ac-track{ animation-play-state:paused; }
@keyframes acScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.ac-card{
  position:relative; flex:none; width:230px; aspect-ratio:3/4; border-radius:16px;
  overflow:hidden;
  background:linear-gradient(150deg, #1a1a1c, #0b0b0c);
  border:1px solid rgba(247,243,238,.08);
  box-shadow:0 20px 40px -22px rgba(0,0,0,.5);
}
.ac-media{ width:100%; height:100%; object-fit:cover; display:block; }
.ac-label{
  position:absolute; left:12px; bottom:12px; z-index:2;
  padding:7px 13px; border-radius:999px;
  background:rgba(11,11,12,.62); backdrop-filter:blur(6px);
  color:var(--cream); font-size:11px; font-weight:600;
  text-transform:uppercase; letter-spacing:.05em;
}

/* ---------- services ---------- */
.services{ background:var(--cream); }
.services-head{ display:flex; align-items:center; justify-content:space-between; gap:48px; flex-wrap:wrap; max-width:none; margin-bottom:56px; }
.services-head-text{ flex:1 1 420px; max-width:560px; }
.services-learn-more{ flex:none; margin-top:8px; }
.services-head-visual{
  flex:1 1 360px; max-width:460px; margin:0;
  border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:16/10;
  box-shadow:0 34px 70px -30px rgba(20,15,10,.35);
}
.services-head-visual img, .services-head-visual video{ width:100%; height:100%; object-fit:cover; display:block; }
.service-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  perspective:1600px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:30px 26px;
  display:flex; flex-direction:column;
  transform-style:preserve-3d;
  will-change:transform;
  transition:box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover{ border-color:var(--terracotta); box-shadow:0 24px 48px -24px rgba(20,15,10,.25); }
.service-icon{
  width:44px; height:44px; margin-bottom:22px;
  color:var(--terracotta);
}
.service-icon svg{ width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3{ font-size:19px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; line-height:1.6; color:var(--muted); flex:1; }

/* ---------- packages ---------- */
.packages{ background:var(--white); }
.pkg-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
  perspective:1800px;
}
.pkg-card{
  position:relative;
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:32px 28px 28px;
  display:flex; flex-direction:column;
  transform-style:preserve-3d;
  will-change:transform;
  transition:box-shadow .35s ease, border-color .35s ease, transform .35s ease;
}
.pkg-card:hover{ box-shadow:0 26px 50px -26px rgba(20,15,10,.22); }
.pkg-eyebrow{ font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
.pkg-name{ font-size:23px; margin:10px 0 12px; }
.pkg-desc{ font-size:14.5px; color:var(--muted); line-height:1.55; min-height:64px; }
.pkg-features{ display:flex; flex-direction:column; gap:13px; margin:22px 0 30px; flex:1; }
.pkg-features li{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--ink); font-weight:500; }
.pkg-features svg{ width:18px; height:18px; flex:none; fill:none; stroke:var(--terracotta); stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.pkg-btn{ width:100%; }

.pkg-featured{
  border-color:var(--terracotta);
  background:linear-gradient(165deg, var(--terracotta-tint) 0%, var(--white) 55%);
  box-shadow:0 26px 55px -26px rgba(217,108,74,.4);
}
.pkg-featured .pkg-features svg{ stroke:var(--white); }
.pkg-featured .pkg-features li svg{ background:var(--terracotta); border-radius:50%; padding:2px; box-sizing:border-box; }
.pkg-badge{
  position:absolute; top:24px; right:24px;
  background:var(--ink); color:var(--cream);
  font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px;
}

/* ---------- contact ---------- */
.contact{ background:var(--cream); }
.contact-panel{
  display:grid; grid-template-columns:1.1fr 1fr; gap:26px;
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:44px; margin-top:20px;
  box-shadow:0 40px 90px -40px rgba(20,15,10,.25);
}
.contact-form{ display:flex; flex-direction:column; gap:20px; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; font-size:13px; font-weight:600; color:var(--muted); }
.contact-form input, .contact-form textarea{
  font-family:var(--font-body); font-size:15px; color:var(--ink);
  padding:14px 16px; border:1px solid var(--border); border-radius:var(--radius-sm);
  background:var(--cream); resize:vertical;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:none; border-color:var(--terracotta); box-shadow:0 0 0 3px rgba(217,108,74,.15);
}
.contact-form-note{ font-size:12.5px; color:var(--muted); text-align:center; }

.contact-cards{ display:flex; flex-direction:column; gap:14px; }
.contact-card{
  display:flex; align-items:center; gap:16px;
  padding:18px; border:1px solid var(--border); border-radius:var(--radius-md);
  transition:border-color .25s ease, transform .3s var(--ease), box-shadow .3s ease;
}
.contact-card:hover{ border-color:var(--terracotta); transform:translateY(-2px); box-shadow:0 18px 34px -20px rgba(20,15,10,.3); }
.cc-icon{
  width:48px; height:48px; flex:none; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  color:var(--white);
}
.cc-icon svg{ width:22px; height:22px; fill:currentColor; }
.cc-text{ display:flex; flex-direction:column; gap:3px; min-width:0; }
.cc-label{ font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); }
.cc-value{ font-family:var(--font-head); font-size:15.5px; font-weight:500; color:var(--ink); overflow-wrap:anywhere; }

/* ---------- founder ---------- */
.founder{ background:var(--cream); padding-top:0; }
.founder-card{
  display:flex; align-items:center; gap:56px;
  background:var(--cream-2); border-radius:var(--radius-lg);
  padding:56px 60px;
  perspective:1200px;
}
.founder-photo-wrap{ flex:none; }
.founder-photo{
  width:170px; height:170px; border-radius:50%;
  padding:6px;
  background:linear-gradient(135deg, var(--terracotta), var(--terracotta-light) 45%, #F0C48A 100%);
  display:flex; align-items:center; justify-content:center;
  transform-style:preserve-3d; will-change:transform;
  box-shadow:0 30px 60px -24px rgba(217,108,74,.5);
}
.founder-photo-inner{
  width:100%; height:100%; border-radius:50%; background:var(--white);
  padding:5px; display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.founder-photo-inner span{
  width:100%; height:100%; border-radius:50%;
  background:linear-gradient(150deg, var(--ink), #2a2a2c);
  color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:44px; font-weight:700; letter-spacing:.02em;
}
.founder-photo-inner img{
  width:100%; height:100%; border-radius:50%; object-fit:cover;
}
.founder-quote-text{ font-size:22px; line-height:1.5; color:var(--ink); margin-bottom:22px; max-width:56ch; }
.founder-name{ font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--ink); }
.founder-title{ font-size:14.5px; color:var(--muted); }

/* ---------- footer ---------- */
.site-footer{ background:var(--black); color:var(--cream); padding:64px 0 30px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(247,243,238,.12);
}
.footer-brand .logo-mark{ width:36px; height:33px; margin-bottom:14px; overflow:visible; }
.footer-brand p{ font-size:14px; color:var(--muted-on-dark); max-width:24ch; line-height:1.6; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.05em; color:var(--muted-on-dark); margin-bottom:18px; font-weight:600; }
.footer-col{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color:var(--cream); opacity:.85; transition:opacity .25s, color .25s; }
.footer-col a:hover{ opacity:1; color:var(--terracotta); }
.footer-social{ display:flex; gap:16px; margin-top:6px; }
.footer-bottom{
  display:flex; justify-content:space-between; padding-top:26px;
  font-size:13px; color:var(--muted-on-dark);
}

/* ---------- service-stack detail page ---------- */
.ss-hero{ padding:52px 0 90px; }
.ss-hero-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:40px; align-items:center; }
.ss-hero-title{ font-size:clamp(38px,5.2vw,64px); line-height:1.06; margin-bottom:22px; }
.ss-hero-sub{ font-size:16.5px; line-height:1.6; color:var(--muted); max-width:44ch; margin-bottom:30px; }
.ss-hero-visual{
  border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3.2;
  box-shadow:0 40px 80px -30px rgba(20,15,10,.35);
  background:linear-gradient(150deg, #1a1a1c, #0b0b0c);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted-on-dark); font-size:13px; letter-spacing:.04em; text-transform:uppercase;
}

.ss-intro{ background:var(--white); padding:100px 0; }
.ss-intro-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.ss-intro h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:24px; }
.ss-intro p{ font-size:16px; line-height:1.65; color:var(--muted); }

.ss-stack{ background:var(--cream); padding:110px 0; }
.ss-stack-head{ max-width:640px; margin-bottom:70px; }
.ss-stack-head h2{ font-size:clamp(30px,3.6vw,46px); margin-bottom:16px; }
.ss-stack-head p{ font-size:16.5px; color:var(--muted); line-height:1.6; }
.ss-stack-grid{ display:grid; grid-template-columns:1fr 0.95fr; gap:70px; align-items:start; }

.ss-list{ display:flex; flex-direction:column; }
.ss-item{ padding:36px 0; border-bottom:1px solid var(--border); scroll-margin-top:110px; }
.ss-item:first-child{ padding-top:0; }
.ss-item-head{ display:flex; align-items:baseline; gap:10px; margin-bottom:16px; }
.ss-item-no{ font-family:var(--font-head); font-size:26px; font-weight:700; color:var(--border); transition:color .4s ease; }
.ss-item-title{ font-family:var(--font-head); font-size:26px; font-weight:700; color:var(--border); transition:color .4s ease; }
.ss-item-body{ font-size:15.5px; line-height:1.7; color:var(--border); max-width:52ch; transition:color .4s ease; }
.ss-item.active .ss-item-no,
.ss-item.active .ss-item-title{ color:var(--ink); }
.ss-item.active .ss-item-body{ color:var(--muted); }

.ss-media-wrap{ position:sticky; top:110px; perspective:1600px; }
.ss-media{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:4/3.4;
  background:linear-gradient(150deg, #17181a, #0b0b0c);
  box-shadow:0 40px 80px -30px rgba(20,15,10,.35);
  transform-style:preserve-3d; will-change:transform;
}
.ss-media-slot{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; opacity:0; transition:opacity .5s ease;
  color:var(--muted-on-dark); text-align:center; padding:30px;
}
.ss-media-slot.active{ opacity:1; }
.ss-media-slot .ss-media-icon{ width:46px; height:46px; opacity:.5; }
.ss-media-slot .ss-media-icon svg{ width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.5; }
.ss-media-slot span{ font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; }
.ss-media-video{ width:100%; height:100%; object-fit:cover; display:block; }

.ss-cta{ background:var(--black); color:var(--cream); text-align:center; padding:140px 0; }
.ss-cta h2{ font-size:clamp(32px,5vw,58px); color:var(--white); margin-bottom:32px; line-height:1.08; }

/* ---------- responsive ---------- */
@media (max-width:1080px){
  .wrap{ padding:0 26px; }
  .hero-top{ grid-template-columns:1fr; gap:24px; align-items:start; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .pkg-grid{ grid-template-columns:repeat(2,1fr); }
  .about-copy{ grid-template-columns:1fr; }
  .about-stats{ grid-template-columns:1fr 1fr; gap:24px 32px; }
  .contact-panel{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .spin-badge{ width:110px; height:110px; top:88px; right:22px; }
  .ss-hero-grid, .ss-intro-grid{ grid-template-columns:1fr; }
  .ss-stack-grid{ grid-template-columns:1fr; }
  .ss-media-wrap{ position:relative; top:0; order:-1; }
  .founder-card{ flex-direction:column; text-align:center; gap:28px; padding:44px 32px; }
  .founder-quote-text{ max-width:none; }
  .services-head{ flex-direction:column; align-items:stretch; }
  .services-head-visual{ max-width:none; aspect-ratio:16/8; }
}
@media (max-width:680px){
  .wrap{ padding:0 20px; }
  .header-row{ height:70px; }
  .main-nav{ display:none; }
  .nav-cta{ display:none; }
  section{ padding:76px 0; }
  .hero{ padding-top:34px; }
  .hero-visual{ aspect-ratio:4/3.4; }
  .hero-visual-chip{ font-size:11.5px; padding:9px 14px; }
  .service-grid{ grid-template-columns:1fr; }
  .pkg-grid{ grid-template-columns:1fr; }
  .about-stats{ grid-template-columns:1fr 1fr; gap:20px; }
  .services-head{ flex-direction:column; align-items:flex-start; }
  .nowrap-heading{ white-space:normal; }
  .ac-card{ width:200px; height:140px; }
  .founder-photo{ width:130px; height:130px; }
  .founder-photo-inner span{ font-size:34px; }
  .founder-quote-text{ font-size:19px; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .footer-bottom{ flex-direction:column; gap:6px; }
  .wa-float{ right:16px; bottom:16px; width:52px; height:52px; }
  .wa-float svg{ width:24px; height:24px; }
  .spin-badge{ display:none; }
}
