@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --page-max: 1560px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
  font-family: "Outfit", Arial, sans-serif;
  overflow-x: hidden;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 96px, var(--page-max));
  margin: 0 auto;
  padding: 38px 0;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 58px;
  margin-left: auto;
}

.header-nav a {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 100;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.header-nav a::after {
  content: attr(data-label);
  display: block;
  height: 0;
  overflow: hidden;
  font-weight: 700;
  visibility: hidden;
}

.header-nav a.active,
.header-nav a:hover {
  color: #ff4a12;
  font-weight: 700;
}

.budget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 40px;
  margin-left: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ff4a12;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 130px max(48px, calc((100vw - var(--page-max)) / 2)) 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 48%, rgba(255, 74, 18, 0.16), transparent 26%),
    radial-gradient(circle at 16% 78%, rgba(17, 82, 78, 0.2), transparent 23%),
    #050505;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(rgba(255, 118, 22, 0.38) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.7px);
  background-position: 0 0, 26px 22px;
  background-size: 70px 70px, 96px 96px;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 92%, transparent);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(58vw, 760px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 26% 49%, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 34%, rgba(5, 5, 5, 0.54) 58%, rgba(5, 5, 5, 0) 82%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 48%, rgba(5, 5, 5, 0) 100%);
}

.canvas-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.canvas-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
}

.hero-content h1 {
  margin: 0;
  color: #fff8f3;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-content h1 strong {
  display: block;
  font-weight: 800;
}

.hero-content p {
  max-width: 260px;
  margin: 22px 0 0;
  color: #fff8f3;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 52px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 26px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.hero-button-primary {
  gap: 18px;
  min-width: 190px;
  background: #ff3d0b;
}

.hero-button-primary::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}

.hero-button-secondary {
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.08);
}

.next-section-indicator {
  position: absolute;
  right: max(48px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid currentColor;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.indicator-text {
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.48),
    0 0 14px rgba(255, 255, 255, 0.26),
    0 0 28px rgba(255, 255, 255, 0.14);
}

.indicator-arrow {
  font-size: 22px;
  line-height: 0.75;
  text-shadow: none;
}

.services-section {
  min-height: 430px;
  padding-top: 58px;
  background: #fdf6f1;
}

.services-kicker {
  margin: 0;
  color: #fd9400;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.services-title {
  max-width: none;
  margin: 18px auto 0;
  color: #151515;
  font-size: clamp(32px, 3.15vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.services-title strong {
  color: #ff3d0b;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 128px 1px 128px minmax(220px, 1fr);
  align-items: start;
  gap: 42px;
  width: min(1120px, calc(100% - 48px));
  margin: 48px auto 0;
}

.service-copy h3 {
  margin: 0 0 14px;
  color: #151515;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-copy p {
  margin: 0;
  color: #4a4642;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.05;
}

.service-copy-left {
  text-align: right;
}

.service-copy-left p {
  text-align: right;
}

.service-copy-right {
  text-align: left;
}

.service-copy-right p {
  text-align: left;
}

.service-icon {
  display: grid;
  place-items: center;
  padding-top: 2px;
}

.service-icon img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon:hover img {
  transform: translateY(-2px);
}

.service-divider {
  width: 1px;
  height: 190px;
  margin-top: -31px;
  background: #ff3d0b;
}

.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.why-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px clamp(64px, 7vw, 150px);
}

.why-panel-dark {
  background: #151515;
}

.why-panel-orange {
  background: #ff3d0b;
}

.quote-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 620px);
  margin: 0;
  color: #fdf6f1;
  text-align: center;
}

.quote-mark {
  height: 54px;
  color: #fd9400;
  font-size: 96px;
  font-weight: 800;
  line-height: 0.75;
}

