@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap");

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

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

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

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

:root {
  --font-heading: "Cairo", sans-serif;
  --font-body: "Cairo", sans-serif;
  --font-ui: "Roboto Custom", "Cairo", sans-serif;
  --bg: #111111;
  --bg-soft: #171717;
  --bg-soft-2: #1c1c1c;
  --line: #323232;
  --text: #f2f2f2;
  --muted: #b7b7b7;
  --accent: #f08b1c;
  --accent-soft: rgba(240, 139, 28, 0.14);
  --container-max: 1400px;
  --header-height: 74px;
}

html {
  box-sizing: border-box;
  background: var(--bg);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 8, 8, 0.72);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--container-max), calc(100% - 120px));
  margin: 0 auto;
}

.page {
  overflow: hidden;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.65));
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: inline-flex;
}

.header__logo img {
  display: block;
}

.nav-toggle {
  display: grid;
  gap: 5px;
  justify-items: stretch;
  align-content: center;
  width: 44px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
}

.nav {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100vh;
  border-left: 1px solid var(--line);
  background: var(--bg-soft);
  padding: calc(var(--header-height) + 24px) 28px 30px;
  display: grid;
  align-content: start;
  gap: 10px;
  transform: translateX(102%);
  transition: transform 0.24s ease;
}

.nav.is-open {
  transform: translateX(0);
}

.nav__link {
  border: 1px solid var(--line);
  background: #121212;
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: clamp(540px, 68vw, 864px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 30px) 0 64px;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.25) 40%, rgba(10, 10, 10, 0.7) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__logo {
  width: clamp(260px, 48vw, 560px);
  display: block;
  margin: 0 auto;
}

.hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 86px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero__down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}

.home-page .header {
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  transition: opacity 0.26s ease;
}

.home-page.is-after-hero .header {
  opacity: 0;
  pointer-events: none;
}

.home-page .header .container {
  width: calc(100% - 56px);
}

.home-page .header__inner {
  height: auto;
  align-items: flex-start;
  padding-top: 16px;
}

.home-page .header__logo img {
  width: 144px;
  height: auto;
}

.home-page .nav-toggle {
  width: 26px;
  height: 18px;
  gap: 4px;
}

.home-page .nav-toggle span {
  height: 2px;
}

.home-page .hero--home {
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  padding: 0;
  background-position: center;
}

.home-page .hero--home::before {
  background:
    radial-gradient(circle at 50% 58%, rgba(6, 8, 10, 0.04) 0%, rgba(6, 8, 10, 0.48) 76%, rgba(6, 8, 10, 0.84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.5) 100%);
}

.home-page .hero__inner {
  margin-top: -40px;
}

.home-page .hero__logo {
  width: 655px;
  height: 54px;
  object-fit: contain;
}

.home-page .hero__subtitle {
  margin-top: 14px;
  width: min(444px, calc(100vw - 56px));
  height: 21px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  font-family: "Work Sans", var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: #787878;
}

.home-page .hero__down {
  bottom: 70px;
  width: 24px;
  height: 34px;
  display: grid;
  place-content: center;
  gap: 2px;
}

.home-page .hero__down span {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
}

.home-page .hero__down span:first-child {
  margin-bottom: -8px;
  opacity: 0.82;
}

.home-page .hero__down span:last-child {
  opacity: 1;
}

.section {
  padding: 34px 0;
}

.section--tight {
  padding-top: 16px;
}

.panel {
  background: var(--bg-soft);
}

.panel--padded {
  padding: clamp(18px, 3vw, 34px);
}

.eyebrow {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: clamp(24px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: lowercase;
}

.section-text {
  margin: 0;
  color: #e2e2e2;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.section-copy p {
  margin: 0;
  color: #e2e2e2;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
}

.section-copy p + p {
  margin-top: 14px;
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 40px;
  align-items: stretch;
}

.lead-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.merits {
  display: grid;
  gap: 26px;
}

.merits__rows {
  display: grid;
  gap: 10px;
}

.merit-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--bg-soft-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
}

