@import url('tokens/fonts.css');
@import url('tokens/colors.css');
@import url('tokens/typography.css');
@import url('tokens/spacing.css');
@import url('tokens/effects.css');

/* ============================= RESET ============================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; }
h1,h2,h3,h4,p { margin: 0; }
button { font: inherit; }

/* ============================= BLUEPRINT GRID BACKDROP ============================= */
.grid-field {
  position: fixed;
  inset: -10% -10%;
  background-image: var(--grid-bg);
  background-size: var(--grid-cell) var(--grid-cell);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.page { position: relative; z-index: 1; }

/* ============================= CUSTOM DRAFTING CURSOR ============================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  opacity: 0.65;
  transition: width .18s var(--ease-standard), height .18s var(--ease-standard), opacity .18s var(--ease-standard), border-color .18s var(--ease-standard);
}
.cursor-ring::before, .cursor-ring::after {
  content: "";
  position: absolute;
  background: var(--blue);
  opacity: .6;
}
.cursor-ring::before { left: 50%; top: -8px; width: 1px; height: 6px; transform: translateX(-50%); }
.cursor-ring::after { left: -8px; top: 50%; width: 6px; height: 1px; transform: translateY(-50%); }
.cursor-ring.is-active { width: 54px; height: 54px; opacity: 1; border-color: var(--red); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================= NAV ============================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--space-10);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color .25s var(--ease-standard), border-color .25s var(--ease-standard), padding .25s var(--ease-standard);
}
.nav.is-scrolled {
  background: rgba(220,238,249,0.88);
  backdrop-filter: none;
  border-bottom-color: var(--border);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__mark { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--navy); }
.nav__mark span { color: var(--red); }
.nav__links { display: flex; gap: 32px; font-size: 14px; }
.nav__links a { color: var(--slate); position: relative; padding-bottom: 2px; }
.nav__links a.is-current { color: var(--navy); font-weight: 600; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-standard);
}
.nav__links a:hover::after, .nav__links a.is-current::after { transform: scaleX(1); }
.nav__toggle { display: none; }

/* ============================= BUTTONS ============================= */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  display: inline-block;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--btn-primary-bg); color: var(--btn-primary-fg); }
.btn-ghost { background: transparent; border-color: var(--btn-ghost-border); color: var(--btn-ghost-fg); }
.btn-ghost:hover { background: var(--navy); color: var(--paper); }
.btn span { display: inline-block; will-change: transform; }

/* ============================= TAG ============================= */
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-tag);
  text-transform: uppercase;
  color: var(--blue);
  display: block;
}
.tag--red { color: var(--red); }

/* ============================= LAYOUT ============================= */
.section {
  padding: var(--space-11) var(--space-10);
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  position: relative;
}
.section:first-of-type { border-top: none; }
.section-head { margin-bottom: 48px; max-width: 620px; }
.section-head .tag { margin-bottom: 16px; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: 34px; margin-bottom: 10px; }
.section-head p { color: var(--slate); font-size: 15px; line-height: 1.6; max-width: 500px; }

/* ============================= HERO ============================= */
.hero { padding: 96px var(--space-10) 40px; max-width: var(--content-max); margin: 0 auto; }
.hero .tag { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: var(--tracking-display);
  line-height: 1.05; font-size: 52px; max-width: 800px; margin-bottom: 24px;
  overflow: hidden;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; will-change: transform; }
.hero h1 .accent { color: var(--red); }
.hero p.lede { font-size: 17.5px; color: var(--slate); max-width: 520px; line-height: 1.65; margin-bottom: 36px; }

.dimension-line { display: flex; align-items: center; gap: 10px; margin-bottom: 44px; }
.dimension-line .d-label { font-family: var(--font-mono); font-size: 12px; }
.dimension-line .d-accent { font-family: var(--font-mono); font-size: 12px; color: var(--blue); }
.dimension-line svg { display: block; overflow: visible; }
.dimension-line .d-path { stroke: var(--blue); stroke-width: 1; stroke-dasharray: 4 4; fill: none; }
.dimension-line .d-tick { stroke: var(--blue); stroke-width: 1; }
.dimension-line .d-arrow { fill: var(--blue); }

.hero-ctas { display: flex; gap: 14px; margin-bottom: 20px; }

/* ============================= ROSTER ============================= */
.roster { padding: 20px var(--space-10) 90px; max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--border); }
.roster-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px dashed var(--border); gap: 16px;
  position: relative; overflow: hidden;
}
.roster-row__num { font-family: var(--font-mono); font-size: 12px; color: var(--red); width: 36px; flex-shrink: 0; }
.roster-row__role { font-family: var(--font-display); font-weight: 600; font-size: 18px; width: 180px; flex-shrink: 0; }
.roster-row__desc { font-size: 13.5px; color: var(--slate); text-align: right; flex: 1; }
.roster-foot { text-align: center; padding: 30px 0 6px; }
.roster-foot span { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue); }

