/* ==========================================================================
   Django Digital — theme design
   Extracted from the approved static design. Two blocks of rules were
   removed on purpose because they now live in the plugins that own that
   markup instead:
     - .service-card / .service-icon / .services-grid  → Django Services plugin (assets/frontend.css)
     - .team-rail / .team-card / .team-avatar           → Django Team plugin (assets/frontend.css)
   Everything else (header, footer, hero, work rail, milestones, reviews,
   people-intro, awards, section wrappers/headings) still lives here.
   ========================================================================== */

:root{
  --black: #0a0908;
  --near-black: #131211;
  --card-dark: #1b1a18;
  --cream: #eeeae1;
  --cream-dim: #b8b3a8;
  --orange: #ff5a1f;
  --teal: #6fc7bf;
  --light-bg: #e9e6df;
  --line: rgba(238,234,225,0.14);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--black);
  color:var(--cream);
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none;}

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

/* grain texture, shared */
.grain{
  position:absolute; inset:0;
  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)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  pointer-events:none;
}

/* ---------- NAV (site-wide header, header.php) ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:28px clamp(20px,5vw,64px);
  mix-blend-mode:difference;
}
.logo{
  font-size:22px; font-weight:800; letter-spacing:0.5px;
}
.logo span{color:var(--orange);}
.nav-right{display:flex; align-items:center; gap:22px;}
.socials{display:flex; gap:16px;}
.socials a{
  width:34px; height:34px; border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  transition:background .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1), border-color .4s cubic-bezier(.22,1,.36,1);
}
.socials a:hover{background:var(--orange); color:var(--black); border-color:var(--orange); transform:translateY(-2px);}
.burger{
  width:34px; height:20px; position:relative; cursor:pointer;
  background:none; border:none; padding:0;
  z-index:210;
}
.burger span{
  position:absolute; left:0; width:100%; height:2px; background:var(--cream);
  transition:all .4s cubic-bezier(.22,1,.36,1);
}
.burger span:nth-child(1){top:0;}
.burger span:nth-child(2){top:9px; width:70%;}
.burger span:nth-child(3){bottom:0;}
.burger:hover span{width:100%;}
.burger.open span:nth-child(1){top:9px; transform:rotate(45deg);}
.burger.open span:nth-child(2){opacity:0; width:0;}
.burger.open span:nth-child(3){bottom:9px; transform:rotate(-45deg);}

/* ---------- MOBILE / DROPDOWN MENU ---------- */
.menu-overlay{
  position:fixed; inset:0; z-index:200;
  display:flex; justify-content:flex-end; align-items:flex-start;
  padding:clamp(16px,4vw,32px);
  background:rgba(6,5,4,0.55);
  opacity:0; pointer-events:none;
  transition:opacity .4s cubic-bezier(.22,1,.36,1);
}
.menu-overlay.open{opacity:1; pointer-events:auto;}
.menu-panel{
  width:min(340px, 100%);
  background:var(--cream);
  color:var(--black);
  border-radius:16px;
  padding:26px 26px 22px;
  box-shadow:0 24px 70px rgba(0,0,0,0.5);
  position:relative;
  margin-top:64px;
  transform:translateY(-16px);
  opacity:0;
  transition:transform .45s cubic-bezier(.22,1,.36,1), opacity .45s cubic-bezier(.22,1,.36,1);
}
.menu-overlay.open .menu-panel{transform:translateY(0); opacity:1;}
.menu-close{
  position:absolute; top:20px; right:22px;
  background:none; border:none; font-size:18px; cursor:pointer; color:var(--black);
  line-height:1;
}
.menu-links{
  display:flex; flex-direction:column;
  margin-top:6px;
}
.menu-links a{
  font-family:'Fraunces',serif; font-size:22px; font-weight:500;
  padding:11px 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
  transition:color .3s cubic-bezier(.22,1,.36,1), padding-left .3s cubic-bezier(.22,1,.36,1);
}
.menu-links a:hover{color:var(--orange); padding-left:6px;}
.menu-links a:last-child{border-bottom:none;}
.menu-row{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  margin-top:20px; padding-top:18px; border-top:1px solid rgba(0,0,0,0.12);
  font-family:'IBM Plex Mono',monospace; font-size:13px;
}
.menu-row a:hover{color:var(--orange);}
.menu-row .talk{font-weight:700;}
.menu-social{
  display:flex; gap:20px;
  margin:18px -26px -22px; padding:16px 26px;
  background:rgba(0,0,0,0.05);
  border-radius:0 0 16px 16px;
  font-family:'Inter',sans-serif; font-size:13px; color:#555;
}
.menu-social a:hover{color:var(--orange);}

