/* ============================================================
   RIDWAN v2 — editorial light theme
   Built from the Claude Design artboards (Home, Services,
   Service detail, Case study). Fonts: Schibsted Grotesk + Manrope.
   ============================================================ */
:root {
  --bg: #EFEDE8;
  --ink: #14120F;
  --accent: #E0592F;
  --body: #4A443C;
  --muted: #6B6459;
  --muted-2: #9A9287;
  --muted-3: #78716A;
  --card: #F7F6F3;
  --chrome: #F1EFEB;
  --dot: #DDD8D0;
  --line: rgba(20,18,15,.14);
  --line-soft: rgba(20,18,15,.1);
  --line-card: rgba(20,18,15,.09);
  --line-chip: rgba(20,18,15,.16);
  --dark: #14120F;
  --on-dark: #EFEDE8;
  --on-dark-muted: #B8B1A6;
  --on-dark-muted-2: #9A9287;
  --on-dark-line: rgba(239,237,232,.16);
  --display: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --text: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(64px, 9vw, 128px);
  --section-sm: clamp(56px, 8vw, 110px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .2s, background .2s, border-color .2s; }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: #fff; }
input, select, textarea, button { font-family: var(--text); }
h1, h2, h3, h4, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 1080px; }
.section { padding-top: var(--section); }
.section--sm { padding-top: var(--section-sm); }
.section--end { padding-bottom: clamp(56px, 7vw, 96px); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head p { margin-top: 10px; font-size: 16px; color: var(--muted); }
.anchor { scroll-margin-top: 90px; }

/* ---------- Type ---------- */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.eyebrow--sm { font-size: 11px; letter-spacing: .14em; color: var(--muted-2); }
.eyebrow--dot { display: flex; align-items: center; gap: 10px; }
.eyebrow--dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.display-1 { font-family: var(--display); font-weight: 800; font-size: clamp(46px, 7.4vw, 104px); line-height: .92; letter-spacing: -.045em; text-wrap: balance; }
.display-1--page { font-size: clamp(44px, 7vw, 100px); }
.display-1--detail { font-size: clamp(42px, 6.6vw, 94px); }
.display-1--case { font-size: clamp(52px, 9vw, 132px); line-height: .9; letter-spacing: -.05em; }
.display-2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.035em; line-height: 1.05; }
.display-2--lg { font-size: clamp(34px, 4.6vw, 62px); line-height: 1; letter-spacing: -.04em; }
.display-2--contact { font-size: clamp(34px, 4.8vw, 66px); line-height: .98; letter-spacing: -.04em; }
.display-3 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.05; letter-spacing: -.03em; }
.accent { color: var(--accent); }
.accent-italic { font-style: italic; font-weight: 500; color: var(--accent); }
.lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.5; color: var(--body); }
.lead--lg { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.45; }
.copy { font-size: 16px; line-height: 1.6; color: var(--body); }
.copy--lg { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--ink); }
.measure-44 { max-width: 44ch; } .measure-40 { max-width: 40ch; } .measure-38 { max-width: 38ch; } .measure-52 { max-width: 52ch; } .measure-50 { max-width: 50ch; } .measure-48 { max-width: 48ch; } .measure-36 { max-width: 36ch; } .measure-42 { max-width: 42ch; }