/* ============================= SERVICE CARDS ============================= */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  position: relative; border: 1px solid var(--border); padding: 28px 24px; background: var(--panel);
  transition: transform .35s var(--ease-standard);
  transform-style: preserve-3d;
}
.service-card .tag { margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--slate); line-height: 1.6; margin-bottom: 18px; }
.service-card .price { font-family: var(--font-mono); font-size: 14px; border-top: 1px dashed var(--border); padding-top: 14px; }
.service-card .price .unit { color: var(--slate); font-size: 12px; }

.corner-frame { position: absolute; inset: 0; pointer-events: none; }
.corner-frame svg { position: absolute; width: var(--frame-corner-size); height: var(--frame-corner-size); }
.corner-frame .tl { top: 0; left: 0; }
.corner-frame .br { bottom: 0; right: 0; transform: rotate(180deg); }
.corner-frame path {
  stroke: var(--blue); stroke-width: var(--frame-corner-w); fill: none;
  stroke-dasharray: 30; stroke-dashoffset: 30;
  opacity: var(--frame-corner-opacity);
}

/* ============================= PROCESS ============================= */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.process-step { border-left: 2px solid var(--blue); padding-left: 18px; }
.process-step .tag { margin-bottom: 12px; }
.process-step h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--slate); line-height: 1.6; }

/* ============================= FOOTER CTA + FOOTER ============================= */
.footer-cta { padding: var(--space-12) var(--space-10); max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--border); }
.footer-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: 38px; max-width: 620px; margin-bottom: 18px; }
.footer-cta h2 .accent { color: var(--red); box-shadow: inset 0 -0.32em 0 0 rgba(225,85,58,0); transition: box-shadow .5s var(--ease-standard); }
.footer-cta h2 .accent.is-lit { box-shadow: inset 0 -0.32em 0 0 rgba(225,85,58,0.16); }
.footer-cta p { color: var(--slate); font-size: 15.5px; max-width: 440px; margin-bottom: 32px; line-height: 1.6; }
.site-footer { padding: 26px var(--space-10); max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--border); font-size: 13px; color: var(--slate); }
.site-footer span { color: var(--red); }
.site-footer__row { display: flex; align-items: center; justify-content: space-between; gap: 20px 32px; flex-wrap: wrap; }
.site-footer__brand { flex-shrink: 0; }
.site-footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer__links a { color: var(--slate); }
.site-footer__links a:hover { color: var(--navy); }
.site-footer__meta { display: flex; align-items: center; gap: 16px; font-family: var(--font-mono); font-size: 12px; flex-wrap: wrap; }
.site-footer__meta a { color: var(--blue); }
.site-footer__legal a { color: var(--slate); }
.site-footer__legal a:hover { color: var(--navy); }

/* ============================= CONTACT FORM (modal + contact page) ============================= */
.modal-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 10px 0 18px; }
.form-field { margin-bottom: 16px; text-align: left; }
.form-field label { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; font-family: var(--font-body); font-size: 14px; color: var(--navy);
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 12px; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--blue); }
.modal-form .btn { width: 100%; text-align: center; margin-top: 4px; }
.modal-form .btn:disabled { opacity: 0.6; cursor: default; }
.form-error { color: var(--red); font-size: 12.5px; margin: -6px 0 12px; font-family: var(--font-mono); }
.form-success { text-align: center; }
.form-success h3 { margin-bottom: 8px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.contact-form-wrap { position: relative; border: 1px solid var(--border); background: var(--panel); padding: 32px; }
.contact-info { border: 1px solid var(--border); background: var(--panel); padding: 32px; display: flex; flex-direction: column; gap: 26px; }
.contact-info__row .tag { margin-bottom: 8px; }
.contact-info__row a, .contact-info__row p { font-size: 13.5px; color: var(--navy); line-height: 1.6; }
.contact-info__row a { color: var(--blue); font-family: var(--font-mono); font-size: 13px; }
.contact-info__row a span { color: var(--red); font-family: var(--font-body); font-size: 12px; }

/* ============================= WORK / CASE CARDS ============================= */
.case-note { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue); margin-bottom: 36px; max-width: 560px; line-height: 1.7; }
.case-note a { color: var(--red); }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.case-card { border: 1px solid var(--border); background: var(--panel); padding: 28px 24px; }
.case-card .tag { margin-bottom: 14px; }
.case-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.case-card__scope { font-family: var(--font-mono); font-size: 12px; color: var(--blue); margin-bottom: 14px; }
.case-card__body { font-size: 13.5px; color: var(--slate); line-height: 1.6; margin-bottom: 18px; }
.case-card__meta { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 11.5px; color: var(--slate); border-top: 1px dashed var(--border); padding-top: 14px; }
.case-card__meta strong { color: var(--navy); font-weight: 500; }

