/* ==========================================================================
   The Hands of Sean Perry - homepage concept
   Design language: Soft Luxury (type scale, spacing, composition, motion only)
   Palette: extracted from seanperryinc.com theme CSS and the company logo
   ========================================================================== */

:root {
  /* Grounds, from their theme CSS #272c30 / #f2f2f2 / #e3eaf0 */
  --ink: #22282c;
  --ink-2: #2c363a;
  --ink-3: #1a1f22;
  --paper: #f4f6f7;
  --white: #ffffff;
  --cloud: #e6ecee;

  /* Their slate blue, the most-used non-neutral in their stylesheet */
  --slate: #69939d;
  --slate-deep: #39626b;
  --slate-btn: #456f78;
  --slate-btn-hover: #37606a;
  --mist: #c2d5d8;

  /* Text */
  --text-dark: #1e2529;
  --text-body: #4d5761;
  --text-muted: #5c6670;
  --text-light: rgba(255, 255, 255, 0.93);
  --text-light-muted: rgba(255, 255, 255, 0.72);

  /* Type */
  --font-display: 'Literata', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --wrap: min(92%, 1360px);
  --wrap-mid: min(92%, 1120px);
  --wrap-narrow: min(92%, 900px);
  --pad-y: clamp(4.5rem, 8vw, 8rem);
  --nav-h: 84px;
  --radius: 14px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.018em;
  line-height: 1.16;
  margin: 0;
}

p { margin: 0 0 1.15em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--mist); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--slate-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-mid { width: var(--wrap-mid); margin-inline: auto; }
.wrap-narrow { width: var(--wrap-narrow); margin-inline: auto; }

.section { padding-block: var(--pad-y); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--cloud { background: var(--cloud); }
.section--ink { background: var(--ink); color: var(--text-light-muted); }
.section--ink-2 { background: var(--ink-2); color: var(--text-light-muted); }
.section--ink h2, .section--ink h3, .section--ink-2 h2, .section--ink-2 h3 { color: var(--text-light); }

/* ---------- shared type ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--slate-deep);
  margin: 0 0 1.4rem;
}
.eyebrow--on-dark { color: var(--mist); }

.section-head {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.15;
  max-width: 20ch;
}

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.72;
  color: var(--text-body);
  max-width: 62ch;
}
.section--ink .lede, .section--ink-2 .lede { color: var(--text-light-muted); }

.rule-thin {
  width: 56px;
  height: 2px;
  background: var(--slate);
  border: 0;
  margin: 0 0 1.6rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.35rem 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  min-height: 48px;
}
.btn__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.btn__icon svg { width: 12px; height: 12px; display: block; }
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--solid { background: var(--slate-btn); color: #fff; }
.btn--solid:hover { background: var(--slate-btn-hover); }
.btn--solid .btn__icon { background: rgba(255, 255, 255, 0.18); }
.btn--solid .btn__icon svg { stroke: #fff; }

.btn--ghost { background: transparent; color: var(--slate-deep); border: 1px solid rgba(57, 98, 107, 0.4); }
.btn--ghost:hover { background: rgba(105, 147, 157, 0.12); }
.btn--ghost .btn__icon { background: rgba(57, 98, 107, 0.12); }
.btn--ghost .btn__icon svg { stroke: var(--slate-deep); }

.btn--light { background: var(--mist); color: var(--ink); }
.btn--light:hover { background: #d4e2e5; }
.btn--light .btn__icon { background: rgba(34, 40, 44, 0.14); }
.btn--light .btn__icon svg { stroke: var(--ink); }

.btn--outline-light { background: transparent; color: var(--text-light); border: 1px solid rgba(255, 255, 255, 0.32); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.09); }
.btn--outline-light .btn__icon { background: rgba(255, 255, 255, 0.14); }
.btn--outline-light .btn__icon svg { stroke: #fff; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--slate-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 98, 107, 0.35);
  padding-block: 0.35rem;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.textlink:hover { border-color: var(--slate-deep); }

/* ---------- navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 1.5rem;
}
.nav__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
.nav__right { display: flex; align-items: center; justify-content: flex-end; }
.nav.is-solid {
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(34, 40, 44, 0.09);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
}
.brand__mark { width: auto; height: 46px; max-width: 52px; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 8.5em;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--slate-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }
@media (max-width: 1024px) { .nav__cta { display: none; } }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 0; background: transparent;
  padding: 0; cursor: pointer;
  position: relative;
  z-index: 140;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  margin: 5px auto;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.menu-open .brand__name { color: var(--text-light); }
.menu-open .burger span { background: var(--text-light); }
.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8vw 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  color: var(--text-light);
  text-decoration: none;
  padding-block: 0.5rem;
  display: block;
}
.mobile-menu hr { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.16); margin: 1.8rem 0; }
.mobile-menu .mobile-menu__contact {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light-muted);
  padding-block: 0.65rem;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: center;
  background: var(--paper);
  overflow: hidden;
}
.hero__text {
  padding-left: calc((100vw - min(92vw, 1360px)) / 2);
  padding-right: clamp(2rem, 5vw, 5rem);
  padding-block: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)) clamp(2.5rem, 6vw, 5rem);
}
.hero__title {
  font-size: clamp(2.1rem, 3.35vw, 3.3rem);
  line-height: 1.13;
  letter-spacing: -0.025em;
  max-width: 15ch;
  margin: 0 0 1.5rem;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.28vw, 1.14rem);
  line-height: 1.72;
  color: var(--text-body);
  max-width: 44ch;
  margin: 0 0 2.3rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1.1rem; align-items: center; }

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 60svh;
  overflow: hidden;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__caption {
  position: absolute;
  left: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  max-width: calc(100% - 2rem);
  background: rgba(26, 31, 34, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

/* ---------- intro / 1996 ---------- */

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}
.intro__statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.35vw, 2.15rem);
  line-height: 1.32;
  letter-spacing: -0.017em;
  color: var(--text-dark);
  max-width: 22ch;
}
.intro__statement em { font-style: italic; color: var(--slate-deep); }
.intro__seal { width: 78px; height: auto; margin-bottom: 1.9rem; opacity: 0.95; }