/* ---------- Buttons & chips ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; line-height: 1; border: 1px solid transparent; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--dark); color: #fff; }
.btn--dark { background: var(--dark); color: var(--on-dark); }
.btn--dark:hover { background: var(--accent); color: #fff; }
.btn--outline { background: transparent; border-color: rgba(20,18,15,.22); color: var(--ink); padding: 16px 26px; }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--md { padding: 15px 26px; }
.btn--ondark:hover { background: var(--on-dark); color: var(--dark); }
.btn .arrow { font-family: var(--display); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 7px 13px; border: 1px solid var(--line-chip); border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--body); }
.chip--dashed { border-style: dashed; border-color: rgba(20,18,15,.2); color: var(--muted); }
.chip--lg { padding: 8px 15px; font-size: 13px; }
.chip--pill-link { padding: 13px 22px; border: 1px solid rgba(20,18,15,.18); font-size: 15px; font-weight: 600; color: var(--ink); }
.chip--pill-link:hover { border-color: var(--accent); color: var(--ink); }
.tag { padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.tag--accent { background: var(--accent); color: #fff; }
.tag--outline-dark { border: 1px solid rgba(239,237,232,.28); color: #C9C3B8; }
.pill-note { display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border: 1px solid var(--line-chip); border-radius: 999px; font-size: 13px; color: var(--body); }
.pill-note::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.pill-note--dark { background: var(--dark); color: var(--on-dark); border-color: var(--dark); font-weight: 500; }

/* ---------- Browser frame ---------- */
.browser { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-soft); background: #fff; }
.browser--lg { border-radius: 20px; box-shadow: 0 40px 90px -50px rgba(20,18,15,.6); }
.browser--shadow { box-shadow: 0 30px 70px -34px rgba(0,0,0,.8); border: 0; border-radius: 14px; }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: var(--chrome); border-bottom: 1px solid rgba(20,18,15,.07); }
.browser--lg .browser__bar { padding: 12px 14px; gap: 6px; }
.browser__bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--dot); }
.browser--lg .browser__bar i { width: 8px; height: 8px; }
.browser__label { margin-left: 8px; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.browser--lg .browser__label { margin-left: 10px; font-size: 10px; }
.browser img, .shot { display: block; width: 100%; object-fit: cover; object-position: var(--pos, 50% 25%); aspect-ratio: var(--ar, 16 / 9); }
.shot-frame { border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--line-soft); }
.shot-frame--lg { border-radius: 16px; }
.shot-frame--dark { border: 0; box-shadow: 0 30px 70px -34px rgba(0,0,0,.8); }
figcaption { margin-top: 12px; font-size: 13px; color: var(--muted); }
.img-missing { background: repeating-linear-gradient(45deg, #e8e4dc 0 12px, #efede8 12px 24px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239,237,232,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; background: var(--dark); }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); flex-wrap: wrap; font-size: 14px; font-weight: 500; }
.nav a.is-current { color: var(--accent); }
.nav .btn { color: var(--on-dark); }
.nav .btn:hover { color: #fff; }
@media (max-width: 640px) {
  .site-header__inner { gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .nav { gap: 10px 14px; font-size: 13px; }
  .nav .btn { padding: 9px 14px; font-size: 13px; }
}

/* ---------- Hero (home) ---------- */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(28px, 4vw, 48px); }
.hero__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero .eyebrow { margin-bottom: clamp(20px, 3vw, 32px); }
.hero .display-1 { margin-bottom: clamp(22px, 3vw, 30px); }
.hero .lead { margin-bottom: clamp(28px, 4vw, 40px); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.portrait { position: relative; justify-self: center; width: 100%; max-width: 470px; }
.portrait__shape { position: absolute; inset: auto 0 0 0; height: 82%; background: var(--dark); border-radius: 230px 230px 20px 20px; }
.portrait__ring { position: absolute; left: 50%; bottom: 14%; transform: translateX(-50%); width: 74%; aspect-ratio: 1; border: 1px solid rgba(224,89,47,.5); border-radius: 50%; }
.portrait__img { position: relative; display: block; width: 100%; filter: drop-shadow(0 30px 50px rgba(20,18,15,.28)); }
.portrait__badge { position: absolute; right: -4px; bottom: 16%; background: var(--bg); border: 1px solid rgba(20,18,15,.12); border-radius: 14px; padding: 12px 16px; box-shadow: 0 18px 40px -22px rgba(20,18,15,.5); }
.portrait__badge strong { display: block; font-family: var(--display); font-weight: 800; font-size: 26px; line-height: 1; letter-spacing: -.03em; }
.portrait__badge span { display: block; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: ridmarquee 42s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 34px; padding-right: 34px; font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--body); white-space: nowrap; }
.marquee__group i { font-style: normal; color: var(--accent); }
@keyframes ridmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Services (home) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(24px, 3vw, 40px); }
.service-card { background: var(--card); border: 1px solid var(--line-card); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.service-card__shot { padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px) 0; }
.service-card__body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.service-card__num { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--accent); }
.service-card__body .chips { margin-top: auto; padding-top: 8px; }
.service-tertiary { margin-top: clamp(20px, 2.4vw, 32px); border: 1px solid rgba(20,18,15,.12); border-radius: 20px; padding: clamp(22px, 3vw, 34px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(20px, 3vw, 44px); align-items: center; }
.service-tertiary__text { display: flex; flex-direction: column; gap: 12px; }
.service-tertiary__num { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--muted-2); }
.service-tertiary h3 { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2vw, 26px); line-height: 1.1; letter-spacing: -.02em; color: #3A342D; }
.service-tertiary p { font-size: 15px; line-height: 1.5; color: var(--muted); max-width: 42ch; }

/* ---------- Work (home) ---------- */
.work-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(24px, 3vw, 48px); align-items: center; background: var(--dark); border-radius: 26px; padding: clamp(22px, 3vw, 40px); color: var(--on-dark); margin-bottom: clamp(24px, 3vw, 40px); }
.work-featured:hover { color: var(--on-dark); }
.work-featured__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.work-featured h3 { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4.6vw, 62px); line-height: 1; letter-spacing: -.04em; margin-bottom: 14px; }
.work-featured p { font-size: 17px; line-height: 1.5; color: var(--on-dark-muted); max-width: 40ch; margin-bottom: 26px; }
.work-featured__foot { display: flex; align-items: flex-end; gap: 26px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--on-dark-line); }
.work-featured__stack { margin-top: 18px; font-size: 12px; color: var(--muted-3); }
.metric { font-family: var(--display); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.metric--xl { font-size: clamp(26px, 3.2vw, 40px); }
.metric--lg { font-size: 30px; }
.metric--md { font-size: 26px; }
.metric__label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 9px; }
.work-featured .metric__label { color: var(--on-dark-muted-2); }
.view-link { margin-left: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--on-dark); }
.view-link .arrow { font-family: var(--display); }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(24px, 3vw, 40px); }
.work-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-card); border-radius: 24px; overflow: hidden; color: var(--ink); transition: border-color .25s, transform .25s; }
.work-card:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.work-card__shot { padding: clamp(18px, 2vw, 24px) clamp(18px, 2vw, 24px) 0; }
.work-card__body { padding: clamp(20px, 2.2vw, 26px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.work-card__kicker { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.03em; }
.work-card p { font-size: 15px; line-height: 1.5; color: var(--body); }
.work-card__foot { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(20,18,15,.12); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.work-card__foot .metric__label { color: var(--muted); margin-top: 8px; }
.work-card__arrow { font-family: var(--display); font-size: 20px; color: var(--accent); }
.lead-tags { display: flex; gap: 8px; flex-wrap: wrap; font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .04em; }
.lead-tags span { padding: 6px 11px; border-radius: 8px; background: var(--dark); color: var(--on-dark); }
.lead-tags span.is-accent { background: var(--accent); color: #fff; }

/* ---------- Quote band ---------- */
.quote-band { margin-top: var(--section); background: var(--dark); color: var(--on-dark); }
.quote-band__inner { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(64px, 9vw, 120px); text-align: center; }
.quote-band p { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 3.4vw, 44px); line-height: 1.24; letter-spacing: -.03em; text-wrap: pretty; }
.quote-band__by { margin-top: clamp(28px, 4vw, 44px); display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote-band__by img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; background: #221F1A; }
.quote-band__by span { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-muted-2); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__portrait { position: relative; width: 100%; max-width: 440px; justify-self: center; }
.about__portrait::before { content: ''; position: absolute; inset: 0; background: var(--accent); border-radius: 24px; }
.about__portrait-clip { position: absolute; inset: 0; border-radius: 24px; overflow: hidden; }
.about__portrait-clip img { position: absolute; left: 50%; bottom: -6%; transform: translateX(-50%); width: 104%; max-width: none; filter: saturate(.6) contrast(1.05); }
.about__portrait-space { padding-top: 112%; }
.about h2 { margin: 18px 0 clamp(22px, 3vw, 30px); }
.about p { margin-bottom: 18px; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; color: var(--body); max-width: 52ch; }
.about p + .pill-note { margin-top: 8px; }

/* ---------- Stats ---------- */
.stats { overflow: hidden; }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); margin-left: -1px; }
.stat { padding: clamp(26px, 3vw, 40px) clamp(16px, 2vw, 24px); border-top: 1px solid var(--line); border-left: 1px solid var(--line-soft); }
.stat__value { font-family: var(--display); font-weight: 800; font-size: clamp(46px, 6vw, 84px); line-height: .9; letter-spacing: -.05em; }
.stat__value--text { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.04em; }
.stat__label { margin-top: 14px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.stat__label small { display: block; font-size: inherit; color: var(--muted-2); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(36px, 5vw, 80px); }
.contact h2 { margin: 18px 0 22px; }
.contact__lead { font-size: 17px; line-height: 1.5; color: var(--body); max-width: 38ch; margin-bottom: 12px; }
.contact__cta-line { font-size: 17px; font-weight: 600; margin-bottom: 30px; }
.contact .pill-note--dark { margin-bottom: 30px; }
.contact__person { display: flex; align-items: center; gap: 16px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact__person img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; background: var(--dark); }
.contact__person a { font-size: 16px; font-weight: 600; }
.contact__person small { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }
.form { display: flex; flex-direction: column; gap: 22px; background: var(--card); border: 1px solid var(--line-card); border-radius: 24px; padding: clamp(24px, 3vw, 40px); }
.form label { display: flex; flex-direction: column; gap: 8px; }
.form label > span { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.form input, .form select, .form textarea { appearance: none; -webkit-appearance: none; border: 0; border-bottom: 1px solid rgba(20,18,15,.22); border-radius: 0; background: transparent; padding: 10px 0; font-size: 16px; color: var(--ink); outline: none; transition: border-color .2s; }
.form textarea { resize: vertical; min-height: 84px; }
.form input:focus, .form select:focus, .form textarea:focus { border-bottom-color: var(--accent); }
.form input::placeholder, .form textarea::placeholder { color: #A39B8F; }
.form .btn { margin-top: 6px; border: 0; }
.form__status { font-size: 13px; color: var(--body); }
.form__status.is-error { color: #B3341C; }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form.is-sending .btn { opacity: .6; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); margin-top: 0; }
.site-footer__inner { padding-top: clamp(48px, 6vw, 84px); padding-bottom: 32px; }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(28px, 4vw, 60px); align-items: start; }
.site-footer__brand { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 6vw, 76px); line-height: .9; letter-spacing: -.05em; }
.site-footer__tagline { margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-muted-2); }
.site-footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.site-footer__col > span:first-child { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 4px; }
.site-footer__col a { color: var(--on-dark); }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__col .dim { color: var(--on-dark-muted-2); }
.site-footer__bottom { margin-top: clamp(36px, 5vw, 64px); padding-top: 22px; border-top: 1px solid rgba(239,237,232,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--muted-3); }
.site-footer__bottom a { color: var(--muted-3); }
.site-footer__bottom a:hover { color: var(--on-dark); }

/* ---------- Services page ---------- */
.page-hero { padding-top: clamp(48px, 7vw, 96px); }
.page-hero__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: end; }
.page-hero h1 { margin-top: 18px; }
.service-rows { padding-top: clamp(44px, 6vw, 84px); }
.service-row { border-top: 1px solid var(--line); padding: clamp(28px, 4vw, 52px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(24px, 4vw, 56px); align-items: start; }
.service-row:last-child { padding-bottom: 0; }
.service-row__num { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -.04em; color: var(--accent); }
.service-row h2 { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.02; letter-spacing: -.035em; margin: 14px 0 18px; }
.service-row p { font-size: 17px; line-height: 1.5; color: var(--body); max-width: 38ch; }
.service-row--muted .service-row__num { color: var(--muted-2); }
.service-row--muted h2 { font-weight: 600; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.05; letter-spacing: -.03em; color: #3A342D; }
.service-row--muted p { font-size: 16px; color: var(--muted); }
.service-list { display: flex; flex-direction: column; }
.service-list__item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(20,18,15,.12); font-size: 17px; font-weight: 600; color: var(--ink); }
.service-list__item:last-child { border-bottom: 1px solid rgba(20,18,15,.12); }
.service-list__item .arrow { color: var(--muted-2); }
.service-list__item.is-link .arrow { color: var(--accent); }
a.service-list__item:hover { color: var(--accent); }
.service-row--muted .service-list__item { padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--body); border-color: var(--line-soft); }
.proof-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; background: var(--dark); color: var(--on-dark); border-radius: 26px; padding: clamp(24px, 3vw, 44px); }
.proof-card h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 54px); line-height: 1; letter-spacing: -.04em; margin: 16px 0 18px; }
.proof-card p { font-size: 16px; line-height: 1.5; color: var(--on-dark-muted); max-width: 38ch; margin-bottom: 26px; }
.proof-card .eyebrow { color: var(--on-dark-muted-2); font-size: 11px; }
.cta-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.cta-strip--rule { border-top: 1px solid var(--line); padding-top: clamp(28px, 4vw, 48px); }
.cta-strip h2 { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 4.4vw, 60px); line-height: 1; letter-spacing: -.04em; margin-bottom: 18px; }
.cta-strip__person { display: flex; align-items: center; gap: 18px; justify-self: end; }
.cta-strip__person img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; background: var(--dark); }
.cta-strip__person strong { display: block; font-size: 16px; font-weight: 600; }
.cta-strip__person a { font-size: 14px; color: var(--muted); }
@media (max-width: 700px) { .cta-strip__person { justify-self: start; } }

