/* ============================================================
   Eshita Akella — shared styles
   Split out of index.html. Loaded by the homepage and every
   case study page. Design system is locked in CLAUDE.md.
   ============================================================ */

:root{
  --ink:#1F2538;        /* all primary text */
  --slate:#3A4358;      /* secondary text */
  --muted:#6B6459;      /* captions, meta */
  --wall:#F0EEE9;       /* page background */
  --paper:#E6E3DC;      /* frames, panels */
  --lime:#8FD41C;       /* fills only — CLICKABLE */
  --lime-deep:#4F7A12;  /* lime as text/links */
  --pink:#FF2E8B;       /* fills only — LOOK HERE */
  --pink-deep:#B3105E;  /* pink as text */

  --rest:0 2px 4px rgba(31,37,56,.14), 0 12px 26px rgba(31,37,56,.11);
  --lift:0 7px 12px rgba(31,37,56,.15), 0 28px 56px rgba(31,37,56,.14);

  --ease:260ms cubic-bezier(.2,.7,.3,1);

  /* faint plaster grain on the wall — inline SVG noise, no image file */
  --grain:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.09'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  /* dot-grid wallpaper — gives the wall structure behind the framed work */
  --dots:radial-gradient(rgba(31,37,56,.08) 1.3px, transparent 1.5px);
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Author',system-ui,sans-serif;color:var(--ink);
     background-color:var(--wall);background-image:var(--grain),var(--dots);
     background-size:200px 200px,26px 26px;
     -webkit-font-smoothing:antialiased}

/* ============================================================
   HOMEPAGE — the horizontal room
   ============================================================ */
body.room-page{overflow:hidden;transition:opacity 950ms cubic-bezier(.2,.7,.3,1)}
/* when the viewport crosses a breakpoint the layout snaps between the
   horizontal room and the vertical stack — JS adds .bp-switch to blank
   the page for one frame, then removes it so the new layout fades in */
body.room-page.bp-switch{opacity:0;transition:none}

.room{position:fixed;inset:0;overflow-x:auto;overflow-y:hidden}
.room::-webkit-scrollbar{height:0}
.track{position:relative;height:100vh;height:100svh;width:calc(100vw + 7100px)}
.layer{position:absolute;top:0;left:0;height:100%;width:calc(100vw + 7100px)}

/* hero zone: exactly one screen. the wall proper starts after it. */
.hero-zone{position:absolute;left:0;top:0;width:100vw;height:100%;z-index:12}
.wall-zone{position:absolute;left:calc(100vw - 150px);top:0;width:7250px;height:100%;z-index:5}

/* about panel — readable content that sits after the play frames */
.about-zone{position:absolute;top:50%;transform:translateY(-50%);width:760px;
  display:flex;gap:38px;align-items:center;
  background:var(--paper);border-radius:4px;padding:44px 46px;z-index:6;
  box-shadow:0 2px 4px rgba(31,37,56,.14),0 12px 26px rgba(31,37,56,.11)}