.merit-row__title {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.merit-row__text {
  color: #dedede;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
}

.home-page .section--home-overview {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #0a0a0c;
  overflow: hidden;
}

.home-page .section--home-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 30%, rgba(79, 88, 112, 0.24) 0%, rgba(9, 10, 12, 0) 58%),
    radial-gradient(circle at 38% 0%, rgba(85, 93, 112, 0.17) 0%, rgba(9, 10, 12, 0) 48%),
    linear-gradient(180deg, rgba(15, 18, 24, 0.72) 0%, rgba(9, 10, 12, 1) 40%, rgba(9, 10, 12, 1) 100%);
}

.home-page .section--home-overview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 112px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.86) 0%, rgba(6, 8, 12, 0) 100%);
}

.home-page .home-overview__inner {
  position: relative;
  z-index: 1;
  width: min(1568px, calc(100% - 64px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(58px, 8vh, 74px) 0 clamp(28px, 3.2vh, 38px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(14px, 1.7vh, 22px);
}

.home-page .home-overview__top,
.home-page .home-overview__bottom {
  border: 0;
  background: transparent;
  padding: 0;
}

.home-page .home-overview__top.intro-grid {
  grid-template-columns: minmax(390px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
}

.home-page .home-intro .lead-copy {
  max-width: 100%;
  gap: 16px;
}

.home-page .home-intro__title {
  color: #f2f2f2;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(32px, 2.55vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.home-page .home-intro__subtitle {
  margin-top: -10px;
  color: #ff7a00;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(24px, 1.5vw, 32px);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  text-align: right;
}

.home-page .home-intro .lead-copy > p:not(.home-intro__title) {
  color: #e6e6e6;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 400;
  line-height: 1.95;
}

.home-page .home-overview__top .media-frame {
  border: none;
  box-shadow: none;
}

.home-page .home-overview__top .media-frame img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.home-page .home-overview__bottom.merits {
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.home-page .home-merits__title {
  margin: 0;
  padding-bottom: 8px;
  color: #ff7a00;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(36px, 2.95vw, 64px);
  font-weight: 700;
  line-height: 0.95;
}

.home-page .home-overview__bottom .merits__rows {
  gap: 8px;
}

.home-page .home-overview__bottom .merit-row {
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: clamp(16px, 1.5vw, 24px);
  min-height: 52px;
  padding: 9px clamp(16px, 1.6vw, 24px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0) 0%, rgba(38, 41, 46, 0.79) 12%, rgba(30, 32, 36, 0.82) 90%, rgba(10, 10, 12, 0.45) 100%);
}

.home-page .home-overview__bottom .merit-row:nth-child(1) { margin-left: clamp(60px, 7.5vw, 144px); }
.home-page .home-overview__bottom .merit-row:nth-child(2) { margin-left: clamp(40px, 5vw, 96px); }
.home-page .home-overview__bottom .merit-row:nth-child(3) { margin-left: clamp(20px, 2.5vw, 48px); }
.home-page .home-overview__bottom .merit-row:nth-child(4) { margin-left: 0; }

.home-page .home-overview__bottom .merit-row__title {
  color: #f5f5f5;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(14px, 1.04vw, 20px);
  font-weight: 600;
  line-height: 1.12;
  text-align: right;
}

.home-page .home-overview__bottom .merit-row__text {
  color: #d9d9d9;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.45;
}

.home-page .section--home-orange {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background-image: url("assets/images/hero-6.png");
  background-size: cover;
  background-position: center;
}

.home-page .section--home-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.9) 0%, rgba(9, 11, 16, 0.76) 34%, rgba(9, 11, 16, 0.22) 62%, rgba(8, 9, 11, 0.1) 100%),
    radial-gradient(circle at 94% 50%, rgba(255, 122, 0, 0.26) 0%, rgba(255, 122, 0, 0) 34%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.72) 0%, rgba(8, 10, 14, 0.4) 52%, rgba(8, 10, 14, 0.76) 100%);
}