/* ---------- Detail pages (service / case study) ---------- */
.detail-hero { padding-top: clamp(40px, 6vw, 80px); }
.back-link { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.detail-hero__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: end; margin-top: clamp(20px, 3vw, 32px); }
.detail-hero .chips { margin-top: clamp(24px, 3vw, 36px); }
.detail-hero .display-1--case { margin: clamp(20px, 3vw, 32px) 0 clamp(24px, 3vw, 40px); }
.case-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.case-meta div > span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.case-meta div > strong { font-size: 16px; font-weight: 600; }
.hero-shot { padding-top: clamp(28px, 4vw, 48px); }
.num-head { display: flex; align-items: baseline; gap: 16px; }
.num-head--mb { margin-bottom: clamp(24px, 3vw, 40px); }
.num-head__num { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -.04em; color: var(--accent); }
.num-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 40px); letter-spacing: -.03em; }
.num-head--lg .num-head__num { font-size: clamp(30px, 3.4vw, 44px); }
.num-head--lg h2 { font-size: clamp(28px, 3.2vw, 42px); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: start; }
.split--center { align-items: center; gap: clamp(28px, 4vw, 56px); }
.split--wide { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.split .copy--lg { margin-bottom: 16px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 16px; }
.cards--tall { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.card { background: var(--card); border: 1px solid var(--line-card); border-radius: 18px; padding: clamp(20px, 2.4vw, 28px); }
.cards--tall .card { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.card__kicker { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.cards--tall .card h3 { font-size: 22px; }
.card p { margin-top: 10px; font-size: 15px; line-height: 1.5; color: var(--body); }
.cards--tall .card p { margin-top: 8px; font-size: 14px; }
.card--dark { background: var(--dark); color: var(--on-dark); border-color: var(--dark); }
.card--dark p { color: var(--on-dark-muted); }
.card--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.card--accent .card__kicker { color: rgba(255,255,255,.75); }
.card--accent p { color: rgba(255,255,255,.9); }
.lines { font-size: 16px; }
.lines li { padding: 15px 0; border-top: 1px solid rgba(20,18,15,.12); display: flex; gap: 14px; }
.lines li:last-child { border-bottom: 1px solid rgba(20,18,15,.12); }
.lines li > span:first-child { color: var(--accent); flex: none; }
.lines--num li { padding: 16px 0; }
.figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.result-band { margin-top: var(--section-sm); background: var(--dark); color: var(--on-dark); }
.result-band__inner { padding-top: var(--section-sm); padding-bottom: var(--section-sm); }
.result-band .num-head { margin-bottom: clamp(28px, 4vw, 48px); }
.result-band__value { font-family: var(--display); font-weight: 800; font-size: clamp(48px, 10vw, 148px); line-height: .9; letter-spacing: -.05em; }
.result-band__value--text { font-size: clamp(40px, 7vw, 104px); }
.result-band__label { margin-top: 22px; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-muted-2); }
.result-band__grid { margin-top: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(20px, 3vw, 40px); padding-top: clamp(28px, 4vw, 44px); border-top: 1px solid var(--on-dark-line); }
.result-band__grid strong { display: block; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -.02em; }
.result-band__grid span { display: block; margin-top: 8px; font-size: 14px; color: var(--on-dark-muted-2); }
.result-band blockquote { margin: clamp(36px, 5vw, 64px) 0 0; padding: clamp(24px, 3vw, 36px); border-left: 2px solid var(--accent); background: rgba(239,237,232,.04); border-radius: 0 16px 16px 0; }
.result-band blockquote p { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.2vw, 28px); line-height: 1.35; letter-spacing: -.02em; max-width: 44ch; }
.result-band blockquote footer { margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-muted-2); }
.related-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.related-dark { margin-top: var(--section-sm); background: var(--dark); color: var(--on-dark); }
.related-dark__inner { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }
.related-dark .eyebrow { color: var(--on-dark-muted-2); font-size: 11px; }
.related-dark__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(24px, 4vw, 56px); align-items: center; margin-top: clamp(24px, 3vw, 40px); color: var(--on-dark); }
.related-dark__grid:hover { color: var(--on-dark); }
.related-dark__title { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 5.4vw, 76px); line-height: .95; letter-spacing: -.04em; }
.related-dark p { margin: 16px 0 22px; font-size: 16px; line-height: 1.5; color: var(--on-dark-muted); max-width: 36ch; }
.related-dark .metric { font-size: clamp(24px, 3vw, 38px); }
.related-dark .metric__label { color: var(--on-dark-muted-2); margin-top: 8px; }
.related-dark .view-link { margin: 26px 0 0; }
.next-project { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(24px, 3vw, 48px); align-items: center; border-top: 1px solid var(--line); padding-top: clamp(28px, 4vw, 44px); color: var(--ink); }
.next-project:hover { color: var(--ink); }
.next-project .num-head { margin-bottom: 14px; }
.next-project__title { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 5.4vw, 76px); line-height: .95; letter-spacing: -.04em; }
.next-project__sub { margin-top: 14px; font-size: 15px; color: var(--body); }