/* ---------- roster (signature moment) ---------- */

.roster__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.roster__aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
.roster__photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.roster__photo img { width: 100%; height: auto; }
.roster__caption {
  font-size: 0.86rem;
  color: var(--text-light-muted);
  letter-spacing: 0.01em;
  margin: 0;
}

.roster__quote {
  margin: 2.4rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 34ch;
}
.roster__quote span {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}

.roster__list { list-style: none; margin: 0; padding: 0; }
.roster__item {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-block: 1.15rem;
}
.roster__item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.roster__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.1rem;
}
.roster__name {
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2.2vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  transition: color 0.45s var(--ease);
}
.roster__role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--mist);
}
.roster__note {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s var(--ease), opacity 0.5s var(--ease);
  opacity: 0;
}
.roster__note > span {
  overflow: hidden;
  display: block;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light-muted);
  max-width: 62ch;
}
.roster__note > span > span { display: block; padding-top: 0.7rem; }

@media (hover: hover) and (pointer: fine) {
  .roster__item:hover .roster__note,
  .roster__item:focus-within .roster__note { grid-template-rows: 1fr; opacity: 1; }
  .roster__item:hover .roster__name { color: var(--mist); }
}
@media (hover: none), (pointer: coarse) {
  .roster__note { grid-template-rows: 1fr; opacity: 1; }
}

/* ---------- work ---------- */

.work__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.work__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
}
.work__grid > *:nth-child(even) { margin-top: clamp(0rem, 6vw, 5.5rem); }
.project { display: block; }
.project__frame {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  background: var(--cloud);
}
.project__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.project:hover .project__frame img { transform: scale(1.035); }
.project__name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--text-dark);
  margin: 1.1rem 0 0.25rem;
}
.project__place {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-deep);
  margin: 0;
}

/* ---------- full bleed ---------- */

.fullbleed { background: var(--paper); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.fullbleed__img { height: clamp(280px, 46vw, 620px); overflow: hidden; }
.fullbleed__img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.fullbleed__cap {
  width: var(--wrap);
  margin: 1rem auto 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-deep);
}

/* ---------- services ---------- */

.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.service + .service { margin-top: clamp(3.5rem, 7vw, 7rem); }
.service--flip .service__media { order: 2; }
.service__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.service__media img { width: 100%; height: 100%; object-fit: cover; }
.service__title { font-size: clamp(1.6rem, 2.5vw, 2.25rem); margin-bottom: 1.1rem; }
.service__list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.service__list li {
  padding-block: 0.8rem;
  border-top: 1px solid rgba(34, 40, 44, 0.13);
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 0.3rem 1.5rem;
  align-items: baseline;
}
.service__list li:last-child { border-bottom: 1px solid rgba(34, 40, 44, 0.13); }
.service__list b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text-dark);
}
.service__list span { font-size: 0.96rem; line-height: 1.6; color: var(--text-body); }

/* ---------- process ---------- */