/* ============================= PORTFOLIO PAGE ============================= */
.portfolio-grid { display: flex; flex-direction: column; gap: 40px; }
.portfolio-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; border: 1px solid var(--border); background: var(--panel); padding: 28px; }
.portfolio-card__info h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.portfolio-card__info p { font-size: 14px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }
.portfolio-card__link { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue); text-decoration: none; }
.portfolio-card__link:hover { text-decoration: underline; }

.portfolio-gallery { position: relative; }
.portfolio-gallery__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; border: 1px solid var(--border); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.portfolio-gallery__track::-webkit-scrollbar { display: none; }
.portfolio-gallery__slide { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 4/3; }
.portfolio-gallery__slide img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.portfolio-gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--paper); color: var(--navy);
  font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.portfolio-gallery__nav--prev { left: 10px; }
.portfolio-gallery__nav--next { right: 10px; }
.portfolio-gallery__nav:hover { border-color: var(--blue); color: var(--blue); }
.portfolio-gallery__dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.portfolio-gallery__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(16,32,47,0.3); border: none; padding: 0; cursor: pointer; }
.portfolio-gallery__dot.is-active { background: var(--navy); }

/* ============================= ABOUT PAGE ============================= */
.prose { max-width: 640px; }
.prose p { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-top: 1px solid var(--border); padding-top: 32px; margin-top: 40px; }
.stat .tag { margin-bottom: 10px; }
.stat__value { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy); margin-bottom: 6px; }
.stat__label { font-size: 13px; color: var(--slate); line-height: 1.5; }

/* ============================= LEGAL PAGES ============================= */
.legal-note { border: 1px solid var(--border); background: var(--panel); padding: 18px 22px; font-size: 13px; color: var(--navy); line-height: 1.6; margin-bottom: 44px; max-width: 720px; }
.legal-note strong { color: var(--red); }
.legal-body { max-width: 720px; }
.legal-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 36px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 13.5px; color: var(--slate); line-height: 1.75; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin-bottom: 12px; }
.legal-body strong { color: var(--navy); }

/* ============================= REVEAL UTILITY ============================= */
.reveal { opacity: 0; transform: translateY(28px); }

/* ============================= FADE-UP for generic reveal groups ============================= */
[data-reveal-group] > * { opacity: 0; transform: translateY(24px); }

/* ============================= PAGE HEADER (pricing / process) ============================= */
.page-head { padding: 72px var(--space-10) 44px; max-width: var(--content-max); margin: 0 auto; position: relative; }
.page-head h1 { font-family: var(--font-display); font-weight: 700; letter-spacing: var(--tracking-display); line-height: 1.05; font-size: 44px; max-width: 760px; margin-bottom: 20px; }
.page-head h1 .accent { color: var(--red); }
.page-head p { font-size: 16.5px; color: var(--slate); max-width: 540px; line-height: 1.65; margin-bottom: 32px; }

/* ============================= PRICING TABLE ============================= */
.pricing-table { position: relative; border: 1px solid var(--border); background: var(--panel); overflow: hidden; }
.pt-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
.pt-row.head { border-bottom: 1px solid var(--border); }
.pt-row:not(.head) { border-bottom: 1px dashed var(--border); }
.pt-row:last-child { border-bottom: none; }
.pt-cell { padding: 16px 16px; font-size: 13.5px; border-left: 1px dashed var(--border); text-align: center; }
.pt-cell.feature { text-align: left; padding: 16px 24px; border-left: none; font-family: var(--font-mono); font-size: 12px; color: var(--slate); }
.pt-row.head .pt-cell { font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 18px 16px; }
.pt-cell.highlight { background: rgba(62,100,148,0.06); }
.pt-cell.mono { font-family: var(--font-mono); font-size: 13px; }
.pt-cell.dash { color: var(--slate); }
.pt-row.price .pt-cell { font-family: var(--font-mono); font-size: 14px; font-weight: 500; padding: 20px 16px; }
.pt-row.price .feature { font-size: 13px; color: var(--slate); }
.pt-cell small { color: var(--slate); font-size: 11.5px; }

/* ============================= ADD-ONS ============================= */
.addon-row { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0; border-bottom: 1px dashed var(--border); gap: 16px; }
.addon-row__id { font-family: var(--font-mono); font-size: 12px; color: var(--red); width: 70px; flex-shrink: 0; }
.addon-row__name { font-family: var(--font-display); font-weight: 600; font-size: 16px; width: 200px; flex-shrink: 0; }
.addon-row__desc { font-size: 13.5px; color: var(--slate); text-align: right; flex: 1; }
.addon-row__price { font-family: var(--font-mono); font-size: 13px; width: 90px; text-align: right; flex-shrink: 0; }

