@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #050505;
  --paper: #f7f7f4;
  --paper-clean: #fffefa;
  --muted: #e9e9e5;
  --muted-2: #6b6b66;
  --red: #ff321f;
  --red-deep: #d82518;
  --line: #cfcfc8;
  --focus: #ff321f;
  --max: 1180px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--paper-clean);
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 72px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper-clean);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  text-transform: uppercase;
  top: 12px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 60;
}

.skip-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  transform: translateY(0);
}

.site-shell :where(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.site-shell {
  width: 100%;
  overflow-x: clip;
}

.topbar {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 170px 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 58px;
  padding: 14px 24px 4px;
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--paper-clean) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 68%, transparent);
  backdrop-filter: blur(12px);
  z-index: 30;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher { display: inline-flex; flex-shrink: 0; border: 1px solid var(--line); padding: 2px; }
.language-switcher button { min-width: 44px; min-height: 44px; padding: 0 7px; border: 0; background: transparent; color: var(--ink); font: inherit; font-size: 12px; font-weight: 600; cursor: pointer; }
.language-switcher button[aria-pressed="true"] { background: var(--ink, #080808); color: white; }
.language-switcher button:hover:not([aria-pressed="true"]) { color: var(--red-deep); }
.language-switcher button:focus-visible { outline: 2px solid var(--red-deep); outline-offset: 2px; }
@media (max-width: 1100px) {
  .site-shell .topbar { grid-template-columns: minmax(0, 1fr) auto; }
  .site-shell .desktop-nav { display: none; }
  .site-shell .menu-button { display: inline-flex; }
  .site-shell .mobile-menu.is-open { display: grid; }
}
@media (max-width: 380px) {
  .header-actions { gap: 6px; }
  .topbar .identity-wordmark strong { font-size: 12px; }
  .topbar .identity-lockup { gap: 6px; }
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.section-label span {
  background: var(--red);
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.desktop-nav a,
.mobile-menu a,
.footer a {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a {
  font-size: 12px;
  border-bottom: 2px solid transparent;
  padding: 12px 0;
  transition: border-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-current {
  border-color: var(--red);
  color: var(--red);
}

.talk-button,
.menu-button,
.button,
.filters button,
.panel-close {
  cursor: pointer;
}

.talk-button,
.button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0;
  min-height: 44px;
  padding: 0 25px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.talk-button:hover,
.button:hover,
.talk-button:focus-visible,
.button:focus-visible {
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translateY(-2px);
}

.talk-button:active,
.button:active,
.menu-button:active,
.filters button:active,
.panel-close:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.chat-link {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.chat-whatsapp { color: #12643d; }
.chat-telegram { color: #075f88; }
.chat-whatsapp:hover { background: #12643d; color: #fff; }
.chat-telegram:hover { background: #075f88; color: #fff; }
.chat-link svg { flex: 0 0 auto; }

.menu-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ink);
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.mobile-menu {
  background: var(--ink);
  color: #fff;
  display: none;
  gap: 8px;
  left: 24px;
  padding: 20px;
  position: absolute;
  right: 24px;
  top: 100%;
  max-height: calc(100dvh - 90px);
  overflow-y: auto;
}

.mobile-menu a {
  min-height: 44px;
  font-size: 13px;
  padding: 10px 0;
}

.mobile-menu a.is-current {
  color: var(--red);
}

.identity-lockup {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  line-height: 1;
}

.identity-lockup.is-inverted {
  color: #fff;
}

.identity-emblem {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  width: 36px;
}

.identity-emblem::after {
  background: var(--red);
  bottom: -4px;
  content: "";
  height: 8px;
  position: absolute;
  right: -4px;
  width: 8px;
}

.identity-lockup.is-inverted .identity-emblem {
  background: #fff;
  color: var(--ink);
}

.identity-wordmark {
  display: grid;
  gap: 2px;
}

.identity-wordmark strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.85;
}

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: 430px;
  padding: 48px 24px 56px;
  position: relative;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero h1,
.about h2,
.skills h2,
.cta h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 136px;
  font-weight: 600;
  line-height: 0.96;
  margin: 0;
  max-width: 560px;
  text-transform: none;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-amp {
  color: var(--red-deep);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62em;
  font-style: italic;
  font-weight: 400;
  margin-left: 0.08em;
}

.hero-title-second {
  padding-left: 0.28em;
}

.hero-title-period {
  color: var(--red-deep);
}

.hero-subcopy {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  margin: 24px 0;
  max-width: 430px;
}

.hero-visual {
  align-self: center;
  justify-self: end;
  margin-top: 0;
  max-width: 480px;
  min-width: 0;
  position: relative;
  width: 100%;
}

.hero-availability {
  align-items: center;
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  justify-content: flex-end;
  line-height: 1.5;
  margin: 12px 0 0;
}

.hero-availability span {
  background: var(--red);
  border-radius: 50%;
  flex: 0 0 6px;
  height: 6px;
}

.hero-visual img {
  display: block;
  height: auto;
  width: 100%;
}

.section-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.02fr 0.48fr 1.06fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 24px 24px 40px;
}

.section-label {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-label span {
  height: 7px;
  width: 7px;
}

.about h2 {
  font-size: 36px;
  line-height: 1.08;
  margin: 0 0 22px;
  max-width: 430px;
}

.about-copy > p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  max-width: 405px;
}

.signature-row {
  align-items: center;
  display: flex;
  gap: 38px;
  margin-top: 24px;
}

.signature-stamp {
  align-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 38px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  line-height: 1;
  position: relative;
  transform: rotate(-4deg);
  width: 86px;
}

.signature-stamp::after {
  background: var(--red);
  bottom: -7px;
  content: "";
  height: 5px;
  left: 10px;
  position: absolute;
  transform: rotate(-2deg);
  width: 70px;
}

.signature-row p {
  font-size: 10px;
  line-height: 1.3;
  margin: 0;
}

.experience {
  align-self: start;
  margin-top: 26px;
}

.experience-number {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 95px;
  font-weight: 900;
  line-height: 0.8;
}

.experience > p {
  border-bottom: 1px solid var(--muted-2);
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 900;
  margin: 8px 0 18px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

dl div {
  align-items: baseline;
  display: grid;
  gap: 15px;
  grid-template-columns: 42px 1fr;
}

dt {
  font-size: 13px;
  font-weight: 900;
}

dd {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.architecture {
  align-self: start;
  margin-top: 0;
}

.architecture img {
  display: block;
  filter: contrast(1.03) saturate(1.04);
  height: auto;
  width: 100%;
}

.services {
  background: #f0f0ed;
  margin-top: 4px;
  padding: 40px max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.service-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  border-left: 2px solid transparent;
  min-width: 0;
  padding-left: 0;
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: transparent;
}

.service-card svg {
  color: var(--ink);
  display: block;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: none;
}

.service-card p {
  font-size: 15px;
  font-weight: 400;
  color: #50504c;
  line-height: 1.65;
  margin: 0;
}

.skills {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: 220px minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 64px 24px;
}

.skills h2 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}

.skills-title-line {
  display: block;
}

.skills-title-dot,
.skills-title-accent {
  color: var(--red-deep);
}

.skills-title-accent {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85em;
  font-style: italic;
  font-weight: 400;
  margin-top: 0.12em;
}

.skill-columns {
  column-gap: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.skill-item {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 24px minmax(0, 1fr);
  padding: 23px 0 26px;
}

.skill-index {
  color: var(--red-deep);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.skill-content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 9px;
}

.track {
  background: var(--line);
  height: 4px;
  overflow: hidden;
}

.skill-detail {
  color: #50504c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.track span {
  background: var(--red);
  display: block;
  height: 100%;
  transition: width 260ms ease;
}

.work,
.clients,
.testimonials,
.cta {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 24px;
  padding-right: 24px;
}

.work {
  padding-bottom: 30px;
}

.work-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 17px;
}

.filters {
  display: flex;
  gap: clamp(12px, 2vw, 34px);
  justify-content: flex-end;
}

.filters button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  padding: 4px 0;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.filters button:hover,
.filters button:focus-visible,
.filters button.is-active {
  border-color: var(--red);
  color: var(--red-deep);
}

.work-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.work-card {
  display: block;
  min-width: 0;
  position: relative;
  transition: transform 180ms ease, color 180ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: none;
}

.work-card img {
  aspect-ratio: 1.42 / 1;
  display: block;
  filter: contrast(1.08) saturate(1.04);
  margin-bottom: 14px;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.work-poster {
  aspect-ratio: 1.42 / 1;
  background: var(--ink);
  background-image: radial-gradient(color-mix(in srgb, currentColor 22%, transparent) 1px, transparent 1px);
  background-position: -4px -4px;
  background-size: 14px 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 14px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.work-poster::before {
  background: var(--red);
  content: "";
  height: 54%;
  position: absolute;
  right: -12%;
  top: 20%;
  transform: rotate(-8deg);
  width: 52%;
}

.work-poster::after {
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  content: "";
  inset: 10px;
  position: absolute;
}

.poster-index,
.poster-code,
.poster-foot {
  position: relative;
  z-index: 1;
}

.poster-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.poster-code {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.74;
}

.poster-foot {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.poster-rule {
  background: currentColor;
  display: block;
  height: 3px;
  width: 44px;
}

.poster-view {
  align-items: center;
  border: 1px solid color-mix(in srgb, currentColor 55%, transparent);
  border-radius: 50%;
  display: flex;
  height: 26px;
  justify-content: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  width: 26px;
}

.work-card:hover .poster-view,
.work-card:focus-visible .poster-view {
  border-color: currentColor;
  transform: rotate(45deg);
}

.work-poster-red {
  background: var(--red);
  color: var(--ink);
}

.work-poster-red::before {
  background: #fff;
  mix-blend-mode: soft-light;
}

.work-poster-mono {
  background: #f0f0ed;
  color: var(--ink);
}

.work-poster-mono::before {
  background: var(--ink);
  opacity: 0.08;
}

.work-poster-type {
  background: #111;
}

.work-poster-type::before {
  background: transparent;
  border: 18px solid var(--red);
  height: 68%;
  opacity: 0.95;
  width: 48%;
}

.work-card:hover img,
.work-card:focus-visible img,
.work-card:hover .work-poster,
.work-card:focus-visible .work-poster {
  filter: none;
  transform: scale(1.03);
}

.work-card::after {
  background: var(--red);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 100%;
  top: calc(100% - 1px);
  transition: right 190ms ease;
}

.work-card:hover::after,
.work-card:focus-visible::after {
  right: 100%;
}

.work-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.work-card > span:not(.work-poster) {
  color: var(--muted-2);
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
}

.empty-state {
  background: #f1f1ee;
  font-size: 12px;
  font-weight: 900;
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  text-transform: uppercase;
}

.clients {
  padding-bottom: 28px;
}

.brand-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.client-mark {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  min-height: 62px;
  padding-top: 13px;
}

.client-emblem {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 17px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 34px;
}

.client-emblem::after {
  background: var(--red);
  bottom: -3px;
  content: "";
  height: 6px;
  position: absolute;
  right: -3px;
  width: 6px;
}

.client-mark > span:last-child {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.award-row {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.award-row p {
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

.award-row p:last-child {
  border-right: 0;
}

.award-row strong {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonials {
  padding-top: 32px;
  padding-bottom: 56px;
}

.testimonial-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.testimonial-card {
  border-top: 1px solid var(--line);
  min-width: 0;
  padding: 22px 0 0;
}

.approach-number {
  color: var(--red-deep);
  display: block;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 18px;
}

.testimonial-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
}

.testimonial-card .approach-copy {
  color: #50504c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

.cta {
  align-items: center;
  background: #f2f2ef;
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  min-height: 132px;
  overflow: hidden;
  padding-bottom: 16px;
  padding-top: 18px;
  position: relative;
}

.cta h2 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0;
}

.cta h2 span {
  color: var(--red);
}

.cta-action {
  max-width: 340px;
  position: relative;
  z-index: 2;
}

.cta-action p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 18px;
}

.footer-brush {
  bottom: 0;
  height: 170px;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 88px;
}

.footer {
  background: #020202;
  color: #fff;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
  margin: 0 auto;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 34px;
}

.brand-invert {
  color: #fff;
}

.footer h3 {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.footer p,
.footer small {
  color: #deded8;
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin: 15px 0 0;
}

.footer a {
  color: #fff;
  display: block;
  line-height: 1.8;
  transition: color 160ms ease;
  font-size: 12px;
  font-weight: 500;
  padding-block: 6px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--red);
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.socials a {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}

.contact-panel {
  background: rgba(0, 0, 0, 0.58);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 50;
}

.contact-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.panel-card {
  background: var(--paper-clean);
  height: 100%;
  overflow-y: auto;
  margin-left: auto;
  max-width: 430px;
  padding: 34px;
  position: relative;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.contact-panel.is-open .panel-card {
  transform: translateX(0);
}

.panel-close {
  align-items: center;
  background: var(--ink);
  border: 0;
  color: #fff;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
}

.panel-card h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 58px;
  line-height: 0.92;
  margin: 36px 0 30px;
  max-width: 260px;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 16px;
}

.contact-hint, .contact-error, .contact-result p { font-size: 14px; line-height: 1.6; font-weight: 400; margin: 0; }
.contact-hint { color: #50504c; }
.contact-error { color: #a12b22; border-left: 2px solid currentColor; padding-left: 12px; }
.contact-result { display: grid; gap: 24px; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

label {
  display: grid;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

input,
textarea {
  background: #f2f2ef;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  min-height: 46px;
  padding: 12px 14px;
  resize: vertical;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  outline: 2px solid color-mix(in srgb, var(--red) 28%, transparent);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .about-copy,
  .experience,
  .architecture,
  .service-card,
  .meter,
  .work-card,
  .testimonial-card {
    animation: editorial-rise 420ms ease both;
  }

  .hero-visual {
    animation-delay: 80ms;
  }

  .service-card:nth-child(2),
  .meter:nth-child(2),
  .work-card:nth-child(2),
  .testimonial-card:nth-child(2) {
    animation-delay: 60ms;
  }

  .service-card:nth-child(3),
  .meter:nth-child(3),
  .work-card:nth-child(3),
  .testimonial-card:nth-child(3) {
    animation-delay: 120ms;
  }

  .service-card:nth-child(4),
  .meter:nth-child(4),
  .work-card:nth-child(4) {
    animation-delay: 180ms;
  }

  @keyframes editorial-rise {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 112px;
  }
}

@media (max-width: 1000px) {
  .skills {
    gap: 28px;
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .skill-columns {
    column-gap: 24px;
  }

  .topbar {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .hero {
    gap: 24px;
  }

  .hero h1 {
    font-size: 96px;
  }
}

@media (max-width: 800px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .hero,
  .section-grid,
  .skills,
  .cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 32px;
    gap: 32px;
  }

  .hero-visual {
    justify-self: start;
    max-width: 520px;
  }

  .architecture {
    max-width: 480px;
  }

  .section-grid,
  .skills {
    gap: 26px;
  }

  .experience {
    margin-top: 0;
    max-width: 290px;
  }

  .service-grid {
    gap: 26px;
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-columns {
    column-gap: 40px;
  }

  .work-head {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    flex-wrap: wrap;
    justify-content: start;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .award-row {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .topbar {
    gap: 10px;
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 17px;
  }

  .identity-emblem {
    height: 34px;
    width: 34px;
  }

  .identity-wordmark strong {
    font-size: 14px;
  }

  .talk-button {
    display: none;
  }

  .mobile-menu {
    left: 16px;
    right: 16px;
    top: 100%;
  }

  .hero,
  .section-grid,
  .work,
  .clients,
  .testimonials,
  .cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta h2 { font-size: 44px; }
  .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer > div:first-child, .footer > div:last-child { grid-column: 1 / -1; }
  .footer a { min-height: 44px; display: flex; align-items: center; }

  .hero {
    padding-top: 24px;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 88px;
  }

  .hero-visual {
    margin-top: 0;
  }

  .signature-row {
    gap: 28px;
  }

  .services {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-grid,
  .skill-columns,
  .work-grid,
  .brand-row,
  .award-row,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .skills {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .skills h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 12px;
    font-size: 42px;
  }

  .skills-title-accent {
    margin-top: 0;
  }

  .skill-item {
    padding: 20px 0;
  }

  .brand-row {
    align-items: start;
    gap: 18px;
  }

  .client-mark {
    min-height: 0;
  }

  .award-row p {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    text-align: left;
  }

  .cta {
    gap: 24px;
    padding-bottom: 34px;
    padding-top: 28px;
  }

  .footer {
    gap: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-brush {
    opacity: 0.8;
  }

  .panel-card {
    max-width: none;
    padding: 28px 20px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