.home-page .home-orange__inner {
  position: relative;
  z-index: 1;
  width: min(1568px, calc(100% - 64px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(70px, 10vh, 98px) 0 clamp(66px, 9vh, 96px);
}

.home-page .home-orange__copy {
  max-width: min(980px, 66vw);
}

.home-page .home-orange__title {
  margin: 0;
  color: #f3f3f3;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(34px, 2.78vw, 58px);
  font-weight: 700;
  line-height: 1.18;
  white-space: nowrap;
}

.home-page .home-orange__title span {
  color: #ff7a00;
}

.home-page .home-orange__text {
  margin-top: clamp(28px, 3.6vh, 42px);
  display: grid;
  gap: clamp(24px, 3.4vh, 38px);
}

.home-page .home-orange__text p {
  margin: 0;
  color: #e4e4e4;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(17px, 1.28vw, 26px);
  font-weight: 400;
  line-height: 1.78;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-grid__copy {
  padding: clamp(24px, 3vw, 40px);
}

.split-grid__copy--accent {
  background: linear-gradient(135deg, #f08b1c 0%, #d56f00 100%);
  color: #0e0e0e;
}

.split-grid__copy--accent .eyebrow,
.split-grid__copy--accent .section-title,
.split-grid__copy--accent .section-copy p {
  color: #0f0f0f;
}

.split-grid--flush .media-frame {
  border: 0;
}

.home-why {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.home-why__title {
  margin: 0 0 16px;
  color: #f2f2f2;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 700;
  line-height: 1.1;
}

.home-why__title span {
  color: #ff7a00;
}

.home-why__copy .section-copy p {
  color: #d9d9d9;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 14px;
}

.home-why__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.home-page .section--home-why {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #0d0d0f;
  display: flex;
  align-items: center;
}

.home-page .section--home-why .container {
  width: 100%;
}

.home-page .section--home-why .panel {
  background: transparent;
  box-shadow: none;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-family: "Work Sans", var(--font-ui);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

.home-divider {
  display: flex;
  justify-content: center;
  padding: 16px 0 10px;
}

.home-page .section--home-support {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background-image: url('assets/images/baner_003.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.home-page .section--home-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.88);
  pointer-events: none;
}

.home-page .section--home-support .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-page .section--home-support .panel {
  background: transparent;
  box-shadow: none;
}

.home-support {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.home-support__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-support__block p {
  color: #c8c8c8;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
}

.home-support__title {
  margin: 0;
  color: #f2f2f2;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}

.home-support__title--logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-support__logo-inline {
  display: inline-block;
  width: auto;
  height: clamp(16px, 1.3vw, 24px);
  vertical-align: middle;
}

.home-page .section--home-gallery {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #0a0a0c;
  display: flex;
  align-items: flex-start;
}

.home-page .section--home-gallery .container {
  width: 100%;
}

.home-page .section--home-gallery .panel {
  background: transparent;
  box-shadow: none;
}

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.gallery-title {
  margin: 0;
  color: #f2f2f2;
  font-family: "Work Sans", var(--font-ui);
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 700;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 8px;
  max-height: calc(3 * 180px + 2 * 8px);
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.gallery-grid--expanded {
  max-height: 3000px;
}

.gallery-grid__item {
  display: block;
  overflow: hidden;
  border: none;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid__item:hover img,
.gallery-grid__item:focus-visible img {
  transform: scale(1.04);
}

.gallery-grid__item--tall {
  grid-row: span 2;
}

.gallery-grid__item--wide {
  grid-column: span 2;
}

.gallery-placeholder {
  background: #161618;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gallery-placeholder__label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10, 10, 12, 0.75);
  color: #f2f2f2;
  font-family: "Work Sans", var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
}

.gallery-placeholder__file {
  color: #3a3a3e;
  font-family: "Work Sans", var(--font-ui);
  font-size: 11px;
  text-align: center;
}

.gallery-expand {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}

.gallery-expand__btn {
  background: none;
  border: none;
  color: #888;
  font-family: "Work Sans", var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.gallery-expand__btn:hover {
  color: #f2f2f2;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #121212;
  color: #ffffff;
  cursor: pointer;
}

.slider-button:hover,
.slider-button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.slider-shell {
  overflow: hidden;
}

.slider-track {
  --slide-gap: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--slide-gap) * 2)) / 3);
  gap: var(--slide-gap);
  transition: transform 0.3s ease;
}

.slider-item {
  border: 1px solid var(--line);
  background: #0f0f0f;
}

.slider-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.signature {
  margin: 18px 0 0;
  color: #f5f5f5;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-item {
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.job-header {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.job-number {
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
}

.job-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.2;
  font-weight: 800;
}

.job-arrow {
  width: 13px;
  height: 13px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.job-item--open .job-arrow {
  transform: rotate(-135deg);
}

.job-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.job-content__inner {
  padding: 8px 22px 26px;
}

.job-overview,
.job-contact {
  margin: 0;
  color: #dddddd;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}

.job-contact {
  margin-top: 18px;
}

.job-contact a {
  color: var(--accent);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.job-section__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.job-section__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #e2e2e2;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
}

.contacts-block {
  display: grid;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-control,
.form-textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #101010;
  color: #f5f5f5;
  font-family: var(--font-ui);
  font-weight: 400;
  padding: 13px 14px;
}

.form-control::placeholder,
.form-textarea::placeholder {
  color: #8f8f8f;
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dddddd;
  font-size: 15px;
  line-height: 1.45;
}

.checkline input {
  margin-top: 3px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111111;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 13px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button--secondary {
  background: transparent;
  color: #ffffff;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.08);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--accent-soft);
}

.form-message {
  margin: 2px 0 0;
  min-height: 24px;
  color: var(--accent);
  font-size: 15px;
}

.contact-group {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: clamp(18px, 3vw, 30px);
}

.contact-group__title {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

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

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

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

.person-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #121212;
  padding: 14px;
}

.person-card__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.person-card__role {
  margin: 4px 0 10px;
  color: #d7d7d7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.person-card__contact {
  display: grid;
  gap: 3px;
}

.person-card__contact a {
  color: #ededed;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
}

.person-card__contact a:hover,
.person-card__contact a:focus-visible {
  color: var(--accent);
}

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

.company-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #121212;
  padding: 15px;
}

.company-card__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.24;
  color: #ffffff;
  font-weight: 800;
}

.company-card__copy {
  margin: 0;
  color: #d9d9d9;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.company-card__copy + .company-card__copy {
  margin-top: 8px;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.offer-form {
  display: grid;
  gap: 16px;
}

.offer-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.offer-step__head {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
}

.offer-step__number {
  width: 50px;
  height: 40px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.offer-step__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.05;
}

.product-viewer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.product-nav {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #101010;
  color: #ffffff;
  cursor: pointer;
}

.product-nav:hover,
.product-nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.product-display {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
  text-align: center;
  padding: 10px;
}

.product-display img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.product-display figcaption {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.field-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  gap: 8px;
}

.choice-card {
  display: block;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: block;
  border: 1px solid var(--line);
  background: #101010;
  font-family: var(--font-ui);
  padding: 10px 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.choice-card input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
}

.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-option {
  display: block;
}

.toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-option__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border: 1px solid var(--line);
  background: #101010;
  font-family: var(--font-ui);
  font-weight: 400;
  padding: 9px 12px;
}

.toggle-option input:checked + .toggle-option__pill {
  border-color: var(--accent);
  color: var(--accent);
}

.small-note {
  margin: 0;
  color: #cfcfcf;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
}

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

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

.swatch-item {
  display: block;
}

.swatch-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swatch-item span {
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: #101010;
  padding: 8px 6px;
}

.swatch-item img {
  width: 90px;
  height: 103px;
  object-fit: cover;
}

.swatch-item strong {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
}

.swatch-item input:checked + span {
  border-color: var(--accent);
}

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

.screw-grid label {
  display: grid;
  gap: 6px;
}

.screw-grid label span {
  font-family: var(--font-ui);
  font-size: 15px;
  color: #dadada;
  font-weight: 400;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  display: grid;
  gap: 16px;
}

.offer-sidebar__preview {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #101010;
  padding: 10px;
  text-align: center;
}

.offer-sidebar__preview img {
  display: block;
  margin: 0 auto 8px;
}

.offer-sidebar__preview p {
  margin: 0;
  color: #f1f1f1;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.offer-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.offer-item {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #101010;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.offer-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-item__head strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.offer-item__head button {
  border: 1px solid var(--line);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.offer-item__meta {
  color: #cecece;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.offer-sidebar__total {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #101010;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.offer-sidebar__total p {
  margin: 0;
  color: #d3d3d3;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
}

.offer-sidebar__total strong {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.offer-sidebar__total span {
  color: #cfcfcf;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
}

.offer-disclaimer {
  margin: 0;
  color: #c8c8c8;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.accent {
  color: var(--accent);
}

.footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: #0f0f0f;
}

.footer__inner {
  padding: 20px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer__nav a {
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: lowercase;
  color: #dddddd;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__nav a.is-active {
  color: var(--accent);
}

.footer__logo {
  display: inline-flex;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0 14px;
}

.footer__bottom p {
  margin: 0;
  text-align: right;
  color: #ababab;
  font-size: 14px;
}

.site-footer {
  margin-top: 24px;
  padding: 40px 0 56px;
  background: #171717;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__nav a {
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  color: #f5f5f5;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--accent);
}

.site-footer__bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__copy {
  margin: 0;
  font-size: 14px;
  color: #ababab;
}

.site-footer__brand {
  display: inline-flex;
}

.site-footer__brand img {
  width: 176px;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .container {
    width: min(var(--container-max), calc(100% - 72px));
  }

  .intro-grid,
  .about-grid,
  .split-grid,
  .home-why__media {
    grid-template-columns: 1fr;
  }

  .home-support {
    grid-template-columns: 1fr;
  }

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

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

  .companies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 68px;
  }

  .home-page .hero__logo {
    width: min(655px, calc(100vw - 88px));
    height: auto;
  }

  .home-page .home-orange__inner {
    width: calc(100% - 52px);
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .home-page .home-orange__copy {
    max-width: min(920px, 78vw);
  }

  .home-page .home-orange__title {
    font-size: clamp(32px, 4.2vw, 52px);
    white-space: normal;
  }

  .home-page .home-orange__text p {
    font-size: clamp(16px, 2.05vw, 24px);
    line-height: 1.62;
  }

  .hero {
    min-height: clamp(480px, 76vw, 780px);
  }

  .section-copy p,
  .merit-row__text,
  .job-overview,
  .job-contact {
    font-size: 18px;
  }

  .slider-track {
    grid-auto-columns: calc((100% - var(--slide-gap)) / 2);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .nav {
    width: 100%;
    border-left: 0;
  }

  .hero {
    min-height: 460px;
    padding-bottom: 56px;
  }

  .hero__title {
    font-size: clamp(34px, 12vw, 56px);
  }

  .hero__subtitle {
    font-size: clamp(14px, 5vw, 22px);
  }

  .section {
    padding: 20px 0;
  }

  .eyebrow {
    font-size: 29px;
  }

  .section-copy p,
  .section-text {
    font-size: 17px;
  }

  .merit-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .merit-row__title {
    font-size: 24px;
  }

  .slider-track {
    grid-auto-columns: 100%;
  }

  .job-header {
    padding: 14px 14px;
    gap: 10px;
  }

  .job-number {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .job-title {
    font-size: 21px;
  }

  .job-content__inner {
    padding: 2px 14px 18px;
  }

  .job-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .input-row,
  .dimension-grid,
  .screw-grid {
    grid-template-columns: 1fr;
  }

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

  .people-grid,
  .people-grid--three,
  .people-grid--two {
    grid-template-columns: 1fr;
  }

  .offer-step__head {
    grid-template-columns: 44px 1fr;
  }

  .offer-step__number {
    width: 44px;
    height: 36px;
    font-size: 20px;
  }

  .offer-step__title {
    font-size: 28px;
  }

  .toggle-option__pill {
    min-width: 136px;
  }

  .offer-sidebar__total strong {
    font-size: 30px;
  }

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

  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__bottom p {
    text-align: left;
  }

  .site-footer__bottom,
  .site-footer__nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    gap: 8px;
  }

  .site-footer__brand img {
    width: 150px;
  }
}

@media (max-width: 1200px) {
  .home-page .home-overview__inner {
    width: calc(100% - 52px);
    padding-top: 62px;
    padding-bottom: 22px;
  }

  .home-page .home-overview__top.intro-grid {
    grid-template-columns: minmax(230px, 0.5fr) minmax(0, 1fr);
  }

  .home-page .home-intro__title {
    font-size: clamp(34px, 2.8vw, 46px);
  }

  .home-page .home-intro__subtitle {
    font-size: clamp(22px, 1.7vw, 28px);
  }

  .home-page .home-overview__bottom.merits {
    grid-template-columns: 190px 1fr;
  }

  .home-page .home-overview__bottom .merit-row {
    grid-template-columns: minmax(156px, 194px) 1fr;
  }
}

@media (max-width: 980px) {
  .home-page .section--home-overview {
    min-height: 0;
    padding: 44px 0 20px;
  }

  .home-page .section--home-overview::after {
    display: none;
  }

  .home-page .home-overview__inner {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 0;
    gap: 20px;
  }

  .home-page .home-overview__top.intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page .home-intro .lead-copy {
    max-width: none;
    gap: 18px;
  }

  .home-page .home-intro__subtitle {
    margin-top: -6px;
  }

  .home-page .home-overview__bottom.merits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .home-merits__title {
    padding-bottom: 0;
  }

  .home-page .home-overview__bottom .merits__rows {
    gap: 8px;
  }

  .home-page .home-overview__bottom .merit-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 12px 14px;
  }

}

@media (max-width: 980px) {
  .home-page .section--home-orange {
    min-height: 0;
    padding: 42px 0;
    background-position: center right 28%;
  }

  .home-page .home-orange__inner {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 0;
  }

  .home-page .home-orange__copy {
    max-width: none;
  }

  .home-page .home-orange__title {
    font-size: clamp(30px, 5.7vw, 46px);
    line-height: 1.16;
  }

  .home-page .home-orange__text {
    margin-top: 22px;
    gap: 20px;
  }

  .home-page .home-orange__text p {
    font-size: clamp(16px, 2.5vw, 21px);
    line-height: 1.56;
  }
}

/* About page ported from MarsenBiz */
.about-page {
  --surface: #2a2a2a;
  --surface-2: #323232;
  --surface-3: #101010;
  --line-strong: rgba(255, 255, 255, 0.28);
  --subtle: #787878;
  --max-width: 1340px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --transition: 180ms ease;
  min-width: 320px;
  background: #171717;
  color: #ffffff;
  text-rendering: optimizeLegibility;
}

.about-page.menu-open {
  overflow: hidden;
}

.about-page img {
  display: block;
}

.about-page main {
  overflow: clip;
}

.about-page main a {
  color: inherit;
  text-decoration-color: rgba(240, 139, 28, 0.5);
  text-underline-offset: 0.2em;
}

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

.about-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.about-page .site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(17, 17, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-page .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.about-page .site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.about-page .site-header__brand img {
  width: 176px;
  height: auto;
}

.about-page .menu-trigger {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--text);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
}

.about-page .menu-trigger span,
.about-page .menu-trigger::before,
.about-page .menu-trigger::after {
  content: "";
  display: block;
  width: 33px;
  height: 2.5px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.about-page .menu-trigger::before {
  transform: translateY(-6px);
}

.about-page .menu-trigger::after {
  transform: translateY(6px);
}

.about-page .menu-trigger span {
  position: absolute;
}

.about-page .site-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-items: end;
  background: rgba(8, 8, 8, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.about-page .site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-page .site-menu__panel {
  width: min(420px, 100vw);
  height: 100%;
  padding: 28px 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(23, 23, 23, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about-page .site-menu.is-open .site-menu__panel {
  transform: translateX(0);
}

.about-page .site-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-page .site-menu__top img {
  width: 176px;
  height: auto;
}

.about-page .site-menu__close {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
}

.about-page .site-menu__close::before,
.about-page .site-menu__close::after {
  content: "";
  position: absolute;
  inset: 21px 6px auto;
  height: 2px;
  background: currentColor;
}

.about-page .site-menu__close::before {
  transform: rotate(45deg);
}

.about-page .site-menu__close::after {
  transform: rotate(-45deg);
}

.about-page .site-menu__nav {
  display: grid;
  gap: 18px;
}

.about-page .site-menu__nav a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-page .site-menu__nav a.is-active,
.about-page .site-menu__nav a.is-current {
  color: var(--accent);
}

.about-page .site-menu__languages {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-page .site-menu__languages span {
  min-width: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  text-align: center;
  padding: 8px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  font-size: 0.8rem;
}

.about-page .hero {
  position: relative;
  min-height: 820px;
  background: #171717;
}

.about-page .hero::before,
.about-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.about-page .hero::before {
  background:
    linear-gradient(183deg, rgba(40, 40, 40, 0.88) 4.9%, rgba(40, 40, 40, 0) 31.85%),
    var(--hero-image) center/cover no-repeat;
}

.about-page .hero::after {
  inset: auto 0 0;
  height: 282px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, #171717 100%);
}

.about-page .hero__inner {
  position: relative;
  z-index: 1;
  min-height: 820px;
  padding-top: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .hero__copy {
  display: grid;
  gap: 16px;
}

.about-page .hero__copy--inner {
  justify-items: center;
  align-self: flex-start;
  margin-top: 150px;
}

.about-page .hero__wordmark {
  width: min(655px, 100%);
}

.about-page .hero__wordmark--inner {
  width: min(760px, 100%);
}

.about-page .hero__wordmark--about {
  max-width: 723px;
}

.about-page .hero__wordmark--text {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: clamp(2rem, 11vw, 7.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  width: auto;
  max-width: none;
}

.about-page .hero__eyebrow {
  margin: 0;
  color: var(--subtle);
  font-family: "Work Sans", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  max-width: 32ch;
  text-align: center;
}

.about-page .hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 100px;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
}

.about-page .hero__scroll::before,
.about-page .hero__scroll::after {
  content: "";
  position: absolute;
}

.about-page .hero__scroll::before {
  inset: 10px 8px auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

.about-page .hero__scroll::after {
  inset: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.about-page .section {
  padding: 80px 0;
}

.about-page .section--compact {
  padding: 46px 0;
}

.about-page .section--surface {
  background: linear-gradient(180deg, #2a2a2a 0%, #171717 100%);
}

.about-page .section-title,
.about-page .section-accent {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.about-page .section-title--compact {
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.about-page .section-title span,
.about-page .section-accent {
  color: var(--accent);
}

.about-page .section-copy {
  display: grid;
  gap: 18px;
}

.about-page .section-copy--wide {
  max-width: 1340px;
}

.about-page .section-copy p {
  margin: 0;
  max-width: 78ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.about-page .media-card,
.about-page .reference-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(23, 23, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.about-page .media-card {
  overflow: hidden;
}

.about-page .media-card img,
.about-page .reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .reference-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: rgba(240, 139, 28, 0.5) rgba(255, 255, 255, 0.08);
}

.about-page .reference-card {
  min-height: 332px;
  overflow: hidden;
}

.about-page .about-intro {
  display: grid;
  gap: 18px;
}

.about-page .reference-band {
  display: grid;
  gap: 24px;
}

.about-page .reference-band__frame {
  position: relative;
  min-height: 387px;
  padding: 27px 0 0 256px;
  background:
    linear-gradient(90deg, rgba(42, 42, 42, 1) 0%, rgba(42, 42, 42, 1) 18%, rgba(42, 42, 42, 0.82) 100%);
}

.about-page .reference-band__frame::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 125px;
  background: linear-gradient(270deg, rgba(42, 42, 42, 1) 0%, rgba(42, 42, 42, 0) 100%);
  pointer-events: none;
}

.about-page .reference-band .reference-strip {
  grid-auto-columns: 235px;
  gap: 20px;
  overflow: hidden;
  padding-right: 100px;
  scrollbar-width: none;
}

.about-page .reference-band .reference-strip::-webkit-scrollbar {
  display: none;
}

.about-page .reference-band__arrow {
  position: absolute;
  right: 56px;
  top: 50%;
  width: 15px;
  height: 30px;
  transform: translateY(-50%);
}

.about-page .reference-band__arrow::before,
.about-page .reference-band__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 15px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform-origin: right center;
}

.about-page .reference-band__arrow::before {
  top: 10px;
  transform: rotate(45deg);
}

.about-page .reference-band__arrow::after {
  top: 19px;
  transform: rotate(-45deg);
}

.about-page .about-story {
  display: grid;
  grid-template-columns: minmax(0, 457px) minmax(0, 830px);
  gap: 53px;
  align-items: start;
}

.about-page .about-story__copy {
  display: grid;
  gap: 28px;
}

.about-page .about-story__media {
  min-height: 462px;
}

.about-page .signature-mark {
  width: 139px;
  height: auto;
}

.about-page .site-footer {
  margin-top: 0;
  padding: 40px 0 56px;
  background: #171717;
}

.about-page .site-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1rem;
}

.about-page .site-footer__nav a {
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
}

.about-page .site-footer__nav a.is-active,
.about-page .site-footer__nav a.is-current {
  color: var(--accent);
}

.about-page .site-footer__bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-page .site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.about-page .site-footer__brand img {
  width: 170px;
  height: auto;
}

@media (max-width: 1180px) {
  .about-page .about-story {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .about-page .page-shell {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .about-page .site-header__inner {
    min-height: 74px;
  }

  .about-page .hero,
  .about-page .hero__inner {
    min-height: 720px;
  }

  .about-page .hero__copy--inner {
    margin-top: 120px;
  }

  .about-page .hero__eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
  }

  .about-page .site-footer__bottom,
  .about-page .site-footer__nav {
    flex-direction: column;
    align-items: stretch;
  }

  .about-page .site-footer__brand img {
    width: 150px;
  }

  .about-page .about-story {
    grid-template-columns: 1fr;
  }

  .about-page .about-story__media {
    min-height: unset;
  }

  .about-page .reference-band__frame {
    padding-left: 80px;
  }
}

@media (max-width: 560px) {
  .about-page .hero,
  .about-page .hero__inner {
    min-height: 923px;
  }

  .about-page .hero::before {
    background:
      linear-gradient(183deg, rgba(40, 40, 40, 0.88) 4.9%, rgba(40, 40, 40, 0) 31.85%),
      var(--hero-image) 60% center/cover no-repeat;
  }

  .about-page .hero__inner {
    padding-top: 112px;
  }

  .about-page .hero__copy--inner {
    margin-top: 170px;
  }

  .about-page .hero__wordmark {
    width: min(280px, 100%);
  }

  .about-page .section {
    padding: 64px 0;
  }

  .about-page .about-story {
    grid-template-columns: 1fr;
  }

  .about-page .site-menu__panel {
    width: 100%;
  }

  .about-page .reference-band__frame {
    padding-left: 0;
  }

  .about-page .reference-band .reference-strip {
    overflow-x: auto;
    padding-right: 0;
  }

  .about-page .reference-band__arrow {
    display: none;
  }
}

/* ── Cookie banner ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.35);
  transition: transform .4s ease, opacity .4s ease;
}

#cookie-banner.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text a {
  color: #e87722;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: #e87722;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #d06a1a;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.cookie-banner__btn--reject:hover {
  border-color: #999;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}
