/* Scéal — quiet editorial design system */
:root {
  --paper: #ffffff;
  --surface: #f5f5f7;
  --surface-deep: #eeeef1;
  --ink: #1d1d1f;
  --body: #626267;
  --muted: #717177;
  --line: #e5e5e9;
  --accent: #0066cc;
  --accent-light: #e9f2fc;
  --radius: 16px;
  --ease: cubic-bezier(.25,1,.5,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --page-width: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: #cce4ff; color: #16304a; }
button, input, select, textarea { font: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; width: 100%; max-width: 100%; height: auto; object-fit: cover; }
svg { flex-shrink: 0; }
p, h1, h2, h3, h4, figure { margin: 0; }
h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.12;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(36px, 5.1vw, 72px); }
h2 { font-size: clamp(28px, 3.4vw, 48px); }
h3 { font-size: 24px; letter-spacing: -.035em; }
p { color: var(--body); max-width: 65ch; }
.light h1, .light h2, .light h3, .light h4 { color: var(--ink); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
.container { width: min(var(--page-width), calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: 64px; }
.section-soft { background: var(--surface); }
.section-top { padding-top: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 24px;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }
.text-link svg, .button svg { width: 16px; height: 16px; transition: transform 250ms var(--spring); }
.text-link:hover svg, .button:hover svg { transform: translate(3px,-2px); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  transition: transform 250ms var(--spring), box-shadow 250ms var(--ease), background 250ms var(--ease);
}
.button:hover {
  transform: translateY(-3px);
  background: #333337;
  box-shadow: 0 4px 8px #1d1d1f0a, 0 12px 24px #1d1d1f12;
}
.button:active { transform: translateY(0) scale(.98); }
.button:disabled { opacity: .4; cursor: wait; transform: none; }
.button-primary { background: linear-gradient(115deg, #0077ed, #0066cc); }
.button-primary:hover { background: #005bb6; box-shadow: 0 4px 8px #0066cc15, 0 12px 24px #0066cc20; }
.button-quiet { background: var(--paper); color: var(--ink); border-color: var(--line); }
.button-quiet:hover { background: var(--surface); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.skip-link { position: fixed; top: 8px; left: 16px; z-index: 100; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: relative; z-index: 30; border-bottom: 1px solid var(--line); background: var(--paper); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 112px; gap: 8px; }
.header-contact { display: flex; align-items: center; gap: 24px; }
.header-email { display: inline-flex; align-items: center; min-height: 44px; font-size: clamp(11px, 3.5vw, 13px); color: var(--body); white-space: nowrap; }
.header-email:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.site-header .brand, .site-header .menu-toggle { flex-shrink: 0; }
.brand { display: inline-flex; align-items: baseline; font-family: "Manrope", sans-serif; font-weight: 750; font-size: 30px; letter-spacing: -.075em; line-height: 1; min-height: 44px; padding-top: 6px; }
.brand-dot { color: var(--accent); }
/* Display the uploaded artwork without the PNG's surrounding transparent space. */
.brand-image { align-items: center; padding-top: 0; }
.brand-logo { position: relative; display: block; width: 116px; height: 68px; overflow: hidden; }
.brand-logo img { position: absolute; left: -22px; top: -41px; width: 160px; height: 160px; max-width: none; object-fit: contain; }
.site-header .brand-logo { height: 92px; overflow: visible; }
.site-header .brand-logo img { left: 50%; top: 50%; width: 140px; height: 140px; transform: translate(-50%, -50%); }
.site-nav { display: none; }
.header-cta { display: none; }
.menu-toggle { display: grid; gap: 6px; align-content: center; justify-content: center; width: 48px; height: 48px; background: transparent; border: 1px solid var(--line); border-radius: 8px; }
.menu-toggle span { display: block; width: 20px; height: 1px; background: var(--ink); transition: transform 250ms var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.menu-open .site-nav {
  display: flex;
  position: fixed;
  inset: 113px 0 0;
  padding: 48px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  background: rgba(245,245,247,.97);
  backdrop-filter: blur(16px);
  z-index: 35;
}
.menu-open .site-nav a { font-family: "Manrope", sans-serif; font-size: 32px; letter-spacing: -.04em; min-height: 72px; border-bottom: 1px solid var(--line); padding: 12px 0; animation: menu-in 600ms var(--ease) both; }
.menu-open .site-nav a:nth-child(2) { animation-delay: 80ms; }
.menu-open .site-nav a:nth-child(3) { animation-delay: 160ms; }
.menu-open .site-nav a:nth-child(4) { animation-delay: 240ms; }
.menu-open .site-nav a[aria-current="page"] { color: var(--accent); }
@keyframes menu-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
/* Hero: an idea taking physical shape; all copy paints immediately. */
.hero { padding-top: 64px; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero h1 .title-line { display: block; }
.hero h1 .soft-line { color: #7b7b80; }
.hero .hero-kicker { display: flex; font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .1em; line-height: 1.5; text-transform: none; }
.hero-copy > p { font-size: 17px; max-width: 420px; margin-top: 24px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 32px; }
.hero-art {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.1;
  background: #e0d9ce url("images/storytelling-hero.webp") center / cover no-repeat;
  border-radius: 16px;
}
.hero-art::after { content: ""; position: absolute; inset: 0; border: 1px solid #1d1d1f04; border-radius: inherit; pointer-events: none; }
.art-note { position: absolute; bottom: 24px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 12px; border-radius: 8px; background: rgba(255,255,255,.9); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #4b515b; }
.art-note span:last-child { display: flex; gap: 4px; align-items: center; }
.art-note i { width: 2px; height: 8px; background: currentColor; }
.art-note i:nth-child(2) { height: 16px; }
.art-note i:nth-child(3) { height: 12px; }
.signal-orbit { display: none; }
.audience-strip { display: flex; flex-direction: column; gap: 24px; border-top: 1px solid var(--line); margin-top: 64px; padding-block: 32px; }
.audience-strip > p { font-size: 12px; }
.audience-names { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.audience-names a { font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 500; min-height: 44px; display: flex; align-items: center; gap: 8px; }
.audience-names svg { width: 18px; height: 18px; color: var(--muted); }
.audience-names a:hover { color: var(--accent); }
.section-heading { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.section-heading h2 { max-width: 600px; }
.section-heading > p { max-width: 370px; font-size: 16px; }
.section-heading .eyebrow { margin-bottom: 16px; }
/* The existing selector presents three complementary service pillars. */
.tabs { display: flex; padding: 4px; gap: 4px; background: var(--surface-deep); width: 100%; border-radius: 8px; margin-bottom: 32px; }
.tab { border: 0; background: transparent; flex: 1; white-space: nowrap; min-height: 48px; padding: 8px; border-radius: 6px; font-size: 12px; color: var(--body); font-weight: 500; transition: background 250ms var(--ease), box-shadow 250ms var(--ease), color 250ms var(--ease); }
.tab[aria-selected="true"], .filter[aria-pressed="true"] { background: var(--paper); color: var(--ink); box-shadow: 0 1px 3px #1d1d1f0a, 0 4px 8px #1d1d1f03; }
.tab:hover { color: var(--ink); }
.pillar-tabs { max-width: 100%; }
.pillar-tabs .tab { min-width: 0; white-space: normal; }
.service-bullets { list-style: none; margin: 0; }
.service-bullet { color: var(--accent); font-size: 24px; line-height: 1; }
[hidden] { display: none !important; }
.cap-panel { display: grid; grid-template-columns: 1fr; border-radius: 16px; background: var(--paper); }
.cap-visual { position: relative; margin: 12px; border-radius: 8px; overflow: hidden; min-height: 280px; }
.cap-visual img { height: 100%; aspect-ratio: 1.3; transition: transform 800ms var(--ease); }
.cap-visual:hover img { transform: scale(1.035); }
.cap-visual .image-label { position: absolute; bottom: 16px; left: 16px; right: 16px; padding: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border: 1px solid #ffffff80; border-radius: 8px; }
.image-label span { display: block; font-size: 11px; color: #626267; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.image-label strong { display: block; font-family: "Manrope", sans-serif; font-size: 18px; line-height: 1.4; letter-spacing: -.03em; font-weight: 600; color: #1d1d1f; }
.cap-services { display: grid; grid-template-columns: 1fr; padding: 8px 24px; }
.service-item { display: flex; flex-direction: column; padding: 24px 0; position: relative; border-bottom: 1px solid var(--line); transition: transform 400ms var(--spring), background 400ms var(--ease), box-shadow 400ms var(--ease); }
.service-item:last-child { border: 0; }
.service-item .service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.service-top svg { width: 24px; height: 24px; stroke-width: 1.4; }
.service-number { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.service-item h3, .service-item h4 { font-size: 19px; letter-spacing: -.03em; margin-bottom: 8px; }
.service-item p { font-size: 14px; line-height: 1.65; max-width: 32ch; }
.service-item::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 32px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 400ms var(--ease); }
.service-item:hover::after { transform: scaleX(1); }
.service-item:hover { transform: translateY(-8px); }
.service-item:nth-child(2n):hover { transform: translateY(-10px); }
/* Full pillar narratives retain the existing image-and-copy layout. */
.pillar-content { min-width: 0; padding: 24px; }
.pillar-summary h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.25; margin-bottom: 16px; }
.pillar-summary p { font-size: 16px; line-height: 1.65; max-width: 65ch; }
.pillar-content .pillar-services { padding: 0; margin-top: 24px; }
.pillar-services .service-item { padding-block: 24px; }
.pillar-services .service-top { margin-bottom: 12px; }
.pillar-services .service-item h4 { margin-bottom: 0; font-size: 17px; line-height: 1.5; }
@media (min-width: 768px) {
  .pillar-content { padding: 32px; }
  .pillar-tabs .tab { max-width: 240px; }
}
.cap-bottom { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cap-bottom p { font-size: 13px; }
/* About Scéal: an editorial reading column within the existing visual system. */
.about-layout { display: grid; gap: 32px; }
.about-heading h2 { max-width: 14ch; }
.about-copy { min-width: 0; }
.about-copy > p + p { margin-top: 24px; }
.about-copy p { max-width: 70ch; line-height: 1.7; }
.about-pillars { display: grid; gap: 16px; margin-block: 24px; padding-left: 24px; }
.about-pillars li::marker { color: var(--accent); }
.about-pillars strong { color: var(--ink); font-weight: 600; }
.about-copy .about-statement { font-family: "Manrope", sans-serif; font-size: 22px; font-weight: 600; line-height: 1.4; letter-spacing: -.03em; color: var(--ink); margin-block: 32px 24px; }
.about-copy > h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.25; margin-block: 48px 24px; }
.about-reasons { list-style: none; margin: 0; padding: 0; }
.about-reasons li { display: grid; gap: 8px; padding-block: 24px; border-top: 1px solid var(--line); }
.about-reasons h4 { font-size: 17px; font-weight: 600; line-height: 1.5; letter-spacing: -.02em; }
.about-copy .about-closing { margin-top: 24px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (min-width: 768px) {
  .about-layout { grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: 48px; }
}
@media (min-width: 1024px) {
  .about-layout { gap: 96px; }
}
.work-grid { display: grid; gap: 32px; }
.project-card { display: flex; flex-direction: column; min-width: 0; transition: transform 400ms var(--spring); }
.project-card:hover { transform: translateY(-8px); }
.project-card:nth-child(2):hover { transform: translateY(-12px); }
.project-image { border-radius: 16px; overflow: hidden; background: var(--surface); position: relative; }
.project-image img { aspect-ratio: 1.5; width: 100%; transition: transform 800ms var(--ease); }
.project-card:hover img { transform: scale(1.045); }
.project-image::after { content: ""; pointer-events: none; position: absolute; inset: 0; border-radius: inherit; border: 1px solid #1d1d1f06; }
.project-meta { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 24px; }
.project-meta h3 { font-size: 22px; margin-bottom: 8px; }
.project-meta p { font-size: 13px; }
.round-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; flex-shrink: 0; transition: background 250ms var(--ease), transform 250ms var(--spring); }
.round-arrow svg { width: 17px; height: 17px; }
.project-card:hover .round-arrow { background: var(--accent-light); transform: rotate(45deg); }
.project-tag { position: absolute; left: 16px; top: 16px; background: rgba(255,255,255,.9); color: #414146; padding: 4px 12px; border-radius: 24px; font-size: 11px; backdrop-filter: blur(8px); }
.work-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.work-note p { font-size: 12px; max-width: 60ch; }
.contact-band { background: var(--surface); border-radius: 16px; padding: 48px 24px; display: grid; gap: 32px; position: relative; }
.contact-band h2 { max-width: 640px; }
.contact-band h2 span { color: var(--muted); }
.contact-band p { margin-top: 24px; max-width: 450px; }
.contact-band .button { align-self: center; justify-self: start; }
.contact-band .eyebrow { margin-bottom: 16px; }
.site-footer { padding: 32px 0; }
.footer-top, .footer-bottom { display: flex; flex-direction: column; gap: 24px; }
.footer-top { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer-brand p { margin-top: 12px; font-size: 13px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-nav a { min-height: 44px; display: flex; align-items: center; font-size: 13px; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { padding-top: 24px; color: var(--muted); font-size: 11px; gap: 8px; }
.mobile-cta { display: none; }
/* Inner pages use the same editorial rhythm and navigation. */
.page-hero { padding-block: 64px; }
.page-hero h1 { max-width: 950px; }
.page-hero h1 span { color: var(--muted); }
.page-hero .lede { margin-top: 24px; max-width: 620px; font-size: 18px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; font-size: 12px; color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 12px; height: 12px; }
.process-layout { display: grid; gap: 48px; }
.process-layout .section-heading { margin-bottom: 0; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 32px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); transition: transform 400ms var(--spring); }
.process-list li:hover { transform: translateY(-8px); }
.process-list li:nth-child(2):hover { transform: translateY(-10px); }
.process-list li > span { font-size: 12px; color: var(--accent); padding-top: 4px; }
.process-list h3 { font-size: 22px; margin-bottom: 12px; }
.process-list p { font-size: 15px; }
.scope-band { display: grid; gap: 24px; border-top: 1px solid var(--line); margin-top: 48px; padding-top: 32px; }
.scope-band h3 { font-size: 20px; }
.scope-band p { font-size: 15px; }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter { min-height: 44px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: var(--body); font-size: 13px; transition: background 250ms var(--ease); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.case-list { display: grid; gap: 64px; }
.case-study { display: grid; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 64px; scroll-margin-top: 32px; }
.case-image { overflow: hidden; border-radius: 16px; }
.case-image img { aspect-ratio: 1.35; transition: transform 800ms var(--ease); }
.case-image:hover img { transform: scale(1.035); }
.case-copy { padding-top: 8px; }
.case-category { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 11px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.case-copy h2 { font-size: 36px; margin-bottom: 24px; }
.case-copy > p { font-size: 16px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.case-tags span { font-size: 11px; padding: 4px 12px; border: 1px solid var(--line); border-radius: 24px; color: var(--body); }
.case-details { margin-top: 24px; border-top: 1px solid var(--line); }
.case-details summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; min-height: 56px; font-size: 14px; font-weight: 500; list-style: none; }
.case-details summary::-webkit-details-marker { display: none; }
.case-details summary svg { width: 16px; height: 16px; transition: transform 250ms var(--spring); }
.case-details[open] summary svg { transform: rotate(45deg); }
.case-details h3 { font-size: 17px; margin: 16px 0 8px; }
.case-details p { font-size: 14px; }
.case-details .text-link { margin-top: 16px; color: var(--accent); }
.contact-layout { display: grid; gap: 48px; align-items: start; }
.contact-intro h1 { font-size: clamp(36px, 4.7vw, 64px); }
.contact-intro h1 span { color: var(--muted); }
.contact-intro > p { margin-top: 24px; max-width: 410px; font-size: 17px; }
.contact-art { margin-top: 32px; border-radius: 16px; max-width: 400px; aspect-ratio: 1.8; }
.contact-form { background: var(--surface); padding: 32px 24px; border-radius: 16px; min-width: 0; }
.form-heading { margin-bottom: 32px; }
.form-heading h2 { font-size: 24px; }
.form-heading p { font-size: 14px; margin-top: 8px; }
.form-row { display: grid; gap: 24px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label { font-size: 13px; font-weight: 500; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  outline: 0;
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #8b8b91; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px #0066cc12; }
.field textarea { resize: vertical; min-height: 128px; line-height: 1.5; }
.field input:user-invalid, .field textarea:user-invalid { border-color: #dc2626; }
.form-error { color: #b91c1c; font-size: 13px; min-height: 20px; }
.field .form-error:empty { display: none; }
.form-submit { width: 100%; }
.form-privacy { font-size: 11px; margin-top: 16px; max-width: 65ch; }
.form-fallback { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.form-fallback p { font-size: 12px; }
.save-brief { padding: 8px 0; border: 0; background: transparent; color: var(--accent); font-size: 12px; min-height: 44px; text-decoration: underline; text-underline-offset: 4px; }
.form-status { margin-top: 16px; font-size: 14px; }
.form-status:empty { display: none; }
.form-status[data-state="error"] { color: #b91c1c; }
.form-status[data-state="success"] { color: #236142; }
.contact-expectations { display: grid; gap: 24px; padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--line); }
.contact-expectations h2 { font-size: 18px; margin-bottom: 12px; }
.contact-expectations p { font-size: 14px; }
.privacy-note { max-width: 800px; margin-top: 48px; }
.privacy-note h2 { font-size: 18px; margin-bottom: 12px; }
.privacy-note p { font-size: 13px; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
/* Motion is progressive enhancement; a static page is fully readable. */
html.js-anim .rv { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); transition-delay: var(--reveal-delay,0ms); }
html.js-anim .rv.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 480px) {
  .header-inner { gap: 24px; }
  .container { width: min(var(--page-width), calc(100% - 64px)); }
  .tabs { width: fit-content; }
  .tab { min-width: 136px; padding-inline: 16px; font-size: 13px; }
}
@media (min-width: 768px) {
  .container { width: min(var(--page-width), calc(100% - 96px)); }
  .section { padding-block: 96px; }
  .section-top { padding-top: 0; }
  .hero { padding-top: 80px; }
  .hero-grid { grid-template-columns: 1.06fr 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(42px,5.05vw,72px); }
  .hero-copy > p { font-size: 16px; }
  .hero-art { aspect-ratio: 1.04; }
  .audience-strip { flex-direction: row; justify-content: space-between; align-items: center; margin-top: 64px; }
  .audience-names { gap: 24px; }
  .audience-names a { font-size: 14px; }
  .section-heading { flex-direction: row; align-items: flex-end; gap: 48px; margin-bottom: 48px; }
  .section-heading > p { max-width: 310px; padding-bottom: 4px; }
  .cap-services { grid-template-columns: 1fr 1fr; gap: 0 32px; padding: 8px 32px; }
  .service-item:nth-child(3) { border: 0; }
  .cap-visual { min-height: 320px; }
  .cap-visual img { aspect-ratio: 2.2; }
  .work-grid { grid-template-columns: 1.13fr 1fr; gap: 32px; align-items: start; }
  .work-grid .project-card:nth-child(2) { padding-top: 64px; }
  .contact-band { grid-template-columns: 1fr auto; gap: 48px; padding: 64px; align-items: center; }
  .contact-band .button { justify-self: end; }
  .footer-top, .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .site-footer { padding-block: 48px 32px; }
  .page-hero { padding-block: 80px 64px; }
  .process-layout { grid-template-columns: .9fr 1.1fr; gap: 64px; }
  .process-layout .section-heading { flex-direction: column; align-items: start; justify-content: flex-start; gap: 24px; }
  .scope-band { grid-template-columns: 1fr 1.5fr auto; align-items: center; }
  .case-study { grid-template-columns: 1.2fr 1fr; align-items: start; gap: 48px; }
  .case-copy h2 { font-size: 36px; }
  .contact-layout { grid-template-columns: .85fr 1.15fr; gap: 48px; }
  .contact-form { padding: 40px 32px; }
  .form-row-split { grid-template-columns: 1fr 1fr; }
  .contact-expectations { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .site-nav { display: flex; align-items: center; gap: 32px; }
  .site-nav a { font-size: 13px; min-height: 44px; display: flex; align-items: center; color: var(--body); position: relative; }
  .site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 7px; background: var(--ink); height: 1px; transform: scaleX(0); transform-origin: left; transition: transform 250ms var(--ease); }
  .site-nav a:hover::after { transform: scaleX(1); }
  .site-nav a[aria-current="page"] { color: var(--ink); }
  .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav .mobile-nav-contact { display: none; }
  .header-cta { display: flex; min-height: 44px; padding: 8px 20px; font-size: 12px; }
  .menu-toggle { display: none; }
  .hero { padding-top: 96px; }
  .hero-grid { gap: 64px; }
  .hero-copy > p { font-size: 17px; }
  .hero-art { aspect-ratio: 1.25; }
  .audience-strip { margin-top: 80px; }
  .audience-names { gap: 64px; }
  .audience-names a { font-size: 16px; }
  .cap-panel { grid-template-columns: .82fr 1.18fr; }
  .cap-visual { margin: 12px; min-height: 420px; }
  .cap-visual img { height: 100%; aspect-ratio: 1; }
  .cap-services { padding: 8px 32px 8px 24px; gap: 0 32px; }
  .service-item { padding-block: 32px; }
  .service-top { margin-bottom: 24px; }
  .section-heading > p { max-width: 360px; }
  .contact-layout { gap: 96px; grid-template-columns: .95fr 1.05fr; }
  .case-list { gap: 96px; }
  .case-study { gap: 64px; padding-bottom: 96px; }
  .case-copy { padding-top: 32px; }
  .case-copy h2 { font-size: 44px; }
  .case-image img { aspect-ratio: 1.2; }
  .contact-form { padding: 48px; }
}
@media (min-width: 1440px) {
  .hero-grid { gap: 80px; }
  .hero-copy > p { font-size: 18px; }
  .section { padding-block: 112px; }
  .section-top { padding-top: 0; }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .signal-orbit { display: block; width: 56px; height: 56px; position: absolute; top: 28px; right: 28px; border: 1px solid #0066cc50; border-radius: 50%; opacity: .6; pointer-events: none; will-change: transform; }
  .signal-orbit::before, .signal-orbit::after { content: ""; position: absolute; border: 1px solid #0066cc40; border-radius: 50%; inset: 8px; }
  .signal-orbit::after { inset: 16px; background: #0066cc0c; }
}
@media (max-width: 767px) {
  body.has-mobile-cta { padding-bottom: 88px; }
  body:has(.mobile-cta) { padding-bottom: 88px; }
  .mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 25; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px calc(12px + env(safe-area-inset-bottom)); background: #ffffff; border-top: 1px solid var(--line); }
  .mobile-cta > span { font-size: 12px; color: var(--body); }
  .mobile-cta .button { min-height: 48px; padding: 12px 16px; font-size: 12px; }
  .menu-open .mobile-cta { visibility: hidden; }
  .work-note, .cap-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .work-note p, .cap-bottom p { max-width: none; }
  .text-link { min-height: 48px; }
  .service-item p { font-size: 16px; max-width: 48ch; }
  .cap-visual .image-label { backdrop-filter: none; background: #fffffff2; }
  .project-tag { backdrop-filter: none; }
  .menu-open .site-nav { backdrop-filter: none; background: #f5f5f7fa; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js-anim .rv { opacity: 1; transform: none; }
  .project-card:hover, .service-item:hover, .process-list li:hover, .button:hover { transform: none; }
  .signal-orbit { display: none; }
}
