:root {
  --bg: #f4f1ea;
  --surface: #fffdf8;
  --surface-soft: #ebe6dc;
  --surface-strong: #34402f;
  --text: #23261f;
  --muted: #777b6d;
  --line: #ded7ca;
  --accent: #c8a24a;
  --accent-strong: #8f6a20;
  --teal: #0f766e;
  --rose: #c2415b;
  --blue: #315b94;
  --shadow: 0 24px 60px rgba(43, 49, 37, 0.14);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.has-modal {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  width: min(100% - 28px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  margin: 0 calc(50% - 50vw) 34px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--surface-strong);
  color: #f8f4e9;
  box-shadow: 0 12px 30px rgba(35, 38, 31, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.55);
  border-radius: 999px;
}

.brand__logo {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(200, 162, 74, 0.75);
  border-radius: 50%;
  background: #fffdf8;
  object-fit: cover;
  padding: 3px;
}

.site-nav {
  display: flex;
  flex: 0 1 auto;
  justify-content: flex-end;
  gap: 8px;
  border-top: 0;
  padding-top: 0;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: #e5e0d5;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 253, 248, 0.12);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.section {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.section--compact {
  padding: 24px 0 34px;
}

.brand-banner {
  overflow: hidden;
  width: min(100%, 860px);
  margin: 0 auto 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(35, 38, 31, 0.08);
}

.brand-banner img {
  width: 100%;
  max-height: 260px;
  aspect-ratio: 851 / 315;
  object-fit: contain;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  gap: 36px;
  min-height: auto;
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero__lead,
.contact p,
.catalog-heading p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero__actions,
.project-card__actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__actions {
  margin-top: 30px;
}

.button,
.contact-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--surface-strong);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(52, 64, 47, 0.2);
}

.button--ghost,
.contact-link {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.8);
  color: var(--surface-strong);
}

.hero-summary {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero-summary article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.08);
  padding: 18px;
}

.hero-summary span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-summary h2 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
}

.hero-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.stats,
.projects,
.services-grid,
.skills-grid {
  display: grid;
  gap: 16px;
}

.stats {
  grid-template-columns: repeat(3, 1fr);
}

.stat,
.project-card,
.service-card,
.skill-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.08);
}

.stat {
  padding: 22px;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--surface-strong);
  font-size: 2rem;
}

.stat span,
.project-card p,
.service-card p,
.skill-card p {
  color: var(--muted);
  line-height: 1.65;
}

.catalog-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.projects {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  overflow: hidden;
}

.project-card__image {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.project-card__body {
  padding: 18px;
}

.project-card__category {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card__meta,
.skill-card__tags,
.project-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.project-card__actions {
  margin-top: 18px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.project-card__actions .button {
  flex: 1;
  min-width: 118px;
}

.tag {
  border-radius: 999px;
  background: #ece6d8;
  color: var(--surface-strong);
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.services {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid,
.skills-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.skill-card {
  min-height: 210px;
  padding: 24px;
}

.service-card {
  background: var(--surface-strong);
  color: #ffffff;
}

.service-card p {
  color: #d8d3c7;
}

.skill-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: #ffffff;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 44px;
  padding-bottom: 90px;
}

.contact-links {
  margin-top: 24px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--surface-strong);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 13px 14px;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.18);
}

textarea {
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--accent-strong);
  font-weight: 900;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.project-modal.is-open {
  display: block;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 38, 31, 0.38);
}

.project-modal__sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 26px;
  width: min(100% - 28px, 980px);
  max-height: min(74vh, 620px);
  margin: 0 auto 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 -24px 80px rgba(35, 38, 31, 0.22);
  padding: 28px;
}

.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  font-size: 1.7rem;
  cursor: pointer;
}

.project-modal__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.project-modal__content {
  padding-right: 46px;
}

.project-modal__content p {
  color: var(--muted);
  line-height: 1.75;
}

.project-modal__content .button {
  margin-top: 22px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.modal-actions .button {
  margin-top: 0;
}

.modal-actions [hidden] {
  display: none;
}

.simple-page {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 150px);
  padding: 58px 0 90px;
}

.simple-page > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.simple-page h1 {
  max-width: 900px;
}

.simple-page h2 {
  font-size: 1.55rem;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.simple-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.08);
  padding: 24px;
}

.simple-card p {
  color: var(--muted);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.08);
  padding: 24px;
}

.team-card__photo {
  position: relative;
  overflow: hidden;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  border: 2px solid rgba(200, 162, 74, 0.75);
  border-radius: 50%;
  background: var(--surface-strong);
}

.team-card__photo img,
.team-card__avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-card__photo img {
  z-index: 2;
  object-fit: cover;
}

.team-card__avatar {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
}

.team-card h2 {
  font-size: 2rem;
}

.team-card p,
.team-note p {
  color: var(--muted);
  line-height: 1.65;
}

.team-card .button {
  margin-top: 18px;
}

.team-note {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  align-items: end;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.team-note h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pricing-page {
  align-content: start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.08);
  padding: 24px;
}

.pricing-card span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-card h2 {
  margin: 10px 0;
  font-size: 1.55rem;
}