.quote-card p {
  margin: 34px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.quote-card cite {
  margin-top: 62px;
  color: #fd9400;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.project-cta-section {
  display: grid;
  grid-template-columns: 92px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 42px;
  min-height: 170px;
  padding: 34px max(48px, calc((100vw - var(--page-max)) / 2));
  background: #fdf6f1;
}

.project-cta-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.project-cta-section h2 {
  max-width: 560px;
  margin: 0;
  color: #151515;
  font-size: clamp(32px, 3.15vw, 44px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.project-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 190px;
  min-height: 40px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ff3d0b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.project-cta-button::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}

.portfolio-section {
  min-height: 760px;
  padding: 64px max(48px, calc((100vw - var(--page-max)) / 2)) 90px;
  background: #151515;
  color: #fdf6f1;
}

.portfolio-kicker {
  margin: 0;
  color: #fd9400;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-title {
  margin: 18px auto 0;
  color: #fdf6f1;
  font-size: clamp(32px, 3.15vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
}

.portfolio-title strong {
  color: #ff3d0b;
  font-weight: 800;
}

.portfolio-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
  margin-top: 32px;
}

.portfolio-tabs button {
  min-height: 32px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fdf6f1;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 320ms cubic-bezier(0.22, 1, 0.36, 1), color 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-tabs button.active {
  background: #ff3d0b;
  transform: scale(1.015);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  align-items: start;
  gap: 16px;
  width: min(1320px, 100%);
  margin: 58px auto 0;
}

.portfolio-carousel,
.portfolio-carousel-viewport {
  display: contents;
}

.portfolio-carousel-track {
  display: contents;
}

.portfolio-carousel-controls {
  display: none;
}

.portfolio-carousel-button {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(253, 246, 241, 0.72);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: #fdf6f1;
  transition: background-color 220ms ease, border-color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.portfolio-carousel-button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

.portfolio-carousel-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.portfolio-carousel-button[data-carousel-direction="prev"]::before {
  transform: rotate(225deg) translate(-1px, 1px);
}

.portfolio-carousel-button:hover {
  background: #ff3d0b;
  border-color: #ff3d0b;
  transform: translateY(-1px);
}

.portfolio-carousel-button:disabled {
  cursor: default;
  opacity: 0.4;
}

.portfolio-carousel-button:disabled:hover {
  background: transparent;
  border-color: rgba(253, 246, 241, 0.72);
  transform: none;
}

.portfolio-feature,
.portfolio-card {
  border-radius: 8px;
  border: 0;
  outline: 0;
  box-shadow: none;
  overflow: hidden;
  will-change: filter, opacity, transform;
  transition: filter 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 460ms cubic-bezier(0.22, 1, 0.36, 1), transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-feature.is-muted,
.portfolio-card.is-muted {
  opacity: 0.34;
  filter: grayscale(0.55) brightness(0.72);
  transform: scale(0.985);
}

.portfolio-feature {
  grid-row: span 2;
  min-height: 322px;
  background: #fdf6f1;
  color: #151515;
}

.portfolio-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.02);
}

.portfolio-card {
  display: grid;
  min-height: 153px;
  aspect-ratio: 1;
  place-items: center;
  text-decoration: none;
}

.portfolio-card:not(.is-muted):hover {
  transform: scale(1.015);
}

.scroll-reveal.is-visible.portfolio-card:not(.is-muted):hover {
  transform: scale(1.015);
}

.scroll-reveal.is-visible.portfolio-card.is-muted,
.scroll-reveal.is-visible.portfolio-feature.is-muted {
  transform: scale(0.985);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 370px) 1fr;
  min-height: 465px;
  background: #fdf6f1;
  color: #151515;
}

.about-photo {
  min-height: 465px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(360px, 560px) 1px 1fr;
  align-items: center;
  gap: clamp(42px, 4vw, 72px);
  padding: 64px max(48px, calc((100vw - var(--page-max)) / 2)) 62px clamp(56px, 5vw, 96px);
}

.about-kicker {
  margin: 0 0 14px;
  color: #fd9400;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 500px;
  margin: 0 0 28px;
  color: #151515;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.about-copy h2 strong {
  color: #ff3d0b;
  font-weight: 700;
}

.about-copy p:not(.about-kicker) {
  max-width: 570px;
  margin: 0 0 14px;
  color: #151515;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.12;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-divider {
  width: 1px;
  height: 142px;
  background: #ff3d0b;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(34px, 4vw, 70px);
}

.about-pillar {
  min-width: 0;
}

.about-pillar img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  display: block;
  margin-bottom: 26px;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-pillar:hover img {
  transform: translateY(-2px);
}

.about-pillar h3 {
  max-width: 150px;
  margin: 0 0 16px;
  color: #151515;
  font-size: 16px;
  font-weight: 800;
  line-height: 0.95;
}

.about-pillar p {
  max-width: 150px;
  margin: 0;
  color: #151515;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  align-items: center;
  gap: clamp(82px, 9vw, 170px);
  min-height: 445px;
  padding: 78px max(48px, calc((100vw - var(--page-max)) / 2));
  background: #151515;
  color: #fdf6f1;
}

.contact-kicker {
  margin: 0 0 18px;
  color: #fd9400;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin: 0;
  color: #fdf6f1;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-copy > p:last-child {
  margin: 26px 0 0;
  color: #fdf6f1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  align-items: center;
  gap: clamp(70px, 8vw, 140px);
}

.contact-action {
  display: grid;
  grid-template-columns: 92px auto;
  align-items: center;
  gap: 22px;
  color: #fdf6f1;
  text-decoration: none;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-action:hover {
  transform: translateY(-3px);
}

.contact-icon {
  display: grid;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  place-items: center;
  background: #ff3d0b;
  color: #ffffff;
}

.contact-icon svg {
  width: 46px;
  height: 46px;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.contact-action > span:last-child {
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1;
 }

.why-kicker {
  margin: 0;
  color: #ff3d0b;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.why-content {
  width: min(100%, 640px);
  text-align: left;
}

.why-title {
  margin: 26px 0 0;
  color: #fdf6f1;
  font-size: clamp(32px, 3.15vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.why-title span {
  display: block;
  color: #fd9400;
}

.why-title-line {
  width: 48px;
  height: 3px;
  margin-top: 28px;
  border-radius: 999px;
  background: #ff3d0b;
}

.why-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  color: #fdf6f1;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.why-list li::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #fd9400;
  border-radius: 50%;
  color: #ff3d0b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 40px);
    padding: 28px 0;
  }

  .brand img {
    width: 96px;
  }

  .header-nav {
    gap: 18px;
    margin-left: 28px;
  }

  .header-nav a {
    font-size: 10px;
  }

  .budget-button {
    display: none;
  }

  .hero-section {
    min-height: 100svh;
    align-items: flex-end;
    padding: 156px 20px 86px;
  }

  .hero-section::after {
    width: 100%;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.12) 48%, rgba(5, 5, 5, 0.72) 72%, rgba(5, 5, 5, 0.98) 100%),
      radial-gradient(ellipse at 34% 72%, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.74) 34%, rgba(5, 5, 5, 0) 70%);
  }

  .hero-content h1 {
    font-size: clamp(38px, 10.5vw, 50px);
  }

  .hero-content p {
    max-width: 250px;
    margin-top: 22px;
    font-size: 12px;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 32px;
  }

  .hero-button {
    width: 100%;
    min-height: 52px;
    font-size: 17px;
  }

  .hero-button-primary,
  .hero-button-secondary {
    min-width: 0;
  }

  .next-section-indicator {
    right: 20px;
    bottom: 28px;
    font-size: 10px;
  }

  .services-section {
    min-height: auto;
    padding: 54px 20px 64px;
  }

  .services-title {
    font-size: clamp(30px, 8vw, 42px);
    white-space: normal;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    margin-top: 42px;
  }

  .service-copy,
  .service-copy-left,
  .service-copy-right {
    text-align: center;
  }

  .service-copy h3 {
    font-size: 20px;
  }

  .service-copy p {
    max-width: 310px;
    margin-inline: auto;
    font-size: 15px;
    text-align: center;
  }

  .service-copy-left p,
  .service-copy-right p {
    text-align: center;
  }

  .service-icon img {
    width: 112px;
    height: 112px;
  }

  .service-divider {
    width: 172px;
    height: 1px;
    margin: 4px auto;
  }

  .why-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .why-panel {
    min-height: 360px;
    padding: 48px 20px;
  }

  .why-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .why-list li {
    font-size: 12px;
  }

  .quote-card p {
    font-size: clamp(26px, 8vw, 34px);
  }

  .quote-card cite {
    margin-top: 42px;
    font-size: 20px;
  }

  .project-cta-section {
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding: 34px 20px;
  }

  .project-cta-icon {
    width: 72px;
    height: 72px;
  }

  .project-cta-section h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .project-cta-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    font-size: 17px;
  }

  .portfolio-section {
    padding: 54px 20px 70px;
  }

  .portfolio-tabs {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .portfolio-tabs button {
    flex: 0 0 auto;
    font-size: 11px;
  }

  .portfolio-tabs button[data-filter="all"] {
    display: none;
  }

  .portfolio-grid {
    --mobile-card-gap: 12px;
    --mobile-card-size: calc((100vw - 52px) / 2);
    --mobile-carousel-height: calc((var(--mobile-card-size) * 2) + var(--mobile-card-gap));
    position: relative;
    grid-template-columns: 1fr;
    gap: var(--mobile-card-gap);
    margin-top: 38px;
  }

  .portfolio-feature {
    grid-row: auto;
    height: var(--mobile-carousel-height);
    min-height: 0;
  }

  .portfolio-carousel {
    display: grid;
    gap: 14px;
    min-width: 0;
  }

  .portfolio-carousel-viewport {
    display: block;
    overflow: hidden;
    min-width: 0;
    min-height: var(--mobile-carousel-height);
  }

  .portfolio-grid.is-landing-slide .portfolio-carousel-viewport {
    display: none;
  }

  .portfolio-carousel-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, var(--mobile-card-size));
    gap: var(--mobile-card-gap);
    min-height: var(--mobile-carousel-height);
    align-content: start;
  }

  .portfolio-carousel-controls {
    position: static;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    transform: none;
  }

  .portfolio-carousel-button {
    width: 44px;
    height: 44px;
  }

  .portfolio-card {
    height: var(--mobile-card-size);
    min-height: 0;
  }

  .portfolio-card.is-carousel-hidden,
  .portfolio-feature.is-carousel-hidden {
    display: none;
  }

  .portfolio-grid.is-carousel-switching .portfolio-feature,
  .portfolio-grid.is-carousel-switching .portfolio-card:not(.is-carousel-hidden) {
    opacity: 0.26;
    filter: brightness(0.7);
    transform: translateY(4px) scale(0.985);
  }

  .about-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-photo {
    min-height: 360px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 20px 58px;
  }

  .about-copy h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .about-divider {
    width: 120px;
    height: 1px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-pillar {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .about-pillar img {
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
  }

  .about-pillar h3,
  .about-pillar p {
    max-width: 260px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding: 54px 20px 64px;
  }

  .contact-copy h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .contact-copy > p:last-child {
    font-size: 16px;
  }

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

  .contact-action {
    grid-template-columns: 70px auto;
    gap: 18px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
  }

  .contact-icon svg {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
