:root{
  --paper:#FAF8F3;
  --line:#E7E2D6;
  --ink:#171512;
  --mint:#A9DFD3;
  --gold:#F4C430;
  --orange:#F0653C;
  --blue:#2F5CE0;
  --pink:#FF5CA6;
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:'Space Grotesk',sans-serif;
  background:
    repeating-linear-gradient(to bottom, transparent 0px, transparent 38px, var(--line) 39px),
    var(--paper);
  color:var(--ink);
  min-height:100vh;
  overflow-x:hidden;
  position:relative;
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001s !important; animation-iteration-count:1 !important; transition-duration:0.001s !important;}
}

/* PRELOADER */
#preloader{ position:fixed; inset:0; background:var(--paper); z-index:200; display:flex; align-items:center; justify-content:center; transition:opacity .6s ease, visibility .6s ease; }
#preloader.hide{opacity:0; visibility:hidden; pointer-events:none;}
.note{ background:var(--gold); border:2px solid var(--ink); border-radius:6px; padding:34px 44px; box-shadow:6px 6px 0 rgba(0,0,0,0.12); min-width:280px; text-align:center; }
.loader-percent{ font-family:'Handjet',sans-serif; font-weight:700; font-size:60px; line-height:1; }
.loader-bar{ width:100%; height:8px; background:rgba(0,0,0,0.15); border-radius:4px; overflow:hidden; margin:16px 0 14px; }
.loader-bar-fill{ height:100%; width:0%; background:var(--ink); }
.loader-status{ font-family:'Space Mono',monospace; font-size:13px; font-weight:700; letter-spacing:0.02em; min-height:18px; }

