:root {
  --red: #e02820;
  --red-dark: #a80000;
  --black: #050505;
  --ink: #171717;
  --muted: #66625f;
  --line: #e9e4de;
  --paper: #ffffff;
  --soft: #f7f5f2;
  --soft-2: #eee9e3;
  --shadow: 0 22px 70px rgba(5, 5, 5, 0.12);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(233, 228, 222, 0.74);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding-block: 12px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
}

.brand img {
  width: clamp(132px, 12vw, 168px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: #282828;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--black);
  color: #fff;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--black);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 118px clamp(18px, 4vw, 48px) 26px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #111;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06));
  content: "";
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: opacity 260ms ease, transform 900ms ease;
}

.hero-bg img.is-switching {
  opacity: 0.35;
  transform: scale(1.04);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  width: min(var(--max), 100%);
  min-height: 560px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ff5b53;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.3vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--black);
}

.button-outline {
  border-color: var(--black);
  color: var(--black);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--black);
  color: #fff;
}

.finder-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.finder-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.finder-card-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finder-card-header strong {
  color: var(--red);
  font-size: 0.9rem;
}

.finder-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finder-field input,
.finder-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.finder-field input:focus,
.finder-field select:focus {
  border-color: var(--red);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.finder-field select {
  appearance: none;
}

.finder-button {
  width: 100%;
  margin-top: 20px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-controls button,
.quote-controls button,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-progress {
  position: relative;
  flex: 1;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--red);
  transition: width 240ms ease;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 36px));
  margin: -38px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.trust-bar div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
}

.trust-bar strong {
  display: block;
  font-size: 1.05rem;
}

.trust-bar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 48px);
}

.section > * {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

h2,
h3 {
  margin: 0;
  color: var(--black);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.58rem);
  line-height: 1.18;
}

.section-head > p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 0;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 60px rgba(5, 5, 5, 0.08);
}

.featured-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--soft-2);
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.featured-project:hover .featured-media img {
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 50px);
}

.featured-content p {
  margin: 0;
  color: var(--muted);
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.featured-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.featured-thumb {
  aspect-ratio: 1.2;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: var(--soft);
}

.featured-thumb.is-active {
  border-color: var(--red);
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.project-filters button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.project-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px auto;
  color: var(--muted);
  font-weight: 800;
}

.text-button {
  color: var(--red);
}

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

.project-card {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(224, 40, 32, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  outline: none;
}

.project-card-media {
  position: relative;
  aspect-ratio: 1.34;
  overflow: hidden;
  background: var(--soft-2);
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-card:hover .project-card-media img,
.project-card:focus-visible .project-card-media img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(224, 40, 32, 0.94);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.project-card-body p {
  margin: 0;
  color: var(--muted);
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-empty {
  grid-column: 1 / -1;
  padding: 46px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  text-align: center;
}

.section-work {
  background: var(--soft);
}

.work-tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.work-tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.work-tab-list button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.work-tab-list button.is-active,
.work-tab-list button:hover,
.work-tab-list button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.work-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 0;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.work-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.work-panel div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
}

.work-panel span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-panel p {
  margin: 0;
  color: var(--muted);
}

.section-company {
  background: #fff;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.company-media {
  position: relative;
}

.company-media img {
  width: 100%;
  aspect-ratio: 1.04;
  border-radius: var(--radius);
  object-fit: cover;
}

.company-card {
  position: absolute;
  right: -28px;
  bottom: 28px;
  max-width: 270px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
}

.company-card strong,
.company-card span {
  display: block;
}

.company-card strong {
  font-size: 2rem;
  line-height: 1;
}

.company-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.company-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.company-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.company-list span {
  padding: 13px 16px;
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--soft);
  font-weight: 800;
}

.section-experience {
  background: var(--black);
  color: #fff;
}

.section-experience h2,
.section-experience h3 {
  color: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.quote-card,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.quote-card {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(30px, 5vw, 56px);
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.quote-card cite {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-weight: 900;
}

.quote-controls {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  color: #fff;
}

.faq-card {
  padding: clamp(24px, 4vw, 36px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.section-contact {
  background: var(--soft);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.contact-shell p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 46px rgba(5, 5, 5, 0.08);
}

.contact-card address {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer img {
  width: 142px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--black);
  font-weight: 900;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  gap: 8px;
}

.floating-actions a {
  min-height: 42px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.22);
}

.floating-actions a:first-child {
  background: var(--red);
}

.project-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.dialog-media {
  position: relative;
  min-height: min(76vh, 720px);
  background: #080808;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
}

.dialog-content {
  display: grid;
  align-content: start;
  gap: 18px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: clamp(28px, 4vw, 42px);
}

.dialog-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.dialog-content p {
  margin: 0;
  color: var(--muted);
}

.dialog-counter {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.dialog-thumb {
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  background: var(--soft);
  overflow: hidden;
}

.dialog-thumb.is-active {
  border-color: var(--red);
}

.dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 56px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 36px rgba(5, 5, 5, 0.08);
  }

  .site-header.menu-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-shell,
  .hero-bottom,
  .featured-project,
  .work-tabs,
  .work-panel,
  .company-layout,
  .experience-grid,
  .contact-shell,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-shell {
    align-content: center;
    min-height: auto;
  }

  .hero-bottom {
    align-items: stretch;
  }

  .hero-controls {
    min-width: 0;
  }

  .featured-media,
  .work-panel img {
    min-height: 380px;
  }

  .company-card {
    right: 18px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 900px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }

  .hero-actions,
  .contact-card {
    display: grid;
  }

  .hero-stats,
  .trust-bar,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-bar div {
    border-bottom-color: var(--line);
  }

  .hero-stats div:last-child,
  .trust-bar div:last-child {
    border-bottom: 0;
  }

  .trust-bar {
    margin-top: 18px;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .featured-media,
  .work-panel img {
    min-height: 300px;
  }

  .featured-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .quote-card blockquote {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .floating-actions {
    display: none;
  }

  .project-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
  }

  .dialog-layout {
    min-height: 100vh;
    border-radius: 0;
  }

  .dialog-media,
  .dialog-media img {
    min-height: 45vh;
  }

  .dialog-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