.about-photo{flex:0 0 220px;height:280px;border-radius:4px;object-fit:cover;
  background:linear-gradient(135deg,#DAD6CC,#E6E3DC);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;letter-spacing:.04em;color:var(--muted);text-transform:uppercase}
.about-text{flex:1}
.about-zone h2{font-size:40px;line-height:1.06;font-weight:600;letter-spacing:-.02em}
.about-zone p{font-size:19px;line-height:29px;color:var(--slate);margin-top:16px}
.about-zone .about-tag{display:inline-block;margin-top:22px;font-size:14px;font-weight:500;
  padding:7px 14px;border-radius:999px;background:var(--pink);color:#fff}
.about-zone .about-tag{margin-right:12px}
.about-cta{display:inline-flex;align-items:center;gap:8px;margin-top:22px;
  font-size:15px;font-weight:600;text-decoration:none;color:var(--ink);
  background:var(--lime);padding:11px 20px;border-radius:999px;
  transition:transform 200ms cubic-bezier(.2,.7,.3,1),box-shadow 200ms cubic-bezier(.2,.7,.3,1)}
.about-cta span{transition:transform 200ms cubic-bezier(.2,.7,.3,1)}
.about-cta:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(143,212,28,.4)}
.about-cta:hover span{transform:translateX(3px)}
.about-write{margin-top:14px}
.about-write a{color:var(--lime-deep);font-weight:500;font-size:16px;text-decoration:none;
  border-bottom:1px solid transparent;transition:border-color 180ms ease}
.about-write a:hover{border-color:var(--lime-deep)}
/* "See more" at the end of the archive row — an underlined text link */
.wall-more{position:absolute;transform:translateY(-50%);z-index:6;
  display:inline-flex;align-items:center;gap:8px;white-space:nowrap;
  font-size:18px;font-weight:600;color:var(--lime-deep);
  text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:6px;
  transition:color 200ms ease}
.wall-more span{text-decoration:none;display:inline-block;transition:transform 200ms cubic-bezier(.2,.7,.3,1)}
.wall-more:hover span{transform:translateX(4px)}
.wall-more:focus-visible{outline:2px solid var(--lime-deep);outline-offset:4px}
body.lights-off .wall-more{color:var(--lime)}
.about-zone .placeholder-note{font-size:13px;color:var(--muted);font-style:italic;margin-top:20px}

/* ---------- NAME ALONG THE BOTTOM ---------- */
.bigname{
  position:absolute;left:5vw;bottom:24px;width:90vw;
  color:var(--ink);pointer-events:none;user-select:none;
}
.bigname span{
  display:inline-block;white-space:nowrap;
  font-weight:700;letter-spacing:-.042em;line-height:.88;
  font-size:100px;                  /* script scales this to fill 90vw */
}

/* ---------- FRAMES ---------- */
.frame{
  position:absolute;background:var(--paper);
  border:1px solid rgba(31,37,56,.22);
  padding:14px 14px 12px;box-shadow:var(--rest);
  text-decoration:none;color:inherit;display:block;
  /* --ty staggers each frame around the viewport's vertical centre so the
     whole cluster stays centred at any window height */
  transform:translateY(calc(-50% + var(--ty,0px))) rotate(var(--rot,0deg));
  transition:transform 260ms cubic-bezier(.2,.7,.3,1), box-shadow 260ms ease;
}
.frame .art{display:block;background:var(--ink);position:relative;overflow:hidden}
.frame .art img,.frame .art video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.frame .art video{opacity:1}

.frame .cap{
  display:block;margin-top:10px;
  font-size:12px;line-height:16px;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;color:var(--muted);
}
/* the rest of the detail only appears when you look at it */
.frame .meta{
  display:grid;grid-template-rows:0fr;
  transition:grid-template-rows 260ms cubic-bezier(.2,.7,.3,1), opacity 200ms ease;
  opacity:0;
}
.frame:hover .meta{grid-template-rows:1fr;opacity:1}
.frame .meta > div{overflow:hidden;min-height:0}
.frame .meta .role{display:block;
  font-size:12px;line-height:16px;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--lime-deep);margin-top:6px}
.frame .meta .blurb{display:block;
  font-size:15px;line-height:21px;color:var(--ink);margin-top:7px;max-width:34ch}
.frame::before{content:'';position:absolute;left:50%;top:-18px;
  width:1px;height:18px;background:rgba(31,37,56,.2)}
.frame:hover{transform:translateY(calc(-50% + var(--ty,0px))) rotate(0deg) scale(1.04);box-shadow:var(--lift);z-index:20}
.frame.play:hover{transform:translateY(calc(-50% + var(--ty,0px))) rotate(0deg) scale(1.02)}
/* play frames are buttons (open a modal, not a page) — reset button chrome */
button.frame{font:inherit;text-align:left;-webkit-appearance:none;appearance:none;cursor:pointer}

/* ---------- STICKERS (draggable decals on the wall) ---------- */
.sticker{position:absolute;top:50%;pointer-events:none;z-index:8;
  transform:translateY(calc(-50% + var(--ty,0px))) rotate(var(--rot,0deg));
  display:block;height:auto;user-select:none;-webkit-user-drag:none;
  filter:drop-shadow(0 4px 10px rgba(31,37,56,.18))}

/* ---------- PLAY MODAL ---------- */
.play-modal{position:fixed;inset:0;z-index:200;display:none;
  align-items:center;justify-content:center;padding:32px;
  background:rgba(240,238,233,.5);
  -webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  opacity:0;transition:opacity 240ms ease}
.play-modal.open{display:flex}
.play-modal.visible{opacity:1}
.pm-card{position:relative;width:80vw;height:80vh;max-width:1500px;
  display:flex;flex-direction:column;background:var(--paper);border-radius:16px;
  overflow:hidden;box-shadow:0 24px 70px rgba(31,37,56,.28)}
.pm-media{position:relative;flex:1;min-height:0;background:#dcd8cf;overflow:hidden}
.pm-media img,.pm-media video{position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;border:0;display:block}
.pm-media iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
.pm-media .ph{position:absolute;inset:0;display:flex;align-items:center;
  justify-content:center;padding:0 24px;text-align:center;
  color:var(--muted);font-size:12px;line-height:16px;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase}
/* cover shows instantly while the embed loads, then fades to reveal it */
.pm-cover{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  z-index:1;transition:opacity 400ms ease}
.pm-loading{position:absolute;z-index:2;left:0;right:0;bottom:22px;
  display:flex;gap:10px;align-items:center;justify-content:center;
  color:#fff;font-size:11px;letter-spacing:.08em;text-transform:uppercase;
  text-shadow:0 1px 5px rgba(0,0,0,.55);transition:opacity 300ms ease}
.pm-spin{width:15px;height:15px;border:2px solid rgba(255,255,255,.4);
  border-top-color:#fff;border-radius:50%;animation:pmspin .8s linear infinite}
@keyframes pmspin{to{transform:rotate(360deg)}}
.pm-media.loaded .pm-cover,.pm-media.loaded .pm-loading{opacity:0;pointer-events:none}

/* info strip below the media — light, flexible per project */
.pm-info{background:var(--paper);border-top:1px solid rgba(31,37,56,.12);
  padding:22px 28px 24px;display:flex;flex-direction:column;gap:16px}
.pm-about{font-size:15px;line-height:24px;color:var(--slate);max-width:74ch}
/* metadata on the left, the Open button pinned to the right */
.pm-row{display:flex;justify-content:space-between;align-items:flex-start;gap:32px}
.pm-meta{flex:1;display:flex;flex-wrap:wrap;gap:18px 40px}
.pm-meta > div{min-width:120px;max-width:360px}
.pm-label{font-size:11px;line-height:14px;letter-spacing:.08em;text-transform:uppercase;
  color:var(--muted);margin-bottom:8px}
.pm-val{font-size:14px;line-height:22px;color:var(--ink)}
/* the one accent: lime = "this is clickable" */
.pm-open{flex:none;white-space:nowrap;font-size:13px;font-weight:500;letter-spacing:.02em;
  color:var(--lime-deep);text-decoration:none;border:1.5px solid var(--lime-deep);
  border-radius:999px;padding:8px 16px;
  transition:background 160ms ease, color 160ms ease}
.pm-open:hover{background:var(--lime);border-color:var(--lime);color:var(--ink)}
.pm-close{position:absolute;top:16px;right:18px;z-index:3;width:38px;height:38px;
  border:0;border-radius:50%;background:rgba(255,255,255,.86);color:var(--ink);
  font-size:20px;line-height:1;cursor:pointer;display:flex;align-items:center;
  justify-content:center;box-shadow:0 2px 8px rgba(31,37,56,.2);
  transition:background 160ms ease}
.pm-close:hover{background:#fff}

@media (max-width:720px){
  .pm-row{flex-direction:column;align-items:flex-start;gap:16px}
  .pm-meta{gap:16px 24px}
}

/* ---------- CONTACT CARD ---------- */
.card{position:absolute;width:min(520px, calc(92vw - 300px));z-index:14}
.cardsvg{width:100%;height:auto;display:block}
/* the artwork itself is clickable — links wrap the actual glyph paths */
.cardsvg a.svglink{cursor:pointer}
.cardsvg a.svglink path{transition:fill 160ms ease, opacity 160ms ease}
.cardsvg a.svglink:hover path{fill:#4F7A12}
.cardsvg a.svglink:focus-visible{outline:2px solid #4F7A12;outline-offset:2px}
.card .stack{position:relative}
.sheet{position:absolute;inset:0}
.sheet.g{background:var(--lime-deep);transform:rotate(-5.4deg) translate(-13px,9px)}
.sheet.p{background:var(--pink);transform:rotate(4.1deg) translate(6px,-13px)}
.front{position:relative;background:var(--paper);border:7px solid var(--lime);
  padding:48px 42px 26px;box-shadow:var(--rest)}
.tape{position:absolute;top:-28px;left:50%;width:206px;
  transform:translateX(-46%) rotate(-1.4deg);z-index:3;pointer-events:none;
  filter:drop-shadow(0 2px 3px rgba(31,37,56,.13))}
.kicker{font-size:15px;letter-spacing:.045em;text-transform:uppercase}
.socials{display:flex;gap:16px;margin-top:14px}
.socials a{color:var(--ink);display:inline-flex;transition:color 160ms,transform 160ms}
.socials a:hover{color:var(--lime-deep);transform:translateY(-2px)}
.socials svg{width:25px;height:25px}
.lnk{display:block;width:fit-content;margin-top:19px;font-size:18px;color:var(--ink);
  text-decoration:none;border-bottom:1.5px solid var(--ink);padding-bottom:1px;
  transition:color 160ms,border-color 160ms}
.lnk:hover{color:var(--lime-deep);border-color:var(--lime-deep)}
.telugu{margin:22px 0 0 auto;width:76%}
.telugu img{width:100%;display:block}

.sectionlabel{position:absolute;font-size:12px;letter-spacing:.08em;
  text-transform:uppercase;color:var(--muted)}
/* nothing sits in the nav's corner: frames start below y=118 and the
   wall-zone begins one full screen in, so the nav never overlaps art */

/* ---------- FIXED UI (homepage only — scoped so it can't touch the
   case-study <nav> index) ---------- */
.room-page nav{position:fixed;top:38px;left:5vw;z-index:60;
    display:flex;flex-direction:column;align-items:flex-start;gap:26px}

.mark{width:66px;height:66px;color:var(--lime);display:block}
.mark svg{width:100%;height:100%;display:block}
.links{display:flex;flex-direction:column;align-items:flex-start;gap:6px}
.links a{
  font-size:21px;font-weight:500;letter-spacing:.04em;text-transform:uppercase;
  color:var(--ink);text-decoration:none;padding:9px 21px;border-radius:999px;
  background:transparent;
  transition:background 200ms ease, color 200ms ease,
             opacity 240ms ease, transform 240ms cubic-bezier(.2,.7,.3,1);
}
.links a:hover{background:var(--paper)}
.links a[aria-current="page"]{background:var(--lime)}

/* once you leave the hero the links tuck away — the mark stays */
.room-page nav.away .links a{opacity:0;transform:translateX(-14px);pointer-events:none}
/* hovering the mark (or the nav column) brings them back, each one solid
   so it stays legible over whatever is behind it */
.room-page nav.away:hover .links a{
  opacity:1;transform:none;pointer-events:auto;
  background:var(--wall);
  box-shadow:0 1px 2px rgba(31,37,56,.10), 0 6px 16px rgba(31,37,56,.08);
}
.room-page nav.away:hover .links a:hover{background:var(--paper)}
.room-page nav.away:hover .links a[aria-current="page"]{background:var(--lime)}
/* stagger so they unfold rather than snap */
.room-page nav.away:hover .links a:nth-child(1){transition-delay:0ms}
.room-page nav.away:hover .links a:nth-child(2){transition-delay:40ms}
.room-page nav.away:hover .links a:nth-child(3){transition-delay:80ms}
.room-page nav.away:hover .links a:nth-child(4){transition-delay:120ms}
/* generous invisible hit area so it's easy to summon */
.room-page nav::after{content:'';position:absolute;left:-24px;top:-24px;
  width:calc(100% + 120px);height:calc(100% + 48px);z-index:-1}

/* brand name + hamburger: only used by the mobile header (≤760), hidden here */
.navname,.navtoggle{display:none}
.navname{font-size:20px;font-weight:700;letter-spacing:-.01em;
  color:var(--ink);text-decoration:none}
.navtoggle{width:42px;height:42px;padding:9px;border:0;background:transparent;
  cursor:pointer;flex-direction:column;justify-content:center;gap:5px;
  align-items:stretch;-webkit-appearance:none;appearance:none}
.navtoggle span{display:block;height:2px;background:var(--ink);border-radius:2px;
  transition:transform 200ms ease, opacity 200ms ease}
.room-page nav.open .navtoggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.room-page nav.open .navtoggle span:nth-child(2){opacity:0}
.room-page nav.open .navtoggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* tagline sits tight above the name — one block, not two floating things */
.hero{position:fixed;left:5vw;
  bottom:calc(24px + var(--name-h,180px) + 28px);z-index:40;
  transition:opacity 340ms ease, transform 340ms ease}
.hero .l1{font-size:clamp(26px,2.9vw,42px);font-weight:700;letter-spacing:-.028em;line-height:1.14}
.hero .l2{font-size:clamp(22px,2.45vw,36px);font-weight:400;letter-spacing:-.022em;line-height:1.16}
/* development note: hidden on desktop (the scroll hint covers it),
   shown under the tagline in the stacked view at caption size */
.hero .l3{display:none;font-size:16px;line-height:24px;color:var(--muted);margin-top:12px}
.hero.gone{opacity:0;transform:translateX(-40px);pointer-events:none}

/* sits in the gap between the card and the name, right-aligned under the card */
.scrollhint{position:fixed;right:5vw;
  bottom:calc(24px + var(--name-h,180px) + 46px);z-index:60;
  display:flex;align-items:center;gap:9px;font-size:17px;color:var(--muted);
  transition:opacity 300ms ease, gap 200ms ease}
.scrollhint:hover{gap:14px}
.scrollhint.gone{opacity:0}

/* "still under development" — highlight marker */
.wip-mark{background:var(--lime);color:var(--ink);
  padding:.06em .36em;border-radius:3px;font-weight:500;
  -webkit-box-decoration-break:clone;box-decoration-break:clone}

/* ============================================================
   CASE STUDY — vertical scroll template
   Used by whisp.html, mirae.html, composture.html
   ============================================================ */
body.case-page{overflow-x:hidden}

/* ----- Overall layout: sticky left column + wide main column ----- */
.case-layout{max-width:1720px;margin:0 auto;padding:56px 48px 160px;
  display:grid;grid-template-columns:220px 1fr;gap:80px;align-items:start}
.case-main{min-width:0}   /* lets the main column shrink instead of overflowing */

/* left column — back link, case-study label + name, section index.
   The whole column pins so the index follows you down the page. */
.case-side{position:sticky;top:40px;display:flex;flex-direction:column;gap:34px}

/* "← Back to projects" — Label style */
.back-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;line-height:16px;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--ink);text-decoration:none;
  transition:color 160ms ease, gap 160ms ease;
}
.back-link:hover{color:var(--lime-deep);gap:12px}
.back-link .arrow{transition:transform 160ms ease}
.back-link:hover .arrow{transform:translateX(-3px)}

/* "Case study / Whisp" label block under the back link */
.case-label{font-size:12px;line-height:16px;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--muted)}
.case-side-name{font-size:16px;line-height:24px;color:var(--ink);margin-top:4px}

/* ----- Title ----- */
.case-title{font-size:clamp(56px,9vw,120px);line-height:1;font-weight:600;
  letter-spacing:-.03em;color:var(--ink)}

/* ----- Cover: 16:9, full main-column width, rounded, no border ----- */
.case-cover{position:relative;width:100%;margin-top:40px;aspect-ratio:16/9;
  background:var(--ink);border-radius:20px;overflow:hidden}
.case-cover img,.case-cover video{position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;display:block}
.case-cover .ph{position:absolute;inset:0;display:flex;align-items:center;
  justify-content:center;padding:0 24px;text-align:center;
  font-size:12px;line-height:16px;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--wall);opacity:.72}

/* ----- Metadata row — four columns directly under the title ----- */
.case-meta{
  display:flex;flex-wrap:wrap;gap:28px 32px;
  margin-top:40px;padding:24px 0;
  border-top:1px solid rgba(31,37,56,.16);
  border-bottom:1px solid rgba(31,37,56,.16);
}
.case-meta > div{flex:1 1 160px}   /* equal columns; wrap when they get tight */
.case-meta dt{font-size:12px;line-height:16px;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--muted)}
.case-meta dd{font-size:16px;line-height:24px;color:var(--ink);margin-top:8px}
.case-meta dd.stacked{display:flex;flex-direction:column}
.case-meta dd.stacked span{display:block}

/* ----- Sections start below the cover ----- */
.case-sections{margin-top:72px}

/* section index (lives in the sticky left column) */
.case-index ol{list-style:none}
.case-index li{position:relative;margin-bottom:14px}
.case-index a{
  font-size:16px;line-height:24px;text-decoration:none;
  color:var(--muted);transition:color 160ms ease;
}
.case-index a:hover{color:var(--slate)}
/* active item takes the lime accent */
.case-index a.active{color:var(--lime-deep);font-weight:600}
.case-index a.active::before{content:'';position:absolute;left:-16px;top:9px;
  width:7px;height:7px;border-radius:50%;background:var(--lime)}

/* the sections */
.case-section{margin-bottom:96px;scroll-margin-top:120px}
.case-section:last-child{margin-bottom:0}
.case-section h2{font-size:32px;line-height:40px;font-weight:500;
  letter-spacing:-.01em;color:var(--ink)}
/* sub-heads inside a section — the longer sentence-style headings,
   sized between Subheader and Body */
.case-section h3{font-size:24px;line-height:32px;font-weight:600;
  letter-spacing:-.01em;color:var(--ink);margin-top:48px}
.case-section p{font-size:20px;line-height:30px;color:var(--ink);
  margin-top:12px}
.case-section h2 + p{margin-top:12px}
.case-section h3 + p{margin-top:12px}
.case-section p + p{margin-top:16px}
.case-section strong{font-weight:600}
/* the opening line of a section, set a touch heavier as a lead */
.case-section .lead{font-size:24px;line-height:34px;color:var(--ink);
  font-weight:400}

/* ----- pull quotes: non-clickable emphasis, the one place pink appears ----- */
/* a pull quote living inside a section */
.case-section p.pull{font-size:32px;line-height:42px;font-weight:600;
  letter-spacing:-.018em;color:var(--pink-deep);margin:0 0 8px}

/* ----- media ----- */
/* media fills the wide main column — already wider than the capped text,
   so it carries more presence than body copy without any breakout trick */
.case-figure,.media-row{width:100%}
/* single figure sits full-width in the column, 16:9, rounded, no border */
.case-media{margin-top:32px;width:100%;aspect-ratio:16/9;
  background:var(--paper);
  border-radius:20px;overflow:hidden;position:relative}
.case-media img,.case-media video{position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;display:block}
.case-media iframe{position:absolute;inset:0;width:100%;height:100%;
  border:0;display:block}
.case-media .ph{position:absolute;inset:0;display:flex;align-items:center;
  justify-content:center;padding:0 16px;text-align:center;
  font-size:12px;line-height:16px;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
/* caption sits under a figure — Caption style */
.case-figure{margin-top:32px}
.case-figure .case-media{margin-top:0}
.case-figure figcaption{font-size:20px;line-height:30px;color:var(--ink);
  margin-top:12px}
/* ----- stat block (Impact) — numbers stay ink; no accent colour here ----- */
.case-stats{width:100%;
  display:grid;grid-template-columns:repeat(4,1fr);gap:28px 32px;
  margin-top:40px;padding-top:32px;
  border-top:1px solid rgba(31,37,56,.16)}
.case-stats .num{font-size:clamp(34px,4.2vw,50px);line-height:1;font-weight:600;
  letter-spacing:-.02em;color:var(--ink)}
.case-stats .lbl{font-size:16px;line-height:22px;color:var(--muted);margin-top:12px}

/* full-width media, stacked one after another */
.media-stack{display:flex;flex-direction:column;gap:40px;margin-top:32px}
.media-stack .case-figure{margin-top:0}

/* text on one side, media on the other */
.case-split{display:grid;grid-template-columns:1fr 1fr;gap:48px;
  align-items:start;margin-top:48px}
.case-split .split-text h3{margin-top:0}
.case-split .split-text p:first-child{margin-top:0}
.case-split .case-figure{margin-top:0}

/* a standalone embedded HTML graphic (e.g. the survey) — full width, grows to
   its own height (sized by script), not wrapped in a media frame */
.survey-frame{width:100%;border:0;display:block;height:360px;margin-top:32px;
  border-radius:20px;background:var(--paper)}

/* two-up / three-up rows of media */
.media-row{display:grid;gap:20px;margin-top:32px}
.media-row.two{grid-template-columns:repeat(2,1fr)}
.media-row.three{grid-template-columns:repeat(3,1fr)}
.media-row .case-figure,.media-row .case-media{margin-top:0}

/* ----- survey charts (Overview) — embedded from their own html files,
   side by side on wide screens, auto-sized to content by script ----- */
.survey-embed{margin-top:32px;display:grid;grid-template-columns:1fr 1fr;
  gap:24px;align-items:start}
.survey-embed .chart-frame{width:100%;border:0;display:block;
  height:520px;background:var(--wall)}

/* placeholder-content marker */
.placeholder{color:var(--pink-deep);font-style:italic}

/* ----- lightbox: tap an image to view it full-screen ----- */
.case-media img{cursor:zoom-in}
.lightbox{position:fixed;inset:0;z-index:200;display:none;
  align-items:center;justify-content:center;padding:24px;
  background:rgba(31,37,56,.94);opacity:0;transition:opacity 200ms ease}
.lightbox.open{display:flex}
.lightbox.visible{opacity:1}
.lightbox img{max-width:min(1200px,92vw);max-height:90vh;width:auto;height:auto;
  object-fit:contain;border-radius:12px;box-shadow:var(--lift)}
.lightbox-close{position:absolute;top:18px;right:20px;width:44px;height:44px;
  border:0;border-radius:50%;background:rgba(240,238,233,.14);color:var(--wall);
  font-size:24px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 160ms ease}
.lightbox-close:hover{background:rgba(240,238,233,.28)}
body.lb-open{overflow:hidden}

/* ============================================================
   RESPONSIVE — one set of breakpoints for the whole site
     Tablet ≤1000  ·  Phone ≤760  ·  Narrow phone ≤460
   Each block holds both the homepage rules (the horizontal room
   unrolls into a vertical stack — see the stacked() guards in
   index.html) and the case-study rules (two-column layout
   collapses). Selectors don't overlap between the two.
   ============================================================ */

/* ---------- Tablet ≤1000 ---------- */
@media (max-width:1000px){
  /* case study: keep the sidebar, tighten it, scale the title down */
  .case-layout{grid-template-columns:168px 1fr;gap:44px}
  .case-title{font-size:clamp(48px,8vw,88px)}
  .case-index a{font-size:15px}
  .survey-embed{grid-template-columns:1fr}   /* stack charts — not enough width */

  /* homepage: let the page scroll vertically again, and lay a faint
     dotted texture on the wall behind everything */
  body.room-page{overflow:auto;display:flex;flex-direction:column;
    background-image:radial-gradient(rgba(31,37,56,.09) 1px, transparent 1.4px);
    background-size:24px 24px}

  /* unpin the room and everything inside it */
  .room{position:static;overflow:visible;cursor:auto;order:3}
  .track,.layer{position:static;width:auto;height:auto}
  .hero-zone,.wall-zone{position:static;width:auto;height:auto;z-index:auto}

  /* ---- sticky header bar: brand name left, hamburger right ---- */
  .room-page nav{position:sticky;top:0;z-index:60;order:1;
    flex-direction:row;flex-wrap:nowrap;justify-content:space-between;
    align-items:center;gap:0;padding:16px 28px;background:var(--wall);
    border-bottom:1px solid rgba(31,37,56,.12)}
  .room-page nav .mark{display:none}
  .room-page nav .navname{display:block}
  .room-page nav .navtoggle{display:flex}
  .room-page nav::after{content:none}

  /* links become a dropdown under the bar, toggled by the hamburger */
  .links{position:absolute;top:100%;right:0;min-width:210px;display:none;
    flex-direction:column;align-items:stretch;gap:2px;padding:8px;
    background:var(--wall);border:1px solid rgba(31,37,56,.12);
    border-radius:0 0 12px 12px;box-shadow:var(--rest)}
  .room-page nav.open .links{display:flex}
  .room-page nav.away .links a{opacity:1;transform:none;pointer-events:auto}
  .links a{font-size:17px;font-weight:500;padding:12px 16px;border-radius:10px;
    background:transparent}
  .links a[aria-current="page"]{background:var(--lime)}

  /* ---- hero: highlighted tagline, no giant name ---- */
  .bigname{display:none}
  .hero{position:static;order:2;padding:34px 28px 0}
  .hero.gone{opacity:1;transform:none;pointer-events:auto}
  .hero .l1{display:inline-block;background:var(--pink);color:#fff;
    padding:3px 10px;font-weight:700;line-height:1.12;letter-spacing:-.02em;
    font-size:clamp(26px,4.4vw,40px)}
  .hero .l2{display:block;margin-top:12px;color:var(--ink);
    line-height:1.16;letter-spacing:-.02em;font-size:clamp(24px,3.9vw,34px)}
  .hero .l3{display:block}

  /* ---- contact card in normal flow, filling the column ---- */
  .hero-zone{padding:26px 28px 0}
  .card{position:static;width:100%;max-width:none;margin:0}

  /* ---- work: frames in a 2-up grid, descriptions shown ---- */
  .sticker,.scrollhint{display:none}
  .wall-zone{display:grid;grid-template-columns:repeat(2,1fr);
    gap:40px 28px;align-items:start;padding:44px 28px 90px}
  .sectionlabel{position:static;display:block;grid-column:1/-1;
    font-size:14px;letter-spacing:.12em;margin:0}
  .frame{position:static;transform:none;width:auto;margin:0}
  .frame:hover{transform:scale(1.02)}
  .frame::before{display:none}
  .frame .art{width:100%!important;height:auto!important;aspect-ratio:16/9}
  .wall-more{position:static;transform:none;grid-column:1/-1;justify-self:start}
  /* about panel flows full-width at the end of the stack */
  .about-zone{position:static;transform:none;width:auto;grid-column:1/-1;
    left:auto!important;margin-top:8px;padding:30px 26px;
    flex-direction:column;align-items:flex-start;gap:24px}
  .about-photo{flex:0 0 auto;width:160px;height:200px}
  .about-zone h2{font-size:clamp(30px,6vw,40px)}
  .about-zone p{font-size:18px}
  .frame .cap{font-size:13px;margin-top:14px}
  /* reveal the description under each frame (there's no hover on touch) */
  .frame .meta{grid-template-rows:1fr;opacity:1}
  .frame .meta .role{display:none}
  .frame .meta .blurb{font-size:16px;line-height:23px;max-width:none;
    color:var(--muted);margin-top:6px}
}

/* ---------- Phone ≤760 ---------- */
@media (max-width:760px){
  /* case study: everything stacks into one column, index hidden */
  .case-layout{grid-template-columns:1fr;gap:28px;padding:32px 24px 100px}
  .case-side{position:static;top:auto;gap:18px}
  .case-title{font-size:clamp(44px,12vw,72px)}
  .case-meta{gap:22px 24px;margin-top:32px}
  .case-meta > div{flex-basis:40%}   /* two per row */
  .case-sections{margin-top:48px}
  .case-index{display:none}
  .case-section{margin-bottom:72px}
  .case-section h2{font-size:28px;line-height:36px}
  .case-section h3{font-size:22px;line-height:30px}
  .case-section .lead{font-size:22px;line-height:32px}
  .case-section p.pull{font-size:26px;line-height:34px}
  .media-stack{gap:28px}
  .media-row.two,.media-row.three{grid-template-columns:1fr}
  .case-stats{grid-template-columns:repeat(2,1fr);gap:26px 24px}
  .case-split{grid-template-columns:1fr;gap:24px}   /* stack text over media */

  /* homepage: same stacked design, one column and tighter gutters */
  .room-page nav{padding:14px 22px}
  .hero{padding:30px 22px 0}
  .hero .l1{font-size:clamp(25px,7vw,33px)}
  .hero .l2{font-size:clamp(22px,6vw,30px)}
  .hero-zone{padding:24px 22px 0}
  .card{max-width:none}
  .wall-zone{grid-template-columns:1fr;gap:30px;padding:38px 22px 90px}
  .frame{padding:12px 12px 14px}
}

/* ---------- Narrow phone ≤460 (case study only) ---------- */
@media (max-width:460px){
  .case-meta{gap:20px}
  .case-meta > div{flex-basis:100%}   /* single column */
  .case-stats{grid-template-columns:1fr;gap:22px}
  .case-section h2{font-size:26px;line-height:34px}
}

/* ----- motion preference ----- */
@media (prefers-reduced-motion:reduce){
  *{transition-duration:0ms!important;animation-duration:0ms!important}
}

/* ---------- Logo curtain (the one page transition, on every page) ----------
   On load, the lime panel starts covering and lifts away (reveal).
   On an internal link click, JS sweeps it up from below to cover, then navigates —
   so the motion is one continuous upward wipe from page to page. */
.curtain{position:fixed;inset:0;z-index:9500;background:var(--lime);
  display:flex;align-items:center;justify-content:center;
  transform:translateY(0);pointer-events:none;will-change:transform;
  animation:curtain-lift 460ms cubic-bezier(.76,0,.24,1) forwards}
.curtain svg{width:118px;overflow:visible}
.curtain path{fill:none;stroke:var(--ink);stroke-width:48;stroke-linecap:round;stroke-linejoin:round}
@keyframes curtain-lift{ from{transform:translateY(0)} to{transform:translateY(-101%)} }
/* reduced motion: no wipe, panel starts already lifted */
@media (prefers-reduced-motion:reduce){
  .curtain{animation:none;transform:translateY(-101%)}
}

/* ---------- Wall tools: gallery spotlight + lights-off (homepage) ----------
   The spotlight is a soft light that follows the cursor. Lights-off turns the
   whole wall dark and the spotlight into a torch you sweep to find the work. */
.spotlight{position:fixed;inset:0;z-index:8;pointer-events:none;opacity:0;
  transition:opacity 500ms ease;
  background:radial-gradient(circle 340px at var(--mx,50%) var(--my,50%),
    rgba(31,37,56,0) 0%, rgba(31,37,56,0) 46%, rgba(31,37,56,.13) 100%)}
body.spot-on .spotlight{opacity:1}

body.lights-off{background:#12151F}
body.lights-off .room{background:#12151F}
body.lights-off .spotlight{opacity:1;
  background:radial-gradient(circle 300px at var(--mx,50%) var(--my,50%),
    rgba(9,11,18,0) 0%, rgba(9,11,18,0) 22%, rgba(9,11,18,.86) 100%)}
body.lights-off .sectionlabel{color:#8B93A6}
body.lights-off .about-zone{background:#1E2233}
body.lights-off .about-zone h2{color:#F0EEE9}
body.lights-off .about-zone p{color:#C7C2B8}
body.lights-off .links a,
body.lights-off .navname{color:#F0EEE9}
body.lights-off .hero .l1,body.lights-off .hero .l2{color:#F0EEE9}
body.lights-off .bigname span{color:#2A3040}

/* toolbar, bottom-right */
.walltools{position:fixed;right:5vw;bottom:28px;z-index:62;display:flex;gap:8px}
.walltools button{font:inherit;font-size:13px;font-weight:500;cursor:pointer;
  display:inline-flex;align-items:center;gap:7px;padding:9px 15px;border-radius:999px;
  border:1px solid rgba(31,37,56,.16);background:var(--wall);color:var(--slate);
  transition:transform 200ms cubic-bezier(.2,.7,.3,1),background 200ms,color 200ms,border-color 200ms}
.walltools button:hover{border-color:rgba(31,37,56,.34);transform:translateY(-1px)}
.walltools button.on{background:var(--ink);color:#fff;border-color:var(--ink)}
body.lights-off .walltools button{background:#1E2233;color:#C7C2B8;border-color:rgba(255,255,255,.18)}
body.lights-off .walltools button.on{background:var(--lime);color:var(--ink);border-color:var(--lime)}
.tool-clear,.tool-save,.tool-status{display:none!important}
body.doodle-on .tool-clear,body.doodle-on .tool-save{display:inline-flex!important}
body.doodle-on .tool-status:not(:empty){display:inline-flex!important}
.walltools .tool-save{background:var(--lime);color:var(--ink);border-color:var(--lime)}
.tool-status{align-items:center;font-size:13px;color:var(--muted);padding:0 6px}
body.lights-off .tool-status{color:#C7C2B8}
@media (max-width:900px){ .walltools,.spotlight,.doodle-layer{display:none} }

/* ---------- Wall doodles ---------- */
.doodle-layer{position:absolute;top:0;left:0;height:100%;
  width:calc(100vw + 7100px);z-index:7;pointer-events:none;overflow:visible}
.doodle-layer path{fill:none;stroke:var(--pink);stroke-width:6;
  stroke-linecap:round;stroke-linejoin:round}
body.doodle-on .doodle-layer{pointer-events:auto;z-index:30}
body.doodle-on .room{cursor:crosshair}
body.doodle-on.lights-off .doodle-layer path{stroke:#FF66B2}

/* ---------- Nudge-able frames ---------- */
.frame.nudging{transition:none!important;z-index:30!important}

/* ---------- Smooth anchor scrolling (section-index jump links) ---------- */
@media (prefers-reduced-motion:no-preference){
  html{scroll-behavior:smooth}
}
.case-section{scroll-margin-top:40px}

/* ---------- Doodle wall page ---------- */
.dw-wrap{max-width:1120px;margin:0 auto;padding:64px 28px 120px}
.dw-wrap .back-link{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;color:var(--muted);text-decoration:none;margin-bottom:48px}
.dw-wrap .back-link:hover{color:var(--ink)}
.dw-wrap .label{font-size:12px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.dw-wrap h1{font-size:clamp(44px,8vw,80px);line-height:1.02;font-weight:600;letter-spacing:-.03em;margin-top:8px}
.dw-wrap .deck{font-size:20px;line-height:30px;color:var(--slate);margin-top:12px;max-width:560px}
.dw-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:28px;margin-top:48px}
.dw-card{aspect-ratio:1;background:var(--paper);border:1px solid rgba(31,37,56,.14);border-radius:4px;
  box-shadow:var(--rest);display:flex;align-items:center;justify-content:center;padding:24px;
  transition:transform 260ms cubic-bezier(.2,.7,.3,1),box-shadow 260ms ease}
.dw-card:hover{transform:translateY(-4px) rotate(-1.2deg);box-shadow:var(--lift)}
.dw-card.dark{background:#12151F;border-color:rgba(255,255,255,.12)}
.dw-card svg{width:100%;height:100%;display:block}
.dw-card{cursor:zoom-in}
/* tap/click a doodle to see it big */
.dw-lightbox{position:fixed;inset:0;z-index:9600;display:none;align-items:center;justify-content:center;
  background:rgba(31,37,56,.55);padding:6vw;cursor:zoom-out}
.dw-lightbox.open{display:flex}
.dw-big{width:min(84vw,600px);max-height:84vh;aspect-ratio:1;background:var(--paper);border-radius:6px;
  box-shadow:var(--lift);display:flex;align-items:center;justify-content:center;padding:7%}
.dw-big.dark{background:#12151F}
.dw-big svg{width:100%;height:100%;display:block}
.dw-empty{margin-top:40px;font-size:19px;line-height:29px;color:var(--muted);max-width:520px}
.dw-more-row{display:flex;justify-content:center;margin-top:44px}
.dw-more{font:inherit;font-size:15px;font-weight:600;cursor:pointer;color:var(--ink);
  background:transparent;border:1px solid rgba(31,37,56,.24);border-radius:999px;padding:12px 26px;
  transition:transform 200ms cubic-bezier(.2,.7,.3,1),border-color 200ms,background 200ms}
.dw-more:hover{transform:translateY(-1px);border-color:var(--ink);background:var(--paper)}
.dw-more:disabled{opacity:.5;cursor:default}

/* ---------- More projects (end of each case study) ---------- */
.case-more{margin-top:96px;padding-top:40px;border-top:1px solid rgba(31,37,56,.16)}
.case-more > .lbl{font-size:12px;font-weight:500;letter-spacing:.06em;
  text-transform:uppercase;color:var(--muted)}
.case-more-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:20px}
.case-more-card{display:block;text-decoration:none;color:inherit;border-radius:4px;
  overflow:hidden;background:var(--paper);box-shadow:var(--rest);
  transition:transform 260ms cubic-bezier(.2,.7,.3,1),box-shadow 260ms ease}
.case-more-card:hover{transform:translateY(-4px);box-shadow:var(--lift)}
.case-more-card .thumb{aspect-ratio:16/9;overflow:hidden;background:var(--ink)}
.case-more-card .thumb img{width:100%;height:100%;object-fit:cover;display:block}
.case-more-card .body{padding:16px 18px 18px}
.case-more-card .nm{font-size:22px;font-weight:600;letter-spacing:-.01em}
.case-more-card .rl{font-size:14px;color:var(--muted);margin-top:4px}
@media (max-width:720px){ .case-more-grid{grid-template-columns:1fr} }

/* ---------- Scroll reveal (case study pages) ---------- */
.reveal{opacity:0;transform:translateY(20px);
  transition:opacity 640ms cubic-bezier(.2,.7,.3,1), transform 640ms cubic-bezier(.2,.7,.3,1)}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1!important;transform:none!important;transition:none!important}
}

/* ============================================================
   WALL 3D (homepage, desktop) — see js/wall3d.js
   Pieces are measured in the flat layout, then pinned to the
   vanishing point and placed with their own camera transform.
   Everything here only applies while body has .wall3d.
   ============================================================ */
body.wall3d .room{z-index:1}                         /* keeps the 3D pieces under nav, tools and tagline */
body.wall3d .hero-zone,body.wall3d .wall-zone{z-index:auto}
body.wall3d .w3d-piece{position:fixed!important;left:50%!important;top:48%!important;
  right:auto!important;bottom:auto!important;margin:0!important;
  transform-origin:0 0!important;will-change:transform,opacity;backface-visibility:hidden}
/* JS eases every move itself — CSS transitions on transform would lag behind it */
body.wall3d .frame.w3d-piece{transition:box-shadow 260ms ease!important}
body.wall3d .card.w3d-piece,body.wall3d .about-zone.w3d-piece,body.wall3d .bigname.w3d-piece,
body.wall3d .sectionlabel.w3d-piece,body.wall3d .wall-more.w3d-piece{transition:none!important}
body.wall3d .frame.w3d-focus{box-shadow:var(--lift)}
/* while the wall is being flattened and re-measured nothing may animate */
body.w3d-still .frame,body.w3d-still .card,body.w3d-still .about-zone,body.w3d-still .bigname,
body.w3d-still .sectionlabel,body.w3d-still .wall-more,body.w3d-still .hero{transition:none!important}

/* the wall slab — same paper, grain and dots as the flat page */
.w3d-wall{position:fixed;left:50%;top:48%;width:7000px;height:3400px;z-index:1;pointer-events:none;
  transform-origin:0 0;will-change:transform;
  background-color:var(--wall);background-image:var(--grain),var(--dots);background-size:200px 200px,26px 26px}
body.lights-off .w3d-wall{background:#12151F}

/* the shadow a lifted piece throws onto the wall */
/* feathered on all four sides with gradients (drawn once, no hard edges, no blur filter) */
.w3d-shadow{pointer-events:none;--sh:rgba(31,37,56,.15);
  background:linear-gradient(to right,transparent,var(--sh) 70px,var(--sh) calc(100% - 70px),transparent);
  -webkit-mask-image:linear-gradient(to bottom,transparent,#000 70px,#000 calc(100% - 70px),transparent);
  mask-image:linear-gradient(to bottom,transparent,#000 70px,#000 calc(100% - 70px),transparent)}
body.lights-off .w3d-shadow{--sh:rgba(0,0,0,.38)}

/* doodles lie on the wall; while drawing they come to the front to catch the pen */
body.wall3d .doodle-layer.w3d-piece{z-index:11}
body.wall3d.doodle-on .doodle-layer.w3d-piece{z-index:100}

/* dust */
.w3d-mote{pointer-events:none}
.w3d-mote i{display:block;width:5px;height:5px;border-radius:50%;background:rgba(31,37,56,.2);
  animation:w3d-drift var(--d,9s) ease-in-out infinite alternate}
body.lights-off .w3d-mote i{background:rgba(240,238,233,.3)}
@keyframes w3d-drift{to{transform:translate(var(--dx,20px),var(--dy,-60px))}}

/* lights-off torch: the same light as the flat page, but slid by the GPU instead of repainted */
body.wall3d .spotlight{display:none}
.w3d-torch{position:fixed;left:0;top:0;width:300vmax;height:300vmax;margin:-150vmax 0 0 -150vmax;
  z-index:8;pointer-events:none;will-change:transform;opacity:0;transition:opacity 500ms ease;
  background:radial-gradient(circle at 50% 50%,rgba(9,11,18,0) 0,rgba(9,11,18,0) 66px,rgba(9,11,18,.86) 300px)}
body.lights-off .w3d-torch{opacity:1}

/* film grain + vignette */
.w3d-grain{position:fixed;inset:-100px;z-index:9;pointer-events:none;background-image:var(--grain);
  background-size:220px 220px;opacity:.4;animation:w3d-grain 900ms steps(6) infinite}
@keyframes w3d-grain{0%{transform:translate(0,0)}20%{transform:translate(-38px,22px)}40%{transform:translate(26px,-40px)}
  60%{transform:translate(-18px,-12px)}80%{transform:translate(40px,30px)}100%{transform:translate(0,0)}}
.w3d-vignette{position:fixed;inset:0;z-index:9;pointer-events:none;
  background:radial-gradient(ellipse at 50% 48%,transparent 55%,rgba(31,37,56,.2) 100%)}
body.lights-off .w3d-vignette{background:radial-gradient(ellipse at 50% 48%,transparent 50%,rgba(0,0,0,.45) 100%)}

/* About panel on the desktop wall — 30% larger than the base sizes above.
   Tablet and phone keep their own stacked sizes. */
@media (min-width:1001px){
  .about-zone{width:988px;gap:49px;padding:57px 60px}
  .about-photo{flex:0 0 286px;height:364px}
  .about-zone h2{font-size:52px}
  .about-zone p{font-size:25px;line-height:38px;margin-top:21px}
  .about-write{margin-top:18px}
  .about-write a{font-size:21px}
  .about-zone .about-tag{font-size:18px;padding:9px 18px;margin-top:29px;margin-right:16px}
  .about-cta{font-size:19.5px;padding:14px 26px;gap:10px;margin-top:29px}
  .about-zone .placeholder-note{font-size:17px;margin-top:26px}
}