/* ============================= TESTIMONIAL ============================= */
.testimonial { position: relative; border: 1px solid var(--border); background: var(--panel); padding: 40px 44px; }
.testimonial p { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.4; max-width: 640px; margin-bottom: 18px; color: var(--navy); }
.testimonial cite { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue); font-style: normal; }

/* ============================= FAQ ============================= */
.faq-row { border-top: 1px dashed var(--border); padding: 20px 0; display: grid; grid-template-columns: 56px 1fr; gap: 16px; }
.faq-row:last-child { border-bottom: 1px dashed var(--border); }
.faq-row__q { font-family: var(--font-mono); font-size: 12px; color: var(--red); }
.faq-row__title { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.faq-row__body { font-size: 13.5px; color: var(--slate); line-height: 1.6; max-width: 640px; }

/* ============================= TIMELINE (process page) ============================= */
.timeline { position: relative; padding-left: 28px; }
.timeline__spine {
  position: absolute; left: 6px; top: 6px; bottom: 6px; width: 0;
  border-left: 1px dashed var(--blue);
}
.timeline__progress {
  position: absolute; left: 6px; top: 6px; width: 0;
  border-left: 2px solid var(--red);
  height: 0;
}
.timeline-item { position: relative; padding: 0 0 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__dot {
  position: absolute; left: -28px; top: 2px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--blue); transition: background-color .3s var(--ease-standard), box-shadow .3s var(--ease-standard);
}
.timeline-item__dot.is-final { background: var(--red); }
.timeline-item__dot.is-lit { box-shadow: 0 0 0 5px rgba(225,85,58,0.18); }
.timeline-item__grid { display: grid; grid-template-columns: 110px 1fr 220px; gap: 20px; align-items: start; }
.timeline-item__day { font-family: var(--font-mono); font-size: 12px; color: var(--red); }
.timeline-item__title { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.timeline-item__desc { font-size: 13.5px; color: var(--slate); line-height: 1.6; }
.timeline-item__deliverable { font-family: var(--font-mono); font-size: 11.5px; color: var(--blue); line-height: 1.8; }

/* ============================= WHO HANDLES WHAT ============================= */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); background: var(--panel); }
.split-panel__col { padding: 24px 28px; }
.split-panel__col:first-child { border-right: 1px dashed var(--border); }
.split-panel__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; margin-bottom: 16px; }
.split-panel__body { font-size: 13.5px; color: var(--navy); line-height: 2.1; }

/* ============================= CONTACT MODAL ============================= */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(16,32,47,0.45); display: none;
  align-items: center; justify-content: center; cursor: pointer; z-index: 500;
}
.modal-overlay.is-open { display: flex; }
.modal-card {
  background: var(--panel); border: 1px solid var(--border); padding: 36px; max-width: 400px; text-align: left;
  position: relative;
}
.modal-card .tag { margin-bottom: 4px; }
.modal-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.modal-card p { font-size: 13.5px; color: var(--slate); }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 28px; height: 28px;
  border: 1px solid var(--border); background: none; color: var(--slate);
  cursor: pointer; font-size: 13px; line-height: 1; border-radius: var(--radius-sm);
}
.modal-close:hover { color: var(--navy); border-color: var(--navy); }
.modal-stamp {
  position: absolute; top: -18px; right: -18px; width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red); font-family: var(--font-mono); font-size: 9px;
  display: flex; align-items: center; justify-content: center; text-align: center; letter-spacing: 0.05em;
  transform: rotate(-14deg) scale(0);
  background: var(--paper);
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 860px) {
  .hero h1 { font-size: 38px; }
  .page-head h1 { font-size: 32px; }
  .card-grid, .process-grid { grid-template-columns: 1fr; }
  .pt-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 12px; }
  .timeline-item__grid { grid-template-columns: 1fr; gap: 6px; }
  .timeline-item__deliverable { padding-top: 4px; }
  .split-panel { grid-template-columns: 1fr; }
  .split-panel__col:first-child { border-right: none; border-bottom: 1px dashed var(--border); }
  .roster-row { flex-wrap: wrap; }
  .roster-row__desc { text-align: left; width: 100%; }
  .nav__links { display: none; }
  .nav__toggle { display: block; background: none; border: 1px solid var(--border); padding: 8px 12px; }
  .section, .hero, .roster, .footer-cta, .page-head, .site-footer { padding-left: 24px; padding-right: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .portfolio-card { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__row { flex-direction: column; align-items: flex-start; }
}