/* ---------- HERO (static — image + headline, no video; fastest possible
   above-the-fold, matches the original pre-video design) ---------- */
.hero-static-section{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:var(--black);
}
.hero-static-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
}
.hero-static-content{
  position:relative; z-index:2;
  display:flex; flex-direction:column;
  min-height:100vh;
  justify-content:center;
  gap:26px;
  padding:120px clamp(20px,5vw,64px) 100px;
  max-width:900px;
}
.hero-heading{
  font-family:'Inter',sans-serif; font-weight:500;
  font-size:clamp(34px,6vw,72px); line-height:1.08;
  color:var(--cream);
}
.hero-rotate{
  color:var(--orange);
  transition:opacity .25s ease;
}
.hero-reel-link{
  display:inline-flex; align-items:center; gap:14px;
  width:fit-content;
  font-family:'Inter',sans-serif; font-size:15px; color:var(--cream);
  transition:color .3s cubic-bezier(.22,1,.36,1);
}
.hero-reel-link:hover{color:var(--orange);}
.hero-reel-thumb{
  width:56px; height:40px; border-radius:4px;
  background:rgba(238,234,225,0.1);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--orange);
  flex-shrink:0;
}
.hero-reel-thumb svg{width:16px; height:16px;}
.hero-static-tagline{
  font-family:'IBM Plex Mono',monospace; font-size:15px; line-height:1.6;
  color:var(--cream-dim);
  max-width:32ch;
}

/* ---------- REEL VIDEO (moved below Services — see front-page.php for why) ---------- */
.reel-section{
  position:relative;
  min-height:90vh;
  overflow:hidden;
  background:var(--black);
}
.reel-video-el{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.hero-video-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,5,4,0.25) 0%, rgba(6,5,4,0.05) 35%, rgba(6,5,4,0.45) 100%);
  pointer-events:none;
}
.hero-sound-toggle{
  position:absolute; bottom:32px; right:32px; z-index:3;
  width:52px; height:52px; border-radius:50%;
  background:rgba(10,9,8,0.55);
  backdrop-filter:blur(6px);
  border:1px solid rgba(238,234,225,0.3);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--cream);
  transition:background .35s cubic-bezier(.22,1,.36,1), border-color .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
}
.hero-sound-toggle:hover{background:var(--orange); border-color:var(--orange); color:var(--black); transform:scale(1.06);}
.hero-sound-toggle svg{width:20px; height:20px;}

/* ---------- RECENT WORK ---------- */
.work{
  padding:120px 0 100px;
  background:var(--black);
  position:relative;
}
.work-head{
  padding:0 clamp(20px,5vw,64px);
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:44px;
}
.work-head h2{
  font-family:'Fraunces',serif; font-weight:500; font-size:clamp(30px,4vw,52px);
}
.work-head a{
  font-family:'IBM Plex Mono',monospace; font-size:13px;
  border-bottom:1px solid var(--cream-dim); padding-bottom:2px;
  color:var(--cream-dim); white-space:nowrap;
  transition:color .4s cubic-bezier(.22,1,.36,1), border-color .4s cubic-bezier(.22,1,.36,1);
}
.work-head a:hover{color:var(--orange); border-color:var(--orange);}

/* .django-work-rail itself (the individual cards, scroll behaviour) is
   owned by the Django Work plugin's own frontend.css — this just restores
   the left/right gutter so it lines up with .work-head above it. */
.work .django-work-rail{
  padding:0 clamp(20px,5vw,64px) 20px;
}