/* ---------- WordPress fallbacks ---------- */
.wp-page { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.wp-page__content { margin-top: 28px; max-width: 72ch; font-size: 17px; line-height: 1.65; color: var(--body); }
.wp-page__content p, .wp-page__content ul, .wp-page__content ol { margin-bottom: 1.2em; }
.wp-page__content h2, .wp-page__content h3 { font-family: var(--display); color: var(--ink); margin: 1.6em 0 .6em; letter-spacing: -.02em; }
.wp-page__content a { text-decoration: underline; }
.wp-page__content img { border-radius: 14px; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; margin-top: 36px; }
.post-card { background: var(--card); border: 1px solid var(--line-card); border-radius: 20px; padding: 24px; }
.post-card h2 { font-family: var(--display); font-size: 22px; letter-spacing: -.02em; margin-bottom: 10px; }
.post-card p { color: var(--body); font-size: 15px; }
.alignwide, .alignfull { max-width: 100%; }

/* Placeholders keep their real footprint until the images are uploaded */
.img-missing.portrait__img { aspect-ratio: 900 / 1124; width: 100%; }
.img-missing.brand__avatar { width: 34px; height: 34px; border-radius: 50%; }
.about__portrait-clip .img-missing { position: absolute; inset: 0; }
.quote-band__by .img-missing, .contact__person .img-missing, .cta-strip__person .img-missing { border-radius: 50%; flex: none; }
.quote-band__by .img-missing { width: 40px; height: 40px; }
.contact__person .img-missing { width: 56px; height: 56px; }
.cta-strip__person .img-missing { width: 88px; height: 88px; }