/* NAVBAR */
nav{ position:sticky; top:0; z-index:100; display:flex; align-items:center; gap:8px; padding:16px 24px; background:var(--paper); border-bottom:1px solid var(--line); }
.logo{ width:42px;height:42px;border-radius:50%; background:var(--pink); display:flex;align-items:center;justify-content:center; font-size:20px; margin-right:14px; flex-shrink:0; }
.nav-collapsible{ display:flex; align-items:center; gap:8px; flex:1; }
.nav-link{ display:flex;align-items:center;gap:7px; font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.03em; padding:9px 16px; border-radius:8px; cursor:pointer; color:var(--ink); text-decoration:none; white-space:nowrap; }
.nav-link.active{background:var(--gold);}
.nav-link:not(.active):hover{background:#F0EDE4;}
.nav-spacer{flex:1; min-width:8px;}
.social{ width:36px;height:36px;border-radius:50%; display:flex;align-items:center;justify-content:center; margin-left:6px; color:var(--ink); font-size:15px; text-decoration:none; flex-shrink:0; background:var(--gold); }
.contact-btn{ display:flex;align-items:center;gap:7px; border:2px solid var(--ink); border-radius:8px; padding:9px 18px; margin-left:14px; font-family:'Space Mono',monospace; font-weight:700; font-size:13px; background:#fff; cursor:pointer; white-space:nowrap; text-decoration:none; color:var(--ink); }

.hamburger{
  display:none;
  width:42px; height:42px;
  align-items:center; justify-content:center;
  flex-direction:column; gap:4px;
  background:#fff;
  border:2px solid var(--ink);
  border-radius:8px;
  cursor:pointer;
  margin-left:6px;
  flex-shrink:0;
  padding:0;
}
.hamburger span{ width:18px; height:2px; background:var(--ink); transition:transform .2s ease, opacity .2s ease; }
.hamburger.active span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

@media (max-width:640px){
  nav{ justify-content:space-between; }
  .hamburger{ display:flex; }
  .nav-collapsible{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:stretch; gap:6px;
    padding:14px 16px 18px; z-index:50;
  }
  .nav-collapsible.open{ display:flex; }
  .nav-spacer{ display:none; }
  .contact-btn{ margin-left:0; justify-content:center; }
}

/* HERO */
.hero{ max-width:1320px; margin:0 auto; padding:80px 40px 60px; position:relative; }
.tag-row{ position:relative; z-index:6; display:flex; justify-content:center; align-items:flex-end; gap:60px; margin-bottom:56px; flex-wrap:wrap; }
.tag{ font-family:'Space Mono',monospace; font-weight:700; font-size:15px; letter-spacing:0.03em; padding:12px 22px; border-radius:24px; box-shadow:0 0 0 5px #fff, 5px 6px 14px rgba(0,0,0,0.14); white-space:nowrap; }
.tag.made-things{ background:var(--mint); transform:rotate(-6deg); }
.tag.sweat{ background:var(--gold); transform:rotate(5deg); }

.robin-wrap{ display:flex; justify-content:center; }
.robin-stage{ position:relative; padding:34px 56px 30px; cursor:pointer; max-width:100%; }
.robin-stage svg.frame{ position:absolute; inset:-6px; width:calc(100% + 12px); height:calc(100% + 12px); overflow:visible; pointer-events:none; }
.robin-stage svg.frame path{ fill:none; stroke-width:3; stroke:var(--orange); }

.corner{ position:absolute; width:16px; height:16px; z-index:4; opacity:0; transition:opacity .25s ease .1s; }
.corner::before, .corner::after{ content:""; position:absolute; background:var(--ink); }
.corner-tl{ top:0; left:0; } .corner-tl::before{ width:16px; height:5px; top:0; left:0; } .corner-tl::after{ width:5px; height:16px; top:0; left:0; }
.corner-tr{ top:0; right:0; } .corner-tr::before{ width:16px; height:5px; top:0; right:0; } .corner-tr::after{ width:5px; height:16px; top:0; right:0; }
.corner-bl{ bottom:0; left:0; } .corner-bl::before{ width:16px; height:5px; bottom:0; left:0; } .corner-bl::after{ width:5px; height:16px; bottom:0; left:0; }
.corner-br{ bottom:0; right:0; } .corner-br::before{ width:16px; height:5px; bottom:0; right:0; } .corner-br::after{ width:5px; height:16px; bottom:0; right:0; }
.robin-stage:hover .corner{ opacity:1; }

.stage-content{ position:relative; z-index:2; }
.name-label{ position:relative; text-align:center; font-family:'Shantell Sans',cursive; font-weight:700; font-size:clamp(18px,2.6vw,28px); margin-bottom:4px; }
.name-label .ul{ display:block; width:64px; height:2px; background:currentColor; margin:2px auto 0; }
h1.robin{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(56px,12vw,168px); letter-spacing:0.01em; margin:0; line-height:1; text-align:center; user-select:none; }

.reveal-panel{ position:absolute; inset:0; background:var(--ink); color:#fff; z-index:3; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:34px 56px 30px; clip-path: inset(0 100% 0 0); transition: clip-path .45s cubic-bezier(.6,0,.2,1); pointer-events:none; }
.robin-stage:hover .reveal-panel{ clip-path: inset(0 0 0 0); }
.reveal-panel .name-label{ color:#fff; }
.reveal-panel h1.robin{ color:#fff; }

.sticky{ position:absolute; font-family:'Shantell Sans',cursive; font-weight:700; font-size:clamp(16px,2.4vw,23px); padding:13px 21px; border-radius:4px; box-shadow:4px 4px 0 rgba(0,0,0,0.1); z-index:5; }
.sticky.designer{ background:var(--gold); bottom:-32px; left:-26px; transform:rotate(-3deg); }
.sticky.location{ background:var(--mint); bottom:-4px; right:-26px; transform:rotate(3deg); }

.status-row{ text-align:center; margin-top:66px; font-family:'Space Mono',monospace; font-weight:700; letter-spacing:0.05em; font-size:clamp(11px,2vw,14px); display:flex; align-items:center; justify-content:center; gap:10px; padding:0 10px; }
.status-row .dot{ width:10px;height:10px;border-radius:50%; background:var(--blue); animation:pulse 1.6s ease-in-out infinite; flex-shrink:0; }
@keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:.35;} }

.headline-row{ position:relative; display:flex; align-items:center; justify-content:center; margin-top:44px; }
h2.headline{ font-family:'Space Grotesk',sans-serif; font-weight:900; font-size:clamp(32px,6.6vw,74px); text-align:center; line-height:1.15; max-width:900px; margin:0; }
.icon-inline{ display:inline-flex; vertical-align:middle; margin:0 4px; width:clamp(28px,5.5vw,52px); }
.icon-inline svg{ width:100%; height:auto; }
.target{ animation:spin 6s linear infinite; }
.flower{ display:inline-block; font-size:clamp(26px,5.5vw,50px); animation:spin 5s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }

.photo{ position:absolute; width:108px;height:108px; border-radius:50%; border:4px solid var(--orange); overflow:hidden; background:linear-gradient(135deg,#8fb8c9,#2c4a5e); animation:float 4.5s ease-in-out infinite; }
.photo.left{ left:0; top:190px; }
.photo.right{ right:0; top:150px; animation-delay:-2s; }
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }

.cta-row{ display:flex; justify-content:center; margin-top:56px; }
.cta{ display:flex; align-items:center; gap:10px; background:var(--ink); color:#fff; font-family:'Space Mono',monospace; font-weight:700; font-size:15px; letter-spacing:0.04em; padding:17px 28px; border-radius:6px; border:none; cursor:pointer; text-decoration:none; }
.cta .arrow-box{ background:var(--blue); width:25px;height:25px; border-radius:4px; display:flex;align-items:center;justify-content:center; flex-shrink:0; }

/* ABOUT PREVIEW SECTION */
.wave-full{ position:relative; width:100vw; left:50%; transform:translateX(-50%); height:70px; overflow:hidden; }
.wave-full svg{ width:100%; height:100%; display:block; }
.wave-full path{ fill:none; stroke:#C4A268; stroke-width:1.5; vector-effect:non-scaling-stroke; }

.about-preview{ position:relative; padding:30px 40px 100px; max-width:1320px; margin:0 auto; }
.about-label{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:24px; margin:10px 0 50px; }

.whats-up-wrap{ text-align:center; margin-bottom:60px; }
.whats-up-box{ display:inline-block; border:2px solid var(--ink); border-radius:6px; padding:14px 32px; font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:clamp(24px,4vw,34px); }

.about-grid{ display:flex; align-items:center; justify-content:center; gap:60px; flex-wrap:wrap; }

.polaroid{ background:#fff; padding:14px 14px 42px; box-shadow:6px 10px 24px rgba(0,0,0,0.16); width:280px; position:relative; flex-shrink:0; }
.polaroid .photo-area{ width:100%; height:320px; object-fit:cover; display:block; }
.polaroid .cap{ position:absolute; bottom:10px; left:0; right:0; text-align:center; font-family:'Shantell Sans',cursive; font-weight:700; font-size:19px; }
.polaroid.left{ transform:rotate(-6deg); }

.tape{ position:absolute; width:74px; height:28px; opacity:0.6; box-shadow:0 2px 4px rgba(0,0,0,0.1); }
.tape.blue{ background:#AFCBEB; }
.tape.yellow{ background:#F1DA9A; }
.polaroid.left .tape.tl{ top:-14px; left:-22px; transform:rotate(-25deg); }
.polaroid.left .tape.tr{ top:-12px; right:-24px; transform:rotate(18deg); }

.bio-text{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:clamp(22px,3.2vw,36px); text-align:center; max-width:760px; line-height:1.55; }
.bio-text .hl{ background:var(--blue); color:#fff; padding:1px 10px; border-radius:2px; }

:root{
  --jagged: polygon(
    2% 10%, 9% 2%, 16% 10%, 23% 3%, 31% 9%, 39% 2%, 47% 10%, 55% 3%, 63% 9%, 71% 2%, 79% 10%, 87% 3%, 95% 9%, 100% 3%,
    97% 14%, 100% 24%, 96% 34%, 100% 44%, 97% 54%, 100% 64%, 96% 74%, 100% 84%, 97% 94%, 100% 100%,
    91% 96%, 84% 100%, 76% 95%, 68% 100%, 60% 95%, 52% 100%, 44% 95%, 36% 100%, 28% 95%, 20% 100%, 12% 95%, 4% 100%,
    0% 92%, 3% 82%, 0% 72%, 4% 62%, 0% 52%, 3% 42%, 0% 32%, 4% 22%, 0% 12%
  );
}

.skills-row{ display:flex; justify-content:center; gap:70px; flex-wrap:wrap; margin-top:56px; }
.skill-pair{ display:flex; align-items:center; }
.skill-main{ font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:clamp(15px,2vw,21px); padding:22px 30px; clip-path:var(--jagged); position:relative; z-index:1; text-align:center; line-height:1.25; max-width:280px; }
.skill-badge{ width:62px; height:62px; display:flex; align-items:center; justify-content:center; font-size:24px; clip-path:var(--jagged); margin-left:-16px; position:relative; z-index:2; }
.skill-main.gold{ background:var(--gold); color:var(--ink); }
.skill-badge.gold{ background:var(--gold); }
.skill-main.green{ background:#2ECC71; color:#fff; }
.skill-badge.green{ background:#2ECC71; }
.skill-main.pink{ background:var(--pink); color:#fff; }
.skill-badge.pink{ background:var(--pink); }
.skill-main.blue{ background:var(--blue); color:#fff; }
.skill-badge.blue{ background:var(--blue); }

@media (max-width:640px){
  .about-preview{ padding:20px 20px 70px; }
  .wave-full{ height:70px; }
  .about-grid{ flex-direction:column-reverse; gap:28px; }
  .bio-text{ max-width:none; }
  .polaroid{ width:220px; }
  .polaroid .photo-area{ height:auto; aspect-ratio:3/4; }
  .skills-row{ gap:36px; }
  .skill-main{ padding:18px 26px; }
}

.stub-main{ max-width:900px; margin:0 auto; padding:120px 40px; text-align:center; }

/* TRUSTED BY */
.trusted-by{ max-width:1320px; margin:0 auto; padding:80px 0 100px; text-align:center; overflow:hidden; }
.trusted-label{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:22px; margin-bottom:40px; padding:0 40px; }
.trusted-label .ul{ display:block; width:60px; height:2px; background:currentColor; margin:2px auto 0; }

.marquee{ overflow:hidden; width:100%; -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track{ display:flex; align-items:center; gap:22px; width:max-content; animation:marquee-scroll 34s linear infinite; padding:10px 0; }
.marquee-track.reverse{ animation-direction:reverse; animation-duration:30s; gap:16px; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

.lead-marquee{ margin-bottom:20px; }

.logo-tape{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  padding:22px 32px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 50%, 96% 100%, 4% 100%, 0% 50%);
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  transform:rotate(-1.5deg);
  min-width:130px;
  min-height:70px;
  flex-shrink:0;
}
.marquee-track > .logo-tape:nth-child(even){ transform:rotate(1.5deg); }

.logo-tape.big{ padding:30px 42px; min-width:160px; min-height:90px; }
.logo-tape.prominent{ padding:36px 50px; min-width:190px; min-height:104px; box-shadow:0 0 0 4px #fff, 0 8px 20px rgba(0,0,0,0.22); }

.logo-tape img{ max-height:34px; max-width:130px; width:auto; object-fit:contain; }
.logo-tape.big img{ max-height:46px; max-width:170px; }
.logo-tape.prominent img{ max-height:56px; max-width:190px; }

.logo-tape.mint{ background:var(--mint); }
.logo-tape.gold{ background:var(--gold); }
.logo-tape.lav{ background:#C9C6F2; }
.logo-tape.pink{ background:#F7B8D6; }

@media (max-width:640px){
  .trusted-by{ padding:50px 0 60px; }
  .trusted-label{ padding:0 18px; }
  .marquee-track{ gap:12px; }
  .lead-marquee{ margin-bottom:14px; }
  .logo-tape{ padding:16px 20px; min-width:100px; min-height:54px; }
  .logo-tape.big{ padding:20px 26px; min-width:120px; min-height:64px; }
  .logo-tape.prominent{ padding:24px 32px; min-width:140px; min-height:76px; }
  .logo-tape img{ max-height:24px; max-width:90px; }
  .logo-tape.big img{ max-height:30px; max-width:110px; }
  .logo-tape.prominent img{ max-height:36px; max-width:120px; }
}

/* SERVICES SECTION */
.services-section{ position:relative; margin-top:20px; }
.services-intro{ text-align:center; padding:70px 20px 50px; }
.services-label{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:22px; }
.services-label .ul{ display:block; width:60px; height:2px; background:currentColor; margin:2px auto 0; }
.services-heading{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(48px,10vw,120px); line-height:1.02; letter-spacing:0.01em; margin:14px 0 0; }
.services-sub{ display:inline-block; background:var(--gold); padding:16px 26px; margin-top:24px; font-family:'Space Mono',monospace; font-size:14px; font-weight:700; transform:rotate(-2deg); box-shadow:4px 4px 0 rgba(0,0,0,0.1); max-width:420px; }

.services-stack{ position:relative; max-width:1320px; margin:0 auto; padding:0 40px; }

.tab-bar{
  position:sticky; top:76px; z-index:50;
  display:flex; align-items:flex-end;
  max-width:1320px; margin:0 auto; padding:0 40px;
}
.tab{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px 14px 22px;
  font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.04em;
  color:#fff;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
  margin-right:-16px;
  opacity:0.55;
  cursor:pointer;
  transition:opacity .25s ease, max-width .35s ease, padding .35s ease;
  white-space:nowrap;
  box-shadow:0 4px 10px rgba(0,0,0,0.12);
  max-width:220px;
  overflow:hidden;
}
.tab:not(.revealed){
  max-width:0;
  padding-left:0;
  padding-right:0;
  margin-right:0;
  box-shadow:none;
}
.tab:last-child{ margin-right:0; }
.tab.active{ opacity:1; }
.tab-1{ background:var(--blue); }
.tab-2{ background:var(--ink); }
.tab-3{ background:var(--gold); color:var(--ink); }
.tab-4{ background:var(--pink); }

.service-panel{
  position:sticky;
  top:132px;
  display:flex;
  flex-direction:column;
}
.panel-1{ z-index:10; }
.panel-2{ z-index:20; }
.panel-3{ z-index:30; }
.panel-4{ z-index:40; }

.panel-1 .panel-inner{ background:var(--blue); color:#fff; }
.panel-2 .panel-inner{ background:var(--ink); color:#fff; }
.panel-3 .panel-inner{ background:var(--gold); color:var(--ink); }
.panel-4 .panel-inner{ background:var(--pink); color:#fff; }

.panel-inner{
  display:flex;
  align-items:center;
  gap:64px;
  padding:64px 64px;
  flex-wrap:wrap;
  border-radius:0;
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
  margin-bottom:36px;
}

.panel-copy{ flex:1 1 380px; min-width:280px; }
.panel-eyebrow{ display:flex; align-items:center; gap:10px; font-family:'Space Mono',monospace; font-weight:700; letter-spacing:0.05em; font-size:13px; margin-bottom:18px; }
.panel-eyebrow .dot{ width:9px; height:9px; border-radius:50%; background:currentColor; }
.panel-title{ font-family:'Space Grotesk',sans-serif; font-weight:900; font-size:clamp(32px,5vw,54px); line-height:1.06; margin:0 0 20px; }
.panel-desc{ font-family:'Space Grotesk',sans-serif; font-size:17px; max-width:560px; line-height:1.6; margin:0 0 26px; opacity:0.92; }
.panel-tags{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:26px; }
.panel-tag{ background:rgba(0,0,0,0.18); font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.04em; padding:9px 16px; border-radius:2px; }
.panel-3 .panel-tag{ background:rgba(0,0,0,0.1); }
.panel-link{ font-family:'Space Mono',monospace; font-weight:700; font-size:14px; letter-spacing:0.03em; color:inherit; text-decoration:underline; text-underline-offset:6px; }

.panel-visual{ flex:1 1 380px; min-width:280px; position:relative; max-width:420px; align-self:center; }
.panel-tape{ position:absolute; width:76px; height:28px; opacity:0.7; box-shadow:0 2px 4px rgba(0,0,0,0.15); z-index:2; }
.panel-tape.blue{ background:#AFCBEB; }
.panel-tape.yellow{ background:#F1DA9A; }
.panel-tape.tl{ top:-12px; left:24px; transform:rotate(-12deg); }
.panel-tape.tr{ top:-10px; right:24px; transform:rotate(14deg); }
.panel-photo{
  width:100%; aspect-ratio:16/10;
  background:linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
  border:2px solid rgba(255,255,255,0.6);
  box-shadow:8px 10px 22px rgba(0,0,0,0.2);
  overflow:hidden;
}
.panel-photo img{ width:100%; height:100%; object-fit:contain; display:block; }

@media (max-width:900px){
  .tab{ font-size:12px; padding:12px 20px 12px 16px; }
  .panel-inner{ padding:44px 32px; gap:40px; }
}

@media (max-width:640px){
  .services-intro{ padding:50px 16px 36px; }
  .tab{ font-size:10px; padding:12px 16px 12px 14px; }
  /* Sticky stacking is disabled below this width, it reads cramped on small
     screens; panels fall back to normal in-flow scroll instead. */
  .tab-bar{ position:static; }
  .service-panel{ position:static; box-shadow:none; }
  .panel-inner{ padding:32px 18px; }
  .panel-title{ font-size:clamp(30px,8vw,44px); }
}
.stub-main h1{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(40px,8vw,90px); margin:0 0 16px; }
.stub-main p{ font-family:'Space Mono',monospace; font-size:15px; }

/* TABLET */
@media (max-width:900px){
  .hero{ padding:64px 28px 50px; }
  .tag-row{ gap:34px; margin-bottom:40px; }
  .photo{ width:80px; height:80px; }
  .photo.left{ top:160px; } .photo.right{ top:130px; }
}

/* MOBILE */
@media (max-width:640px){
  .hero{ padding:44px 18px 40px; }
  .tag-row{ gap:16px; margin-bottom:30px; }
  .tag{ font-size:12px; padding:9px 14px; }

  .robin-stage{ padding:20px 22px 20px; }
  .sticky{ position:static; display:inline-block; margin:10px 6px 0; }
  .sticky.designer, .sticky.location{ transform:none; }
  .stage-content, .reveal-panel{ display:flex; flex-direction:column; align-items:center; }

  .photo{ display:none; }
  .headline-row{ margin-top:28px; }
  .status-row{ margin-top:40px; flex-wrap:wrap; text-align:center; }
  .cta-row{ margin-top:36px; }
}

/* CTA — LET'S TALK */
.cta-talk{ max-width:1000px; margin:0 auto; padding:60px 40px 110px; text-align:center; }
.cta-smiley{ font-size:64px; display:inline-block; animation:float 4s ease-in-out infinite; }
.cta-heading{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(48px,9vw,96px); margin:8px 0 18px; }
.cta-sub{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:clamp(18px,2.4vw,24px); max-width:520px; margin:0 auto 60px; line-height:1.5; }

.cta-stage{ position:relative; display:flex; align-items:center; justify-content:center; }
.cta-panel{
  position:relative;
  background:var(--gold);
  border:2px solid var(--ink);
  clip-path: polygon(0 2%, 98% 0, 100% 96%, 2% 100%);
  padding:70px 60px;
  width:100%;
  max-width:760px;
  text-align:center;
}
.cta-panel-sub{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:clamp(16px,2vw,20px); margin:0 0 10px; }
.cta-panel-title{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(48px,8vw,90px); margin:0 0 20px; }
.cta-panel-link{ font-family:'Space Mono',monospace; font-weight:700; font-size:14px; letter-spacing:0.03em; color:var(--ink); text-decoration:underline; text-underline-offset:6px; }

.cta-note{
  position:absolute;
  left:-40px; top:-50px;
  background:#C9C6F2;
  border-radius:6px;
  padding:22px 26px;
  width:230px;
  text-align:left;
  box-shadow:6px 8px 18px rgba(0,0,0,0.15);
  transform:rotate(-4deg);
  z-index:2;
}
.cta-note .tape.tl{ top:-14px; left:20px; transform:rotate(-16deg); }
.cta-note .tape.tr{ top:-12px; right:20px; transform:rotate(14deg); }
.cta-note-name{ font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:15px; margin-bottom:8px; }
.cta-note-text{ font-family:'Space Grotesk',sans-serif; font-size:13px; line-height:1.5; margin:0; opacity:0.85; }

@media (max-width:820px){
  .cta-note{ position:static; width:auto; max-width:340px; margin:0 auto 24px; transform:rotate(-2deg); }
  .cta-stage{ flex-direction:column; }
  .cta-panel{ padding:50px 32px; }
}

/* FOOTER */
.site-footer{ max-width:1320px; margin:0 auto; padding:50px 40px 30px; border-top:1px solid var(--line); }
.footer-top{ display:flex; align-items:center; flex-wrap:wrap; gap:24px; }
.footer-name{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(30px,4vw,42px); line-height:1; }
.footer-role{ display:flex; align-items:center; gap:8px; font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.04em; margin-top:6px; }
.footer-role .dot{ width:8px; height:8px; border-radius:50%; background:var(--blue); }
.footer-brand{ flex:1 1 220px; }
.footer-nav{ display:flex; gap:22px; flex:1 1 260px; justify-content:center; flex-wrap:wrap; }
.footer-nav a{ font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.04em; color:var(--ink); text-decoration:none; }
.footer-bottom{ margin-top:34px; font-family:'Space Mono',monospace; font-size:11px; letter-spacing:0.03em; opacity:0.6; }

@media (max-width:640px){
  .cta-talk{ padding:40px 20px 70px; }
  .cta-panel{ padding:40px 24px; }
  .site-footer{ padding:36px 20px 24px; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
  .footer-nav{ justify-content:flex-start; }
}

/* SCROLL-TRIGGERED REVEALS */
.reveal, .reveal-item{
  opacity:0;
  transform:translateY(26px) rotate(-1deg);
  transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay:calc(var(--i, 0) * 90ms);
}
.reveal.in, .reveal-item.in{
  opacity:1;
  transform:translateY(0) rotate(0deg);
}

/* HERO ENTRANCE (plays once, right after the preloader hides) */
.entrance{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
body.page-ready .entrance{ opacity:1; transform:translateY(0); }
.entrance-1{ transition-delay:.05s; }
.entrance-2{ transition-delay:.16s; }
.entrance-3{ transition-delay:.30s; }
.entrance-4{ transition-delay:.44s; }
.entrance-5{ transition-delay:.58s; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-item, .entrance{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ABOUT PAGE */
.about-page{ max-width:1320px; margin:0 auto; padding:60px 40px 40px; position:relative; }
.page-title{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(56px,10vw,120px); margin:0 0 50px; }

.side-nav{
  position:sticky; top:96px; z-index:20;
  display:flex; flex-direction:column; gap:10px;
  width:130px; float:left; margin-right:-130px;
}
.side-link{
  font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.03em;
  padding:10px 16px; text-decoration:none; color:var(--ink);
  border-radius:20px; opacity:0.5; transition:opacity .2s ease;
  background:#EFEBE2;
}
.side-link.active{ opacity:1; }
.side-link.gold.active{ background:var(--gold); }
.side-link.pink.active{ background:var(--pink); color:#fff; }
.side-link.blue.active{ background:var(--blue); color:#fff; }

.about-section{ margin-left:150px; margin-bottom:70px; scroll-margin-top:100px; }
.section-tag{ display:inline-block; font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.04em; padding:9px 18px; border-radius:4px; margin-bottom:18px; }
.section-tag.gold{ background:var(--gold); color:var(--ink); }
.section-tag.pink{ background:var(--pink); color:#fff; }
.section-tag.blue{ background:var(--blue); color:#fff; }

.framed-box{ border:2px solid var(--ink); border-radius:8px; padding:44px; position:relative; }
.framed-box.gold-frame{ border-color:#D9A916; }
.framed-box.pink-frame{ border-color:var(--pink); }
.framed-box.blue-frame{ border-color:var(--blue); }

.framed-photo{ float:right; width:220px; margin:0 0 20px 30px; position:relative; background:#fff; padding:12px 12px 34px; box-shadow:6px 8px 18px rgba(0,0,0,0.15); transform:rotate(3deg); }
.framed-photo .photo-area{ width:100%; height:230px; object-fit:cover; display:block; }
.framed-photo .cap{ text-align:center; font-family:'Shantell Sans',cursive; font-weight:700; font-size:16px; margin-top:6px; }
.photo-tag{ position:absolute; bottom:36px; left:-70px; font-family:'Shantell Sans',cursive; font-weight:700; font-size:16px; background:var(--gold); padding:6px 12px; border-radius:4px; transform:rotate(-4deg); box-shadow:3px 3px 0 rgba(0,0,0,0.1); }

.bio-lead{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:clamp(19px,2.4vw,25px); line-height:1.6; margin:0 0 22px; }
.bio-lead .hl{ background:var(--blue); color:#fff; padding:1px 8px; border-radius:2px; }
.bio-body{ font-family:'Space Grotesk',sans-serif; font-size:15px; line-height:1.7; color:var(--ink); opacity:0.85; margin:0 0 16px; max-width:640px; }

.aside-note{
  background:#F1DA9A; font-family:'Space Grotesk',sans-serif; font-size:14px; line-height:1.6;
  padding:18px 22px; border-radius:4px; box-shadow:4px 5px 0 rgba(0,0,0,0.08);
  max-width:340px; margin-top:26px;
}
.note-1{ transform:rotate(-1.5deg); }
.note-2{ transform:rotate(1.5deg); margin-left:auto; }

.story-card{ border-radius:6px; padding:28px 30px; max-width:480px; box-shadow:5px 6px 0 rgba(0,0,0,0.08); margin-bottom:14px; }
.story-card.lav{ background:#C9C6F2; }
.story-card.gold{ background:#F1DA9A; margin-left:auto; }
.story-card.mint{ background:var(--mint); }
.story-card h3{ font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:20px; margin:0 0 10px; }
.story-card p{ font-family:'Space Grotesk',sans-serif; font-size:14px; line-height:1.6; margin:0; opacity:0.85; }
.story-note{ font-family:'Shantell Sans',cursive; font-weight:700; font-size:16px; margin:0 0 34px 30px; }
.story-note.right{ text-align:right; margin:0 30px 34px auto; }

.work-row{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; padding:20px 0; border-bottom:1px solid var(--line); }
.work-row:last-child{ border-bottom:none; }
.work-main{ display:flex; flex-direction:column; gap:4px; }
.work-main strong{ font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:17px; }
.work-sub{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.65; }
.work-meta{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.work-date{ font-family:'Space Mono',monospace; font-weight:700; font-size:11px; letter-spacing:0.03em; opacity:0.6; }
.work-badge{ font-family:'Space Mono',monospace; font-weight:700; font-size:11px; letter-spacing:0.03em; background:var(--blue); color:#fff; padding:6px 12px; border-radius:3px; }

@media (max-width:900px){
  .side-nav{ position:static; float:none; flex-direction:row; width:auto; margin:0 0 30px; }
  .about-section{ margin-left:0; }
  .framed-photo{ float:none; margin:0 0 24px; width:180px; }
}

@media (max-width:640px){
  .about-page{ padding:44px 20px 30px; }
  .framed-box{ padding:26px 22px; }
  .story-card{ max-width:none; }
  .story-card.gold{ margin-left:0; }
  .story-note.right{ text-align:left; margin:0 0 24px; }
  .work-row{ flex-direction:column; align-items:flex-start; }
}

.work-more{ font-family:'Space Grotesk',sans-serif; font-size:14px; opacity:0.55; margin:22px 0 0; }

/* PLAYGROUND */
.pg-page{ max-width:1400px; margin:0 auto; padding:60px 40px 30px; }
.pg-intro{ text-align:center; margin-bottom:50px; }
.pg-label{ font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:20px; }
.pg-label .ul{ display:block; width:56px; height:2px; background:currentColor; margin:2px auto 0; }
.pg-heading-wrap{ position:relative; display:inline-block; margin-top:10px; }
.pg-heading{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(48px,9vw,110px); margin:0; }
.pg-float-tag{
  position:absolute; top:-10px; right:-70px;
  background:var(--mint); font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:16px;
  padding:12px 20px; border-radius:6px; transform:rotate(6deg);
  box-shadow:4px 5px 0 rgba(0,0,0,0.1);
}
.pg-intro-sub{
  font-family:'Space Grotesk',sans-serif; font-size:15px; opacity:0.65;
  max-width:420px; margin:22px auto 0; line-height:1.6;
}

.pg-board{ column-count:4; column-gap:26px; }
.pg-card{
  break-inside:avoid;
  margin:0 0 40px;
}
.pg-card:nth-child(3n){ transform:rotate(-2deg); }
.pg-card:nth-child(3n+1){ transform:rotate(1.5deg); }
.pg-card:nth-child(3n+2){ transform:rotate(-1deg); }

.pg-flip{
  all:unset;
  display:block;
  position:relative;
  width:100%;
  cursor:pointer;
  perspective:1400px;
  box-shadow:0 10px 24px rgba(0,0,0,0.14);
  transition:transform .2s ease, box-shadow .2s ease;
}
.pg-flip:hover{ transform:translateY(-4px); box-shadow:0 16px 30px rgba(0,0,0,0.2); }
.pg-flip:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; }

.pg-card.flipped .pg-flip .pg-face-inner{ transform:rotateY(180deg); }

.pg-face-inner{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  transition:transform .65s cubic-bezier(.4,.2,.2,1);
}

.pg-front, .pg-back{
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.pg-front{ position:relative; }
.pg-back{
  position:absolute; inset:0;
  transform:rotateY(180deg);
  background:var(--ink);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  padding:28px;
  text-align:center;
}
.pg-back-text{
  font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:clamp(20px,3vw,26px); line-height:1.4;
  margin:0;
}

.pg-note{
  position:absolute; top:-16px; left:14px; right:14px; z-index:3;
  font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:14px;
  padding:9px 16px; border-radius:5px;
  box-shadow:3px 4px 0 rgba(0,0,0,0.1);
  transform:rotate(-3deg);
  width:fit-content;
  max-width:calc(100% - 28px);
  line-height:1.3;
}
.pg-note.gold{ background:var(--gold); }
.pg-note.mint{ background:var(--mint); }
.pg-note.lav{ background:#C9C6F2; }
.pg-note.pink{ background:#F7B8D6; }

.pg-flip-hint{
  position:absolute; bottom:10px; right:10px; z-index:3;
  width:28px; height:28px; border-radius:50%;
  background:rgba(255,255,255,0.92);
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  box-shadow:0 2px 6px rgba(0,0,0,0.2);
}

.pg-photo{ width:100%; aspect-ratio:4/6; display:block; object-fit:cover; }

@media (max-width:1024px){ .pg-board{ column-count:3; } }
@media (max-width:768px){ .pg-board{ column-count:2; } .pg-float-tag{ right:-20px; font-size:13px; padding:9px 14px; } }
@media (max-width:480px){
  .pg-page{ padding:44px 20px 20px; }
  .pg-board{ column-count:1; column-gap:0; }
  .pg-heading-wrap{ display:block; }
  .pg-float-tag{ position:static; display:inline-block; margin-top:14px; }
}

/* PLAYGROUND — gamified progress + confetti */
.pg-progress{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:20px;
  font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.03em;
  background:var(--mint); color:var(--ink);
  padding:9px 18px; border-radius:20px;
  box-shadow:0 3px 8px rgba(0,0,0,0.1);
  transition:background .3s ease, transform .2s ease;
}
.pg-progress.bump{ transform:scale(1.12); }
.pg-progress.complete{ background:var(--gold); }

.pg-card.flipped .pg-flip-hint{ opacity:0.35; }

.pg-confetti-piece{
  position:fixed;
  top:-20px;
  width:9px; height:9px;
  z-index:200;
  pointer-events:none;
  border-radius:2px;
  animation:pg-confetti-fall linear forwards;
}
@keyframes pg-confetti-fall{
  0%{ transform:translateY(0) rotate(0deg); opacity:1; }
  100%{ transform:translateY(105vh) rotate(540deg); opacity:0.9; }
}

@media (prefers-reduced-motion: reduce){
  .pg-confetti-piece{ display:none; }
}

/* SERVICES LIST PAGE */
.svc-page{ max-width:1320px; margin:0 auto; padding:60px 40px 40px; }
.svc-intro{ text-align:center; margin-bottom:60px; }
.svc-label{ font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:20px; }
.svc-label .ul{ display:block; width:56px; height:2px; background:currentColor; margin:2px auto 0; }
.svc-heading{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(48px,9vw,110px); margin:10px 0 0; }
.svc-sub{ font-family:'Space Grotesk',sans-serif; font-size:15px; opacity:0.65; margin-top:14px; }

.svc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px 40px; }
.svc-card{ display:flex; flex-direction:column; }
.svc-photo{ width:100%; aspect-ratio:16/10; border-radius:6px; margin-bottom:20px; overflow:hidden; position:relative; background:#EFEBE2; }
.svc-photo img{ width:100%; height:100%; object-fit:contain; display:block; }
.svc-eyebrow{ display:flex; align-items:center; gap:8px; font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.04em; opacity:0.65; margin-bottom:10px; }
.svc-eyebrow .dot{ width:8px; height:8px; border-radius:50%; background:var(--blue); }
.svc-title{ font-family:'Inter',sans-serif; font-weight:800; font-size:24px; margin:0 0 8px; }
.svc-desc{ font-family:'Space Grotesk',sans-serif; font-size:14px; opacity:0.7; line-height:1.5; margin:0 0 14px; }
.svc-link{ font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.03em; color:var(--ink); text-decoration:underline; text-underline-offset:5px; }

@media (max-width:768px){
  .svc-grid{ grid-template-columns:1fr; }
}

/* SERVICE DETAIL PAGE */
.svc-detail{ max-width:1000px; margin:0 auto; padding:60px 40px 30px; }
.svc-detail-hero{ text-align:center; margin-bottom:44px; }
.svc-detail-title{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(44px,8vw,90px); margin:10px 0 18px; }
.svc-detail-lead{ font-family:'Space Grotesk',sans-serif; font-size:17px; opacity:0.75; max-width:520px; margin:0 auto; line-height:1.6; }

.svc-collage{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:70px; }
.svc-collage-tile{ aspect-ratio:3/4; border-radius:6px; }

.svc-block{ margin-bottom:60px; }
.svc-block-title{ font-family:'Inter',sans-serif; font-weight:800; font-size:22px; margin:0 0 24px; }

.svc-tag-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.svc-tag-card{ background:#EFEBE2; border-radius:6px; padding:20px 22px; font-family:'Space Grotesk',sans-serif; font-weight:500; font-size:15px; }

.svc-feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.svc-feature{ background:#fff; border:1px solid var(--line); border-radius:6px; padding:22px; }
.svc-feature h3{ font-family:'Inter',sans-serif; font-weight:800; font-size:15px; margin:0 0 8px; }
.svc-feature p{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.65; margin:0; line-height:1.5; }

.svc-engage-list{ display:flex; flex-direction:column; }
.svc-engage-row{ display:flex; justify-content:space-between; align-items:baseline; gap:20px; padding:18px 0; border-bottom:1px solid var(--line); flex-wrap:wrap; }
.svc-engage-row strong{ font-family:'Inter',sans-serif; font-weight:800; font-size:16px; }
.svc-engage-row span{ font-family:'Space Grotesk',sans-serif; font-size:14px; opacity:0.65; }

.svc-tools-row{ display:flex; flex-wrap:wrap; gap:14px; }
.svc-tool-badge{
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--line); border-radius:10px;
  padding:12px 18px;
}
.svc-tool-badge img{ height:28px; width:auto; object-fit:contain; }
.svc-tool-badge span{ font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:14px; }

@media (max-width:768px){
  .svc-collage{ grid-template-columns:repeat(2,1fr); }
  .svc-feature-grid{ grid-template-columns:1fr 1fr; }
  .svc-tag-grid{ grid-template-columns:1fr; }
}
@media (max-width:480px){
  .svc-detail{ padding:44px 20px 20px; }
  .svc-feature-grid{ grid-template-columns:1fr; }
}

/* SERVICE DETAIL — deck-type carousel */
.svc-carousel{
  position:relative;
  display:flex; align-items:center; gap:16px;
  margin-bottom:24px;
}
.svc-car-track{ position:relative; flex:1; aspect-ratio:16/9; border-radius:10px; overflow:hidden; background:#EFEBE2; }
.svc-car-slide{
  position:absolute; inset:0;
  display:flex; align-items:flex-end; justify-content:flex-start;
  padding:26px;
  opacity:0; visibility:hidden;
  transition:opacity .4s ease;
  background:#EFEBE2;
}
.svc-car-slide img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  z-index:0;
}
.svc-car-label{ position:relative; z-index:1; }
.svc-car-slide.active{ opacity:1; visibility:visible; }
.svc-car-label{
  font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.03em;
  background:rgba(255,255,255,0.92); color:var(--ink);
  padding:9px 16px; border-radius:20px;
}
.svc-car-arrow{
  flex-shrink:0; width:42px; height:42px; border-radius:50%;
  border:1px solid var(--line); background:#fff; cursor:pointer;
  font-size:20px; line-height:1; display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.svc-car-arrow:hover{ background:#EFEBE2; }
.svc-car-dots{ position:absolute; bottom:-26px; left:50%; transform:translateX(-50%); display:flex; gap:8px; }
.svc-car-dot{ width:7px; height:7px; border-radius:50%; background:var(--line); cursor:pointer; }
.svc-car-dot.active{ background:var(--blue); }

/* SERVICE DETAIL — pricing */
.svc-price-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.svc-price-card{ border:1px solid var(--line); border-radius:10px; padding:26px; display:flex; flex-direction:column; }
.svc-price-card h3{ font-family:'Inter',sans-serif; font-weight:800; font-size:18px; margin:0 0 10px; }
.svc-price-desc{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.65; line-height:1.55; margin:0 0 16px; }
.svc-price-tag{ font-family:'Handjet',sans-serif; font-weight:700; font-size:30px; margin-bottom:16px; }
.svc-price-list{ list-style:none; margin:0 0 12px; padding:0; display:flex; flex-direction:column; gap:8px; }
.svc-price-list li{ font-family:'Space Grotesk',sans-serif; font-size:13px; padding-left:18px; position:relative; }
.svc-price-list li::before{ content:"\2726"; position:absolute; left:0; color:var(--blue); font-size:11px; top:2px; }
.svc-price-note{ font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:12px; opacity:0.6; margin:auto 0 0; padding-top:10px; }

@media (max-width:768px){
  .svc-price-grid{ grid-template-columns:1fr; }
}
@media (max-width:480px){
  .svc-carousel{ gap:8px; }
  .svc-car-arrow{ width:34px; height:34px; font-size:16px; }
}

/* PITCH DECK PAGE — folder aesthetic, matches homepage */
.pd-page{ max-width:1100px; margin:0 auto; padding:60px 40px 30px; }

.pd-hero{ text-align:center; margin-bottom:40px; }
.pd-eyebrow{ display:inline-block; font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.04em; background:var(--gold); padding:8px 16px; border-radius:20px; margin-bottom:16px; }
.pd-title{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(44px,8vw,90px); margin:0 0 18px; }
.pd-lead{ font-family:'Space Grotesk',sans-serif; font-size:17px; opacity:0.75; max-width:520px; margin:0 auto; line-height:1.6; }

.pd-carousel{ display:flex; align-items:center; gap:16px; margin-bottom:70px; }

.pd-block{ margin-bottom:64px; }
.pd-tag{ display:inline-block; font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.04em; padding:8px 16px; border-radius:4px; margin-bottom:16px; }
.pd-tag.blue{ background:var(--blue); color:#fff; }
.pd-tag.gold{ background:var(--gold); color:var(--ink); }
.pd-tag.pink{ background:var(--pink); color:#fff; }
.pd-tag.mint{ background:var(--mint); color:var(--ink); }
.pd-block-title{ font-family:'Inter',sans-serif; font-weight:800; font-size:clamp(22px,3.4vw,30px); margin:0 0 14px; max-width:640px; }
.pd-block-copy{ font-family:'Space Grotesk',sans-serif; font-size:15px; opacity:0.7; line-height:1.6; max-width:600px; margin:0; }
.pd-block-note{ font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:15px; margin-top:24px; }

/* Persona folder cards */
.pd-persona-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.pd-persona{
  position:relative;
  border-radius:8px;
  padding:26px 24px;
  border:2px solid var(--ink);
}
.pd-persona.blue{ background:#DCE5FB; }
.pd-persona.gold{ background:#FBF0CC; }
.pd-persona.pink{ background:#FCE3EF; }
.pd-persona.mint{ background:#DCF3EA; }
.pd-persona h3{ font-family:'Inter',sans-serif; font-weight:800; font-size:17px; margin:6px 0 10px; }
.pd-persona p{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.75; line-height:1.55; margin:0 0 16px; }
.pd-persona-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.pd-persona-tags span{
  background:#fff; border:1px solid rgba(0,0,0,0.12);
  font-family:'Space Mono',monospace; font-weight:700; font-size:11px; letter-spacing:0.02em;
  padding:6px 12px; border-radius:14px;
}

/* Pull quote */
.pd-quote{ text-align:center; margin:80px 0; }
.pd-quote p{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(32px,6vw,56px); margin:0 0 16px; }
.pd-quote-sub{ font-family:'Space Grotesk',sans-serif; font-size:14px; opacity:0.6; max-width:460px; display:block; margin:0 auto; line-height:1.6; }

/* Accordion — What's Included */
.pd-accordion{ margin-top:30px; border-top:1px solid var(--line); }
.pd-acc-item{ border-bottom:1px solid var(--line); }
.pd-acc-head{
  all:unset;
  display:flex; align-items:center; gap:16px;
  width:100%; box-sizing:border-box;
  padding:20px 4px;
  cursor:pointer;
}
.pd-acc-num{ font-family:'Space Mono',monospace; font-weight:700; font-size:13px; opacity:0.45; width:24px; flex-shrink:0; }
.pd-acc-title{ font-family:'Inter',sans-serif; font-weight:800; font-size:17px; flex:1; }
.pd-acc-plus{ font-family:'Inter',sans-serif; font-weight:700; font-size:20px; flex-shrink:0; transition:transform .25s ease; color:var(--blue); }
.pd-acc-item.open .pd-acc-plus{ transform:rotate(45deg); }
.pd-acc-panel{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .3s ease;
}
.pd-acc-panel p{
  overflow:hidden;
  font-family:'Space Grotesk',sans-serif; font-size:14px; opacity:0.7; line-height:1.6;
  margin:0; padding:0 4px 0 40px; max-width:520px;
}
.pd-acc-item.open .pd-acc-panel{ grid-template-rows:1fr; }
.pd-acc-item.open .pd-acc-panel p{ padding-bottom:20px; }
.pd-acc-panel > p{ min-height:0; }

/* Pricing — folder tab cards */
.pd-price-grid{ display:flex; flex-direction:column; gap:20px; margin-top:24px; }
.pd-price-card{ display:flex; gap:0; align-items:stretch; border-radius:8px; overflow:hidden; box-shadow:0 8px 20px rgba(0,0,0,0.1); }
.pd-price-tab{
  flex-shrink:0; width:70px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Handjet',sans-serif; font-weight:700; font-size:32px;
  color:#fff;
}
.pd-price-tab.blue{ background:var(--blue); }
.pd-price-tab.gold{ background:var(--gold); color:var(--ink); }
.pd-price-tab.pink{ background:var(--pink); }
.pd-price-tab.mint{ background:var(--mint); color:var(--ink); }
.pd-price-tab.lav{ background:#C9C6F2; color:var(--ink); }
.pd-price-body{ flex:1; background:#fff; border:1px solid var(--line); border-left:none; padding:22px 26px; }
.pd-price-body h3{ font-family:'Inter',sans-serif; font-weight:800; font-size:18px; margin:0 0 8px; }
.pd-price-desc{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.65; line-height:1.55; margin:0 0 14px; max-width:560px; }
.pd-price-tag{ font-family:'Handjet',sans-serif; font-weight:700; font-size:26px; margin-bottom:6px; }
.pd-price-meta{ font-family:'Space Mono',monospace; font-weight:700; font-size:11px; letter-spacing:0.02em; opacity:0.55; }

/* Engagement cards */
.pd-engage-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:24px; }
.pd-engage-card{ background:#EFEBE2; border-radius:8px; padding:24px 22px; }
.pd-engage-card h3{ font-family:'Inter',sans-serif; font-weight:800; font-size:16px; margin:0 0 10px; }
.pd-engage-card p{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.7; line-height:1.6; margin:0; }

@media (max-width:768px){
  .pd-persona-grid{ grid-template-columns:1fr; }
  .pd-engage-grid{ grid-template-columns:1fr; }
}
@media (max-width:480px){
  .pd-page{ padding:44px 20px 20px; }
  .pd-price-card{ flex-direction:column; }
  .pd-price-tab{ width:100%; height:44px; }
  .pd-price-body{ border-left:1px solid var(--line); border-top:none; }
}

/* ANALYTICS PAGE — before/after + pipeline */
.pd-ba-grid{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px; margin-top:24px; }
.pd-ba-card{ border:2px solid var(--ink); border-radius:8px; overflow:hidden; }
.pd-ba-card img{ width:100%; display:block; }
.pd-ba-label{ font-family:'Space Mono',monospace; font-weight:700; font-size:12px; letter-spacing:0.04em; padding:10px 14px; background:#EFEBE2; }
.pd-ba-label.accent{ background:var(--mint); }
.pd-ba-arrow{ font-family:'Handjet',sans-serif; font-weight:700; font-size:36px; color:var(--blue); }

.pd-pipeline{ margin-top:26px; border:2px solid var(--ink); border-radius:8px; overflow:hidden; }
.pd-pipeline img{ width:100%; display:block; }

.svc-tool-badge.text-only{ padding:12px 20px; }
.svc-tool-badge.text-only span{ font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:14px; }

@media (max-width:768px){
  .pd-ba-grid{ grid-template-columns:1fr; }
  .pd-ba-arrow{ transform:rotate(90deg); justify-self:center; }
}

.pd-live-link{
  display:inline-block; margin-top:18px;
  font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.03em;
  color:var(--blue); text-decoration:underline; text-underline-offset:5px;
}

/* EMAIL PAGE — facet layout around centered mockup */
.email-facet-wrap{ display:grid; grid-template-columns:1fr auto 1fr; gap:40px; align-items:center; }
.email-facet-col{ display:flex; flex-direction:column; gap:44px; }
.email-facet-center{ display:flex; justify-content:center; }
.email-facet-center img{ max-width:280px; width:100%; border-radius:20px; box-shadow:0 20px 40px rgba(0,0,0,0.18); }

.email-facet{ display:flex; align-items:flex-start; gap:14px; max-width:260px; }
.email-facet-col:first-child .email-facet{ margin-left:auto; text-align:right; flex-direction:row-reverse; }
.email-facet-icon{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.email-facet-icon svg{ width:20px; height:20px; }
.email-facet-icon.blue{ background:var(--blue); }
.email-facet-icon.gold{ background:var(--gold); }
.email-facet-icon.pink{ background:var(--pink); }
.email-facet-icon.mint{ background:var(--mint); }
.email-facet h3{ font-family:'Inter',sans-serif; font-weight:800; font-size:15px; margin:0 0 6px; }
.email-facet p{ font-family:'Space Grotesk',sans-serif; font-size:13px; opacity:0.65; line-height:1.5; margin:0; }

@media (max-width:900px){
  .email-facet-wrap{ grid-template-columns:1fr; }
  .email-facet-col{ flex-direction:row; flex-wrap:wrap; justify-content:center; gap:24px; }
  .email-facet-col:first-child{ order:2; }
  .email-facet-center{ order:1; }
  .email-facet-col:first-child .email-facet{ margin-left:0; text-align:left; flex-direction:row; }
  .email-facet{ max-width:220px; }
}

/* CONTACT PAGE */
.contact-page{
  max-width:1200px; margin:0 auto; padding:70px 40px 20px;
  display:flex; align-items:flex-start; justify-content:center; gap:40px; flex-wrap:wrap;
}
.contact-polaroid{
  background:#fff; padding:12px 12px 34px; box-shadow:6px 8px 18px rgba(0,0,0,0.15);
  width:220px; position:relative; flex-shrink:0; margin-top:20px;
}
.contact-polaroid.left{ transform:rotate(-6deg); }
.contact-polaroid.right{ transform:rotate(5deg); }
.contact-polaroid .photo-area{ width:100%; height:260px; object-fit:cover; display:block; }
.contact-polaroid .cap{ text-align:center; font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:15px; margin-top:8px; }

.contact-center{ flex:1 1 420px; max-width:480px; text-align:center; }
.contact-sayhi{ font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:20px; }
.contact-sayhi .ul{ display:block; width:44px; height:2px; background:currentColor; margin:2px auto 0; }

.contact-heading-box{
  position:relative;
  border:2px solid var(--ink);
  padding:20px 30px;
  margin:18px auto 24px;
  display:inline-block;
}
.contact-heading-box h1{ font-family:'Handjet',sans-serif; font-weight:700; font-size:clamp(40px,7vw,64px); margin:0; }
.contact-heading-box .handle{ position:absolute; width:9px; height:9px; background:var(--blue); }
.contact-heading-box .handle.tl{ top:-5px; left:-5px; }
.contact-heading-box .handle.tr{ top:-5px; right:-5px; }
.contact-heading-box .handle.bl{ bottom:-5px; left:-5px; }
.contact-heading-box .handle.br{ bottom:-5px; right:-5px; }

.contact-form{ background:var(--gold); border-radius:6px; padding:26px; box-shadow:6px 8px 18px rgba(0,0,0,0.12); text-align:left; }
.contact-form-label{ font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.02em; line-height:1.6; margin:0 0 16px; }
.contact-form textarea, .contact-form input{
  width:100%; box-sizing:border-box;
  font-family:'Space Grotesk',sans-serif; font-size:14px;
  border:1px solid rgba(0,0,0,0.2); border-radius:4px;
  padding:12px 14px; background:rgba(255,255,255,0.6);
  margin-bottom:14px;
}
.contact-form textarea{ min-height:110px; resize:vertical; }
.contact-next, .contact-submit, .contact-back{
  font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.03em;
  padding:12px 22px; border-radius:4px; border:none; cursor:pointer;
}
.contact-next, .contact-submit{ background:var(--ink); color:#fff; }
.contact-back{ background:transparent; color:var(--ink); text-decoration:underline; padding:12px 10px; }
.contact-step-actions{ display:flex; align-items:center; justify-content:space-between; }
.contact-success p{ font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:16px; margin:0; text-align:center; }

.contact-footer{ text-align:center; padding:50px 20px 90px; }
.contact-footer-line{ font-family:'Shantell Sans',sans-serif; font-weight:600; font-size:17px; margin-bottom:10px; }
.contact-footer-line .arrow{ display:inline-block; transform:rotate(0deg); }
.contact-email-link{ display:inline-block; font-family:'Inter',sans-serif; font-weight:700; font-size:16px; color:var(--blue); text-decoration:underline; margin-bottom:26px; }
.contact-social-pill{ display:inline-flex; background:#fff; border-radius:30px; box-shadow:0 4px 14px rgba(0,0,0,0.1); padding:10px 22px; }
.contact-social-pill a{ font-family:'Space Mono',monospace; font-weight:700; font-size:13px; letter-spacing:0.03em; color:var(--ink); text-decoration:none; }

@media (max-width:640px){
  .contact-page{ padding:44px 20px 10px; flex-direction:column; align-items:center; }
  .contact-polaroid{ width:180px; }
}