/* ---------- WHAT WE DO ---------- */
.whatwedo{
  background:var(--light-bg); color:var(--black);
  padding:110px clamp(20px,5vw,64px) 70px;
  display:grid; grid-template-columns:1fr 2.4fr; gap:40px;
}
.whatwedo .eyebrow{
  font-family:'PT Serif',serif; font-weight:400; font-size:clamp(22px,2.6vw,32px);
}
.whatwedo .statement{
  font-family:'Familjen Grotesk',sans-serif; font-weight:700;
  font-size:clamp(26px,3.6vw,46px); line-height:1.2;
}
.whatwedo .statement p{margin:0;}
.whatwedo .statement .statement-link{
  display:inline-block; margin-top:28px; font-family:'Familjen Grotesk',sans-serif; font-weight:500;
  font-size:15px; border-bottom:1px solid var(--black); padding-bottom:3px;
}

/* ---------- SERVICES (section wrapper + heading; cards are the
   Django Services plugin's [django_services] shortcode output) ---------- */
.services{
  background:var(--light-bg); color:var(--black);
  padding:60px clamp(20px,5vw,64px) 130px;
  border-top:1px solid rgba(0,0,0,0.12);
}
.services-head{
  font-family:'PT Serif',serif; font-weight:400; font-size:clamp(28px,3.6vw,44px); margin-bottom:50px; max-width:14ch;
}
.services-view-all{
  margin-top:36px; text-align:center;
}
.services-view-all a{
  display:inline-block;
  font-family:'Familjen Grotesk',sans-serif; font-weight:500; font-size:15px;
  border-bottom:1px solid var(--black); padding-bottom:3px;
  transition:color .35s cubic-bezier(.22,1,.36,1), border-color .35s cubic-bezier(.22,1,.36,1);
}
.services-view-all a:hover{color:var(--orange); border-color:var(--orange);}