.pricing-card p,
.pricing-callout p {
  color: var(--muted);
  line-height: 1.65;
}

.pricing-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: #ffffff;
  padding: 24px;
}

.pricing-callout .eyebrow,
.pricing-callout p {
  color: #e5e0d5;
}

.pricing-callout h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.project-directory {
  align-content: start;
}

.project-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.project-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.08);
  padding: 16px;
}

.project-row__image {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: var(--radius);
  object-fit: cover;
}

.project-row__content {
  display: grid;
  align-content: center;
}

.project-row__content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.project-row__content p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.project-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.project-row__meta span {
  border-radius: 999px;
  background: #ece6d8;
  color: var(--surface-strong);
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.project-browser {
  margin-top: 30px;
}

.project-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.project-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.project-filter {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  color: var(--surface-strong);
  padding: 18px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(35, 38, 31, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.project-filter.is-active {
  background: var(--surface-strong);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(52, 64, 47, 0.18);
}

.project-filter:hover {
  transform: translateY(-2px);
}

.project-filter strong {
  font-size: 1.04rem;
}

.project-filter span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.project-filter.is-active span {
  color: #e5e0d5;
}

.project-search {
  display: grid;
  gap: 8px;
  color: var(--surface-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.project-search input {
  min-height: 42px;
}

.project-count {
  color: var(--muted);
  font-weight: 900;
  justify-self: end;
  margin-top: -58px;
  padding-right: 8px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 36px rgba(35, 38, 31, 0.08);
}

.case-card__image {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.case-card__body {
  padding: 18px;
}

.case-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--surface-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.case-card__logo,
.case-card__mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
}

.case-card__logo {
  object-fit: cover;
}

.case-card__mark {
  display: grid;
  place-items: center;
  background: var(--surface-strong);
  color: #fffdf8;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
}

.case-card__body h2 {
  margin: 12px 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.case-card__body p {
  color: var(--muted);
  line-height: 1.62;
}

.case-card__facts,
.case-facts {
  display: grid;
  gap: 8px;
}

.case-card__facts {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.case-fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.case-fact span {
  flex: 0 0 auto;
}

.case-fact strong {
  color: var(--surface-strong);
  text-align: right;
}

.case-card__body .button {
  width: 100%;
  margin-top: 18px;
}

.project-detail__bullets {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.project-detail__fit {
  margin-top: 18px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  font-weight: 800;
}

.project-detail__empty {
  margin: 0;
  color: var(--muted);
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.case-modal.is-open {
  display: block;
}

.case-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 38, 31, 0.42);
}

.case-modal__sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) 1fr;
  gap: 26px;
  width: min(100% - 28px, 1040px);
  max-height: min(82vh, 680px);
  margin: 0 auto 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 -24px 80px rgba(35, 38, 31, 0.25);
  padding: 28px;
}

.case-modal__image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
}

.case-modal__content {
  padding-right: 48px;
}

.case-modal__content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

.case-modal__content p {
  color: var(--muted);
  line-height: 1.72;
}

.case-facts {
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.case-facts .case-fact {
  display: grid;
  gap: 5px;
  justify-content: initial;
  border-right: 1px solid var(--line);
  padding-right: 14px;
}

.case-facts .case-fact:last-child {
  border-right: 0;
}

.case-facts .case-fact strong {
  text-align: left;
}

.case-sections {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.case-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.case-section h3,
.case-modal__subhead {
  margin: 0 0 6px;
  color: var(--surface-strong);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-section p {
  margin: 0;
}

.case-modal__subhead {
  margin-top: 18px;
}

.case-modal__company {
  color: var(--accent-strong);
  font-weight: 900;
}

.case-modal__note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f0e6;
  padding: 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.case-modal__content .button {
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .projects,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 22px, var(--max-width));
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand__logo {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: var(--radius);
    background: var(--surface-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav--static {
    position: static;
    display: flex;
    grid-column: 1 / -1;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero,
  .catalog-heading,
  .contact,
  .project-modal__sheet,
  .project-row,
  .project-tools,
  .case-modal__sheet {
    grid-template-columns: 1fr;
  }

  .project-filters,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .project-count {
    justify-self: start;
    margin-top: 0;
    padding-right: 0;
  }

  .case-modal__image {
    min-height: 240px;
  }

  .case-modal__content {
    padding-right: 0;
  }

  .case-facts {
    grid-template-columns: 1fr 1fr;
  }

  .case-facts .case-fact {
    border-right: 0;
    padding-right: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .stats,
  .projects,
  .services-grid,
  .skills-grid,
  .simple-grid,
  .team-grid,
  .team-note,
  .pricing-grid,
  .pricing-callout {
    grid-template-columns: 1fr;
  }

  .project-modal__sheet {
    gap: 16px;
    max-height: 82vh;
    padding: 20px;
  }

  .project-modal__image {
    aspect-ratio: 1.8;
  }

  .project-modal__content {
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 44px 0;
  }

  h1 {
    font-size: 3rem;
  }

  .hero__actions .button,
  .contact-link {
    width: 100%;
  }

  .brand-banner img {
    aspect-ratio: 851 / 315;
  }
}