.process__intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.step {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) minmax(0, 1.45fr);
  gap: 1rem clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(34, 40, 44, 0.14);
  align-items: start;
}
.step:last-of-type { border-bottom: 1px solid rgba(34, 40, 44, 0.14); }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--slate);
  line-height: 1;
}
.step__name { font-size: clamp(1.2rem, 1.75vw, 1.55rem); line-height: 1.25; }
.step__body { font-size: 0.99rem; line-height: 1.7; color: var(--text-body); }
.process__close {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.45;
  color: var(--text-dark);
  max-width: 34ch;
}

/* ---------- reviews ---------- */

.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.quote-lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.15vw, 1.95rem);
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--text-light);
  margin: 0;
  max-width: 24ch;
}
.quote-attrib {
  margin-top: 1.4rem;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}
.quote-small { padding-block: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.quote-small:first-child { border-top: 0; padding-top: 0; }
.quote-small p { font-size: 0.99rem; line-height: 1.68; color: var(--text-light-muted); margin: 0; }
.quote-small .quote-attrib { margin-top: 0.85rem; }

/* ---------- recognition ---------- */

.awards { margin-top: clamp(2rem, 4vw, 3rem); }
.award {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.25rem 1.5rem;
  padding-block: 0.95rem;
  border-top: 1px solid rgba(34, 40, 44, 0.14);
  align-items: baseline;
}
.award:last-child { border-bottom: 1px solid rgba(34, 40, 44, 0.14); }
.award__year {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--slate-deep);
  font-weight: 500;
}
.award__name { font-size: 0.99rem; color: var(--text-dark); }
.awards__note { margin-top: 1.4rem; font-size: 0.92rem; color: var(--text-muted); }

/* ---------- cta ---------- */

.cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.cta__title { font-size: clamp(1.9rem, 3.1vw, 2.9rem); line-height: 1.16; max-width: 16ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1.1rem; margin-top: 2rem; }
.cta__address { margin-top: 2rem; font-size: 0.95rem; color: var(--text-light-muted); line-height: 1.75; }

/* ---------- footer ---------- */

.footer { background: var(--ink-3); color: var(--text-light-muted); padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.footer__mark { width: auto; height: 74px; max-width: 84px; object-fit: contain; margin-bottom: 1.2rem; }
.footer__name { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--text-light); margin: 0 0 0.6rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer a { color: var(--text-light-muted); text-decoration: none; display: inline-block; padding-block: 0.65rem; transition: color 0.35s var(--ease); }
.footer a:hover { color: var(--text-light); }
.footer__social { display: flex; flex-wrap: wrap; gap: 0 1.4rem; margin-top: 0.5rem; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- 404 ---------- */

.error-section {
  min-height: 100svh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
}
.error__code { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 11rem); line-height: 1; color: rgba(194, 213, 216, 0.22); margin-bottom: 0.5rem; }
.error__title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text-light); margin-bottom: 1.2rem; }
.error__body { color: var(--text-light-muted); max-width: 46ch; margin-bottom: 2rem; }

/* ---------- motion ---------- */

html.js .reveal { opacity: 0; transform: translateY(14px); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .nav__inner { display: flex; justify-content: space-between; }
  .nav__left { padding-right: 0; }
  .nav__links { display: none; }
  .burger { display: block; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; padding-top: calc(var(--nav-h) + 1rem); }
  .hero__text { width: min(92%, 640px); margin-inline: auto; padding-inline: 0; padding-block: clamp(1.5rem, 5vw, 3rem) 0; }
  .hero__media { min-height: 52svh; height: 52svh; margin-top: clamp(2rem, 5vw, 3rem); }
  .hero__title { max-width: 18ch; }
  .intro__grid, .roster__grid, .work__head, .reviews__grid, .cta__inner { grid-template-columns: minmax(0, 1fr); }
  .roster__aside { position: static; }
  .service, .service--flip { grid-template-columns: minmax(0, 1fr); }
  .service--flip .service__media { order: 0; }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 1.02rem; }
  .work__grid { grid-template-columns: minmax(0, 1fr); }
  .work__grid > *:nth-child(even) { margin-top: 0; }
  .step { grid-template-columns: 3.2rem minmax(0, 1fr); }
  .step__body { grid-column: 1 / -1; }
  .service__list li { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .award { grid-template-columns: 4rem minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .hero__media { min-height: 46svh; height: 46svh; }
  .brand__name { font-size: 0.95rem; max-width: 7em; }
  .brand__mark { height: 40px; max-width: 46px; }
}