/* ---------- MILESTONES ---------- */
.milestones{
  position:relative;
  background:
    linear-gradient(100deg, rgba(6,5,4,0.75) 0%, rgba(6,5,4,0.35) 55%, rgba(6,5,4,0.15) 100%),
    url('milestones-bg.jpg') center center / cover no-repeat,
    var(--black);
  padding:110px clamp(20px,5vw,64px) 90px;
  overflow:hidden;
}
.who-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr; gap:50px;
  align-items:center;
  margin-bottom:80px;
}
.who-heading{
  display:flex; flex-direction:column;
  font-family:'Inter',sans-serif; font-weight:800;
  line-height:0.98;
}
.who-heading .line-who{
  color:var(--orange);
  font-size:clamp(30px,4.4vw,52px);
}
.who-heading .line-brand{
  color:var(--cream);
  font-size:clamp(38px,5.6vw,68px);
}
.who-heading .accent{color:var(--orange);}
.who-tagline{
  font-family:'Fraunces',serif; font-style:italic; font-weight:500;
  font-size:clamp(17px,1.8vw,21px);
  margin-top:22px;
}
.who-desc{
  font-family:'IBM Plex Mono',monospace; font-size:14px; line-height:1.75;
  color:var(--cream-dim);
  margin-top:18px; max-width:48ch;
}
.who-stats{
  display:grid; grid-template-columns:1fr 1fr; gap:36px 24px;
}
.stat-item .num{
  font-family:'Inter',sans-serif; font-weight:800; color:var(--orange);
  font-size:clamp(38px,4.6vw,58px); line-height:1;
}
.stat-item .label{font-family:'Inter',sans-serif; font-size:15px; margin-top:8px; color:var(--cream);}
.stat-wide{grid-column:1 / -1;}
.stat-wide .num{font-size:clamp(46px,5.6vw,70px);}
.logo-marquee{
  position:relative; z-index:2;
  overflow:hidden;
  width:100%;
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track{
  display:flex; gap:clamp(14px,2.4vw,28px); align-items:stretch;
  width:max-content;
  animation:marquee 26s linear infinite;
}
.logo-marquee:hover .logo-track{animation-play-state:paused;}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.logo-track .client{
  height:64px; padding:0 26px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(238,234,225,0.06);
  border:1px solid rgba(238,234,225,0.14);
  border-radius:3px;
  font-family:'Inter',sans-serif; font-weight:700; font-size:17px; letter-spacing:0.01em;
  color:var(--cream);
  white-space:nowrap;
  transition:background .35s cubic-bezier(.22,1,.36,1), border-color .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
}
.logo-track .client:hover{background:rgba(255,90,31,0.12); border-color:rgba(255,90,31,0.5); transform:translateY(-3px);}
.logo-track .client.serif{font-family:'Fraunces',serif; font-weight:500; font-style:italic; letter-spacing:0.03em;}
.logo-track .client.brand-red{color:#e04430;}
.logo-track .client.brand-green{color:#3f9142;}
.logo-track .client.brand-gold{color:#e0a63c;}

/* ---------- REVIEWS (testimonial slider) ---------- */
.reviews{
  background:var(--black);
  padding:110px clamp(20px,5vw,64px);
}
.reviews-head{
  display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px;
  margin-bottom:56px;
}
.reviews-head h2{
  font-family:'Fraunces',serif; font-weight:500; font-size:clamp(32px,4.4vw,50px);
  display:flex; align-items:baseline; gap:16px;
  color:var(--cream);
}
.reviews-head h2 .dash{color:var(--cream-dim); font-weight:300;}
.reviews-head h2 .stars{color:var(--orange);}
.reviews-head p{
  font-family:'IBM Plex Mono',monospace; font-size:14px; max-width:34ch; color:var(--cream-dim); line-height:1.6;
}

.testimonial-card{
  position:relative;
  background:var(--card-dark);
  border:1px solid var(--line);
  padding:clamp(30px,4vw,56px);
  display:grid; grid-template-columns:minmax(200px,300px) 1fr; gap:clamp(30px,5vw,64px);
  align-items:center;
}
.testimonial-corner{
  position:absolute; width:12px; height:12px; background:var(--orange);
}
.testimonial-corner.tl{top:-6px; left:-6px;}
.testimonial-corner.tr{top:-6px; right:-6px;}
.testimonial-corner.bl{bottom:-6px; left:-6px;}
.testimonial-corner.br{bottom:-6px; right:-6px;}

.testimonial-photo-wrap{
  position:relative;
}
.testimonial-photo{
  position:relative; z-index:2;
  aspect-ratio:1/1.05;
  width:100%;
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces',serif; font-size:clamp(48px,6vw,72px); font-weight:500;
  color:rgba(0,0,0,0.5);
  transition:background .5s cubic-bezier(.22,1,.36,1);
}
.testimonial-photo-stack{
  position:absolute; z-index:1;
  left:-12px; right:12px; bottom:-12px; top:14px;
  background:var(--near-black);
  border:1px solid var(--line);
  border-radius:4px;
  transform:rotate(3deg);
}

.testimonial-content .name{
  font-family:'Inter',sans-serif; font-weight:800;
  font-size:clamp(24px,2.8vw,32px);
  color:var(--cream);
}
.testimonial-content .role{
  font-family:'IBM Plex Mono',monospace; font-size:13.5px;
  color:var(--orange);
  margin-top:6px; margin-bottom:24px;
}
.testimonial-content .quote{
  font-family:'Fraunces',serif; font-weight:500; font-style:italic;
  font-size:clamp(17px,1.8vw,21px); line-height:1.55;
  color:var(--cream-dim);
  min-height:110px;
}
.testimonial-controls{
  display:flex; align-items:center; gap:14px;
  margin-top:34px;
}
.testimonial-arrow{
  width:50px; height:50px; border-radius:8px;
  background:#f0f0f0; border:1px solid var(--orange);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; flex-shrink:0;
  color:var(--black);
  transition:background .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
}
.testimonial-arrow:hover{background:#ff7a45; transform:translateY(-2px);}
.testimonial-arrow svg{width:18px; height:18px;}
.testimonial-dots{
  display:flex; gap:8px; margin-left:6px;
}
.testimonial-dots span{
  width:6px; height:6px; border-radius:50%; background:var(--line);
  transition:background .35s cubic-bezier(.22,1,.36,1), width .35s cubic-bezier(.22,1,.36,1);
}
.testimonial-dots span.active{background:var(--orange); width:20px; border-radius:4px;}

/* ---------- PEOPLE INTRO ---------- */
.people-intro{
  background:var(--black);
  padding:110px clamp(20px,5vw,64px) 70px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:50px; align-items:center;
}
.people-intro h2{
  font-family:'Fraunces',serif; font-weight:500;
  font-size:clamp(38px,6vw,76px); line-height:1.02;
}
.people-photo-copy{
  display:flex; flex-direction:column; gap:26px;
}
.people-photo{
  width:100%; aspect-ratio:16/10; border-radius:2px;
  overflow:hidden;
  background:#0f0d0c;
}
.people-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.people-photo-copy p{
  font-family:'IBM Plex Mono',monospace; font-size:14.5px; line-height:1.75; color:var(--cream-dim);
}

/* ---------- TEAM (section wrapper + "see full team" link; the grid of
   people is the Django Team plugin's [django_team_homepage] /
   [django_team_full] shortcode output) ---------- */
.team{
  background:var(--black);
  padding:0 0 120px;
}
.team-more{
  padding:8px clamp(20px,5vw,64px) 0;
  text-align:right;
}
.team-more a{
  font-family:'IBM Plex Mono',monospace; font-size:13px;
  border-bottom:1px solid var(--cream-dim); padding-bottom:2px;
  color:var(--cream-dim); white-space:nowrap;
  transition:color .4s cubic-bezier(.22,1,.36,1), border-color .4s cubic-bezier(.22,1,.36,1);
}
.team-more a:hover{color:var(--orange); border-color:var(--orange);}

/* ---------- AWARDS ---------- */
.awards{
  background:var(--black);
  padding:110px clamp(20px,5vw,64px) 130px;
  display:grid; grid-template-columns:1fr 1.3fr; gap:50px;
}
.awards-eyebrow{font-family:'Inter',sans-serif; font-size:14px; color:var(--cream-dim); margin-bottom:26px;}
.awards h2{
  font-family:'Fraunces',serif; font-weight:500; font-size:clamp(26px,3.2vw,38px); line-height:1.3;
}
.award-item{
  border-top:1px solid var(--line);
  padding:26px 0;
  cursor:pointer;
}
.award-item:last-child{border-bottom:1px solid var(--line);}
.award-head{
  display:flex; justify-content:space-between; align-items:center;
}
.award-item .title{font-family:'Fraunces',serif; font-size:20px; letter-spacing:0.02em;}
.award-item .plus{
  font-size:20px; color:var(--orange); transition:transform .45s cubic-bezier(.22,1,.36,1);
  width:24px; text-align:center;
}
.award-item.open .plus{transform:rotate(45deg);}
.award-item .sub{
  max-height:0; overflow:hidden; transition:max-height .5s cubic-bezier(.22,1,.36,1), padding-top .5s cubic-bezier(.22,1,.36,1);
  font-family:'IBM Plex Mono',monospace; font-size:13.5px; color:var(--cream-dim); line-height:1.6;
}
.award-item.open .sub{max-height:60px; padding-top:14px;}

/* ---------- FULL TEAM PAGE HEAD (Agency page) ---------- */
.team-page-head{
  padding:150px clamp(20px,5vw,64px) 70px;
}
.team-page-head .eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:13px; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--cream-dim); margin-bottom:14px;
}
.team-page-head h1{
  font-family:'Fraunces',serif; font-weight:500;
  font-size:clamp(34px,6vw,64px); line-height:1.05; max-width:16ch;
}
.team-page-head p{
  font-family:'IBM Plex Mono',monospace; font-size:14px; color:var(--cream-dim);
  max-width:56ch; margin-top:18px; line-height:1.7;
}
.section-label{
  font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--orange); margin-bottom:22px;
  padding:0 clamp(20px,5vw,64px);
}

/* ---------- FOOTER (site-wide footer, footer.php) ---------- */
.site-footer{
  background:var(--light-bg); color:var(--black);
  padding:90px clamp(20px,5vw,64px) 30px;
}
.footer-head{
  display:flex; justify-content:space-between; align-items:flex-start;
  margin-bottom:34px;
}
.footer-logo{font-size:20px; font-weight:800;}
.footer-logo span{color:var(--orange);}
.footer-socials{
  display:flex; flex-direction:column; gap:6px; align-items:flex-end;
  font-family:'Inter',sans-serif; font-size:14px;
}
.footer-socials a:hover{color:var(--orange);}
.footer-cta{
  font-family:'Fraunces',serif; font-weight:500; font-size:clamp(48px,9vw,120px);
  display:flex; align-items:center; gap:18px;
  cursor:pointer;
  margin-bottom:50px;
}
.footer-cta .fold{
  width:0; height:0; border-style:solid; border-width:0 26px 26px 0;
  border-color:transparent var(--black) transparent transparent;
  align-self:flex-start; margin-top:16px;
}
.footer-nav{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px;
  padding:26px 0; border-top:1px solid rgba(0,0,0,0.15);
  font-family:'Fraunces',serif; font-size:18px;
}
.footer-nav a:hover{color:var(--orange);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding-top:22px; border-top:1px solid rgba(0,0,0,0.15);
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:#555;
}
.footer-bottom .contact-mid{display:flex; gap:14px; align-items:center;}
.footer-bottom a:hover{color:var(--orange);}
.footer-copyright{
  text-align:center; margin-top:18px;
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:#888;
}

@media (max-width:900px){
  .people-intro{grid-template-columns:1fr; gap:34px;}
  .awards{grid-template-columns:1fr; gap:34px;}
  .testimonial-card{grid-template-columns:minmax(180px,220px) 1fr;}
}
@media (max-width:760px){
  .whatwedo{grid-template-columns:1fr; padding:70px 20px 40px;}
  .whatwedo .statement{font-size:clamp(24px,7vw,34px);}
  .services{padding:40px 20px 80px;}
  .hero-static-content{padding:100px 20px 60px; gap:20px;}
  .hero-heading{font-size:clamp(28px,8vw,40px);}
  .hero-reel-thumb{width:44px; height:32px;}
  .reel-section{min-height:70vh;}
  .hero-sound-toggle{bottom:20px; right:20px; width:44px; height:44px;}
  .hero-sound-toggle svg{width:17px; height:17px;}

  .work{padding:70px 0 60px;}
  .work-head{padding:0 20px; margin-bottom:28px; align-items:flex-start; flex-direction:column; gap:10px;}
  .work .django-work-rail{padding:0 20px 16px 20px;}

  .milestones{padding:70px 20px 60px;}
  .who-inner{grid-template-columns:1fr; gap:36px; margin-bottom:50px;}
  .who-heading .line-who{font-size:26px;}
  .who-heading .line-brand{font-size:34px;}
  .who-stats{gap:26px 18px;}
  .stat-item .num{font-size:34px;}
  .stat-wide .num{font-size:40px;}
  .logo-track{gap:10px; animation-duration:16s;}
  .logo-track .client{height:52px; padding:0 18px; font-size:14px;}

  .reviews{padding:70px 20px;}
  .reviews-head{margin-bottom:36px;}
  .testimonial-card{grid-template-columns:1fr; padding:24px; gap:24px;}
  .testimonial-photo-wrap{max-width:220px;}
  .testimonial-content .quote{min-height:0;}
  .testimonial-controls{margin-top:26px;}

  .people-intro{padding:70px 20px 40px;}
  .team{padding:0 0 70px;}
  .team-more{padding:4px 20px 0; text-align:left;}

  .team-page-head{padding:110px 20px 46px;}

  .awards{padding:70px 20px 80px;}
  .award-item{padding:20px 0;}
  .award-item .title{font-size:17px;}

  .site-footer{padding:50px 20px 24px;}
  .footer-head{margin-bottom:26px;}
  .footer-logo{font-size:17px;}
  .footer-socials{font-size:12px; gap:4px;}
  .footer-cta{font-size:clamp(34px,11vw,48px); margin-bottom:30px;}
  .footer-cta .fold{border-width:0 18px 18px 0; margin-top:10px;}
  .footer-nav{
    flex-wrap:nowrap; justify-content:space-between; gap:6px;
    padding:18px 0; font-size:12.5px;
  }
  .footer-bottom{
    flex-direction:column; align-items:center; text-align:center; gap:10px;
    padding-top:18px;
  }
  .footer-bottom .contact-mid{flex-wrap:wrap; justify-content:center;}
  .footer-copyright{margin-top:14px; padding-top:14px; border-top:1px solid rgba(0,0,0,0.12);}
}

[data-reveal]{opacity:0; transform:translateY(24px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);}
[data-reveal].in{opacity:1; transform:translateY(0);}