@font-face {
  font-family: "29LT Bukra";
  src: url("img/font/29lt-bukra.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f7f5;
  --text: #0b0b0b;
  --muted: #6a6a6a;
  --line: rgba(0, 0, 0, 0.12);
  --dark: #0b0b0b;
  --light: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --container-pad: clamp(22px, 6vw, 72px);
  --font-nav: "29LT Bukra", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
  --btn-font-size: 0.84rem;
  --btn-pad-y: 12px;
  --btn-pad-x: 22px;
  --btn-radius: 10px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

.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;
}

/* ── Statement ─────────────────────────────────────────────── */
.statement {
  position: relative;
  background: #03142e;
  padding: 90px var(--container-pad);
}

.statement-inner {
  display: grid;
  grid-template-columns: minmax(max-content, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3.2vw, 42px);
}

.statement-left {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(3.8rem, 8vw, 9rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}

.statement-left [data-statement-word] {
  position: relative;
  display: inline-block;
  width: 10.8ch;
  min-width: 10.8ch;
  height: 1em;
  min-height: 1em;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
  contain: layout paint style;
  will-change: transform, opacity;
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
}

.statement-left [data-statement-word].is-out {
  opacity: 0;
  transform: translate3d(-0.55em, 0, 0);
}

.statement-left [data-statement-word].is-in {
  opacity: 0;
  transform: translate3d(0.55em, 0, 0);
}

.statement-accent {
  color: #ffc40c;
}

.statement-since {
  position: absolute;
  top: 28px;
  right: var(--container-pad);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  user-select: none;
}

.statement-rule {
  display: block;
  width: min(148px, 100%);
  height: 1px;
  margin-left: 0;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.22);
}

.statement-right {
  min-width: 0;
  width: min(100%, 560px);
  justify-self: end;
  padding-left: clamp(14px, 2vw, 28px);
  transform: translateX(-100px);
}

.statement-right p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffc40c;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: var(--btn-font-size);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: #ffc40c;
  color: #222;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd24a;
  color: #1a1a1a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #ffc40c;
  color: #ffc40c;
}

.blog {
  padding: 88px var(--container-pad);
  background: #fff;
}

/* ── Process ────────────────────────────────────────────────── */
.process {
  position: relative;
  overflow: hidden;
  background: #03142e;
  padding: 0;
  min-height: clamp(520px, 68svh, 680px);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 46, 0.9) 0 62%,
    rgba(3, 20, 46, 0.76) 80%,
    rgba(3, 20, 46, 0.34) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.process-video-shell {
  position: absolute;
  top: 0;
  right: 2%;
  bottom: 0;
  width: 20%;
  overflow: hidden;
  z-index: 1;
  background: #03142e;
  pointer-events: none;
}

.process-video-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: #03142e;
  z-index: 2;
}

.process-video-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: #03142e;
  z-index: 2;
}

.process-video {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -22px;
  left: 0;
  width: calc(100% + 2px);
  height: calc(100% + 23px);
  display: block;
  object-fit: contain;
  object-position: right center;
  -webkit-clip-path: inset(0 0 2px 0);
  clip-path: inset(0 0 2px 0);
  background: #03142e;
  transform: translateZ(0);
  transform-origin: right center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  pointer-events: none;
}

.process-head {
  margin-bottom: 28px;
}

.process-head h2 {
  color: #fff;
}

.process-head p {
  color: rgba(255, 255, 255, 0.78);
}

.process-frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: clamp(520px, 68svh, 680px);
  border: 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.process-spines {
  display: flex;
  background: #020d1f;
}

.process-spine {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.85);
  min-width: 78px;
  padding: 26px 14px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.32s var(--ease),
    color 0.32s var(--ease),
    min-width 0.32s var(--ease);
}

.process-spine:hover,
.process-spine:focus-visible {
  background: rgba(255, 196, 12, 0.08);
  outline: none;
}

.process-spine.is-active {
  min-width: 98px;
  background: #ffc40c;
  color: #03142e;
}

.process-spine-num {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.process-spine-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.process-panel {
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
}

.process-content {
  width: 100%;
  padding: 0 var(--container-pad);
}

.process-content.is-entering {
  animation: process-fade-in 0.45s var(--ease);
}

@keyframes process-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: #ffc40c;
}

.process-subtitle {
  display: block;
  margin-bottom: 6px;
  color: #ffc40c;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-title {
  font-size: clamp(2.2rem, 3.7vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
}

.process-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 70ch;
}

.process-bars {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-bars span {
  display: block;
  width: 24px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  transition:
    width 0.28s var(--ease),
    background-color 0.28s var(--ease);
}

.process-bars span.is-complete {
  background: rgba(255, 196, 12, 0.55);
}

.process-bars span.is-active {
  width: 84px;
  background: #ffc40c;
}

/* ── Portfolio ──────────────────────────────────────────────── */
.portfolio {
  position: relative;
  overflow: hidden;
  background: #03142e;
  padding: 60px var(--container-pad) 88px;
}

.portfolio-note {
  position: absolute;
  top: 28px;
  left: var(--container-pad);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.portfolio-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.portfolio-preview,
.portfolio-info {
  position: relative;
}

.portfolio-preview {
  order: 2;
  z-index: 1;
  height: 100%;
}

.portfolio-info {
  order: 1;
  z-index: 2;
}

/* browser mockup */
.portfolio-browser {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  background: #0b2247;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 620px;
}

.portfolio-stage {
  position: relative;
  min-height: 0;
}

.portfolio-urlbar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffc40c;
  border-bottom: 1px solid rgba(3, 20, 46, 0.18);
  padding: 11px 14px;
}

.portfolio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(3, 20, 46, 0.72);
  box-shadow: 0 0 0 1px rgba(3, 20, 46, 0.12) inset;
  flex-shrink: 0;
}

.portfolio-url {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #03142e;
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.03em;
  transition: opacity 0.3s;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}

.portfolio-slide.is-active {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: auto;
}

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

/* right info panel */
.portfolio-info {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.portfolio-info > * {
  position: relative;
  z-index: 1;
}

.portfolio-heading {
  position: absolute;
  top: 50%;
  left: clamp(-2vw, -1vw, 0px);
  z-index: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.09em;
  transform: translateY(-50%);
  transform-origin: right center;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.11);
  opacity: 0.22;
  width: min(48vw, 760px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(4px, 0.7vw, 10px);
  text-align: left;
  white-space: nowrap;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 91%,
    rgba(0, 0, 0, 0.42) 97%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 91%,
    rgba(0, 0, 0, 0.42) 97%,
    rgba(0, 0, 0, 0) 100%
  );
  user-select: none;
  pointer-events: none;
}

.portfolio-heading span {
  display: block;
  color: #ffc40e;
  opacity: var(--portfolio-line-opacity, 1);
  -webkit-text-stroke: 1px
    rgba(255, 255, 255, var(--portfolio-line-stroke, 0.05));
}

.portfolio-heading span:nth-child(1) {
  --portfolio-line-opacity: 0.34;
  --portfolio-line-stroke: 0.06;
  font-size: clamp(12rem, 18vw, 20rem);
}

.portfolio-heading span:nth-child(2) {
  --portfolio-line-opacity: 0.22;
  --portfolio-line-stroke: 0.045;
  font-size: clamp(10rem, 15vw, 17rem);
}

.portfolio-heading span:nth-child(3) {
  --portfolio-line-opacity: 0.14;
  --portfolio-line-stroke: 0.03;
  font-size: clamp(8rem, 12vw, 15rem);
}

.portfolio-copy {
  display: grid;
  position: relative;
  z-index: 1;
}

.portfolio-project {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.portfolio-project.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.portfolio-nav,
.portfolio-info .btn {
  position: relative;
  z-index: 1;
}

.portfolio-project h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.16;
}

.portfolio-project p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.72;
  margin: 0;
}

.ptile-tag {
  display: inline-block;
  font-size: 0.84rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc40c;
}

.portfolio-nav {
  display: flex;
  gap: 10px;
}

.portfolio-dot-btn {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.28s var(--ease),
    width 0.28s var(--ease);
}

.portfolio-dot-btn.is-active {
  background: #ffc40c;
  width: 44px;
}

.about {
  padding: 90px var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: stretch;
  background: #03142e;
}

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

.about-copy {
  padding: 10px 0;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  color: #ffffff;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.about-list li {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}

.about-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc40c;
  position: absolute;
  left: 0;
  top: 0.6em;
}

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

.about-stat {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-stat-icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  object-fit: contain;
}

.about-stat-copy {
  min-width: 0;
}

.about-stats strong {
  display: block;
  font-size: 1.38rem;
  margin-bottom: 4px;
  color: #ffc40c;
}

.about-stats span {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog {
  background: #f1f3f6;
}

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

.blog-card {
  background: #fff;
  border: 1px solid rgba(3, 20, 46, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.blog-content p {
  color: #4f5662;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.94rem;
}

.blog-content .btn {
  width: 100%;
  border-color: rgba(3, 20, 46, 0.24);
  color: #03142e;
  background: transparent;
}

.faq {
  position: relative;
  overflow: hidden;
  background: #03142e;
  color: #fff;
  padding: 104px var(--container-pad);
  --faq-number-width: 2.2rem;
  --faq-gap: clamp(18px, 3vw, 44px);
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq::before {
  top: 18%;
  right: -180px;
  width: 420px;
  height: 420px;
  background: rgba(255, 196, 12, 0.05);
  filter: blur(120px);
}

.faq::after {
  left: -220px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background: rgba(255, 196, 12, 0.035);
  filter: blur(140px);
}

.faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(36px, 6vw, 88px);
}

.faq-sticky {
  position: sticky;
  top: 112px;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--font-nav);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.faq-kicker::before {
  content: "";
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: #ffc40c;
  flex: 0 0 64px;
}

.faq-intro h2 {
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.faq-intro .title-accent {
  color: #ffc40c;
}

.faq-intro p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-contact-card {
  margin-top: 42px;
  max-width: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.faq-contact-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffc40c;
  font-family: var(--font-nav);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-contact-head svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-contact-card p {
  max-width: none;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.faq-contact-link:hover,
.faq-contact-link:focus-visible {
  background: #ffc40c;
  border-color: #ffc40c;
  color: #03142e;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  padding-inline: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  contain: layout paint;
  transition: background-color 0.32s var(--ease);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
}

.faq-question-main {
  display: flex;
  align-items: flex-start;
  gap: var(--faq-gap);
}

.faq-number {
  flex: 0 0 var(--faq-number-width);
  font-family: var(--font-nav);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
  transform: translateY(8px);
}

.faq-item.is-open .faq-number {
  color: #ffc40c;
}

.faq-question-text {
  font-size: clamp(1.34rem, 2.9vw, 2.32rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s var(--ease);
}

.faq-item:hover .faq-question-text,
.faq-item:focus-within .faq-question-text,
.faq-item.is-open .faq-question-text {
  color: #ffc40c;
}

.faq-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    border-color 0.45s var(--ease),
    background-color 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.faq-toggle-plus,
.faq-toggle-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.faq-toggle-plus {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item:hover .faq-toggle,
.faq-item:focus-within .faq-toggle {
  border-color: #ffc40c;
}

.faq-item:hover .faq-toggle-plus,
.faq-item:hover .faq-toggle-minus,
.faq-item:focus-within .faq-toggle-plus,
.faq-item:focus-within .faq-toggle-minus {
  background: #ffc40c;
}

.faq-item.is-open .faq-toggle {
  background: #ffc40c;
  border-color: #ffc40c;
  transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle-plus,
.faq-item.is-open .faq-toggle-minus {
  background: #03142e;
}

.faq-item.is-open .faq-toggle-plus {
  opacity: 0;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s var(--ease);
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 0 40px calc(var(--faq-number-width) + var(--faq-gap));
}

.faq-answer-copy {
  max-width: 820px;
}

.faq-answer-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1.08rem, 1.9vw, 1.46rem);
  line-height: 1.72;
}

.faq-mobile-cta {
  display: none;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: left;
}

.faq-mobile-cta p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.42);
}

.faq-mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  background: #f0b400;
  color: rgba(3, 20, 46, 0.72);
  border: 1px solid #f0b400;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  text-decoration: none;
  text-shadow: none;
  transition:
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.faq-mobile-cta a:hover,
.faq-mobile-cta a:focus-visible {
  background: #ffc40c;
  border-color: #ffc40c;
  color: rgba(3, 20, 46, 0.72);
  transform: translateY(-1px);
}

.site-footer {
  background: #03142e;
  color: rgba(255, 255, 255, 0.82);
  padding: 74px var(--container-pad) 28px;
}

.footer-shell {
  background: transparent;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.footer-scroll-row {
  display: contents;
}

.footer-scroll-hint {
  display: none;
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 42ch;
}

.footer-main > .footer-brand {
  margin-top: -70px;
}

.footer-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.footer-logo-link {
  display: block;
  width: 180px;
  max-width: 100%;
}

.footer-logo-mark {
  position: relative;
  display: block;
  width: 100%;
  height: 44px;
  max-width: 100%;
  overflow: hidden;
}

.footer-logo-static,
.footer-logo-animated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-static {
  opacity: 1;
  transition: opacity 0.22s var(--ease);
}

.footer-logo-animated {
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}

.footer-logo-link:hover .footer-logo-static,
.footer-logo-link:focus-visible .footer-logo-static {
  opacity: 0;
}

.footer-logo-link:hover .footer-logo-animated,
.footer-logo-link:focus-visible .footer-logo-animated {
  opacity: 1;
}

.footer-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 196, 12, 0.12);
}

.footer-col h3 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffc40c;
  margin-bottom: 14px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
  transition: color 0.25s var(--ease);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #ffc40c;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 196, 12, 0.16);
  color: #ffc40c;
}

.footer-bottom {
  padding: 16px clamp(22px, 3vw, 34px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-seo-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #ffc40c;
}

@media (max-width: 1200px) {
  .statement-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .statement-right {
    width: min(100%, 640px);
    justify-self: end;
    padding-left: clamp(10px, 1.8vw, 20px);
    transform: none;
  }

  .statement-rule,
  .statement-right p {
    margin-left: 0;
  }

  .statement-right p {
    max-width: none;
  }

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

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-sticky {
    position: static;
  }

  .faq-intro p {
    max-width: 44ch;
  }

  .faq-contact-card {
    max-width: 420px;
  }

  .about-media img {
    min-height: 340px;
  }

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

  .footer-brand {
    grid-column: span 2;
    margin-top: 0;
  }

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

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

  .testimonial-card:nth-child(2n) {
    border-right: 1px solid rgba(3, 20, 46, 0.08);
  }

  .testimonial-card:nth-child(3) {
    grid-column: span 2;
  }

  .process-frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-spines {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-spine {
    writing-mode: horizontal-tb;
    transform: none;
    min-width: 50%;
    min-height: 82px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 6px;
    justify-items: start;
    text-align: left;
    padding: 18px;
  }

  .process-spine.is-active {
    min-width: 50%;
  }
}

@media (max-width: 760px) {
  .statement {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .statement-inner {
    gap: 20px;
  }

  .statement-left {
    font-size: clamp(2.45rem, 12.5vw, 4.2rem);
    line-height: 0.9;
  }

  .statement-left [data-statement-word] {
    width: 10.1ch;
    min-width: 10.1ch;
  }

  .statement-since {
    top: 18px;
    right: var(--container-pad);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .statement-rule {
    width: 72px;
    margin-bottom: 14px;
  }

  .statement-right {
    width: 100%;
    justify-self: stretch;
    padding-left: 0;
    padding-right: 4px;
    transform: none;
  }

  .statement-right p {
    font-size: clamp(0.88rem, 3.6vw, 0.96rem);
    line-height: 1.68;
    text-wrap: pretty;
  }

  .nav-year,
  .nav-brand-divider,
  .nav-rotating,
  .nav-right {
    display: none;
  }

  .nav-container {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .faq {
    padding-top: 16px;
    padding-bottom: 38px;
    --faq-number-width: 1.8rem;
    --faq-gap: 14px;
  }

  .faq-kicker {
    margin-bottom: 24px;
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .faq-kicker::before {
    width: 44px;
    flex-basis: 44px;
  }

  .faq-intro h2 {
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 15vw, 4.6rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .faq-question {
    padding: 22px 0;
    gap: 14px;
  }

  .faq-item.is-open {
    padding-inline: 12px;
  }

  .faq-item {
    padding-inline: 12px;
  }

  .faq-number {
    flex-basis: var(--faq-number-width);
    font-size: 0.78rem;
    font-weight: 800;
    transform: translateY(4px);
  }

  .faq-question-text {
    font-size: clamp(1rem, 4.8vw, 1.34rem);
    line-height: 1.02;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .faq-contact-card {
    display: none;
  }

  .faq-answer-inner {
    padding: 0 0 24px calc(var(--faq-number-width) + var(--faq-gap));
  }

  .faq-answer-copy p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .faq-mobile-cta {
    display: block;
  }

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

  .testimonials {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .testimonials-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .testimonials-review-btn {
    width: 100%;
    justify-content: center;
  }

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

  .testimonial-card {
    border: 1px solid rgba(3, 20, 46, 0.08);
    min-height: 0;
    padding: 26px;
  }

  .testimonial-card:nth-child(3) {
    grid-column: auto;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .about {
    display: none;
  }

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

  .process {
    padding: 0;
    min-height: 0;
  }

  .process::before {
    background: linear-gradient(
      90deg,
      rgba(3, 20, 46, 0.94) 0 18%,
      rgba(3, 20, 46, 0.945) 38%,
      rgba(3, 20, 46, 0.89) 72%,
      rgba(3, 20, 46, 0.97) 100%
    );
    z-index: 1;
  }

  .process-frame {
    grid-template-columns: max-content minmax(0, 1fr);
    min-height: 0;
    z-index: 3;
  }

  .process-spines {
    display: grid;
    grid-template-columns: repeat(2, minmax(44px, max-content));
    grid-template-rows: repeat(2, minmax(96px, auto));
    align-items: stretch;
    align-self: stretch;
    width: max-content;
    max-width: none;
    overflow: visible;
    justify-self: start;
    background: rgba(2, 13, 31, 0.42);
  }

  .process-spines::-webkit-scrollbar {
    display: none;
  }

  .process-spine {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 44px;
    min-width: 44px;
    min-height: 96px;
    padding: 12px 6px;
    gap: 6px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
  }

  .process-spine.is-active {
    width: 52px;
    min-width: 52px;
  }

  .process-spine-num {
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .process-spine-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .process-spine-label::after {
    content: none;
  }

  .process-video-shell {
    display: block;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: min(34vw, 136px);
    opacity: 0.03;
    z-index: 2;
    overflow: hidden;
    background: transparent;
  }

  .process-video-shell::before,
  .process-video-shell::after {
    display: none;
  }

  .process-video {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    -webkit-clip-path: none;
    clip-path: none;
    transform: translateZ(0) scale(1.01);
    backface-visibility: hidden;
  }

  .process-panel {
    align-items: flex-start;
    min-height: 0;
  }

  .process-content {
    position: relative;
    display: block;
    min-height: 0;
    padding: 62px 18px 4px 20px;
    border-bottom: 0;
  }

  .process-icon {
    position: absolute;
    top: 18px;
    left: 20px;
    right: auto;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    opacity: 1;
  }

  .process-subtitle {
    padding-right: 0;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
  }

  .process-title {
    padding-right: 0;
    font-size: clamp(1.32rem, 5.6vw, 1.72rem);
    line-height: 1.15;
  }

  .process-description {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .process-bars {
    margin-top: 10px;
    padding-top: 0;
    gap: 6px;
  }

  .process-bars span {
    width: 16px;
  }

  .process-bars span.is-active {
    width: 52px;
  }

  .process {
    border-bottom: 0;
  }

  .site-footer {
    padding: 8px 18px 20px;
  }

  .footer-shell {
    border-top: 0;
    padding-top: 2px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .footer-brand {
    grid-column: auto;
    padding: 10px 0 18px;
    border-bottom: 0;
  }

  .footer-main > .footer-brand {
    margin-top: 0;
  }

  .footer-scroll-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    direction: ltr;
    padding: 10px 14px 6px 2px;
    margin-right: -14px;
    scroll-padding-inline: 2px 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .footer-scroll-row::-webkit-scrollbar {
    display: none;
  }

  .footer-logo-link {
    width: 156px;
  }

  .footer-brand p {
    margin-top: 14px;
    max-width: none;
    padding-right: 10px;
    font-size: 0.8rem;
    line-height: 1.62;
  }

  .footer-badges {
    margin-top: 12px;
    gap: 6px;
  }

  .footer-badges span {
    font-size: 0.58rem;
    padding: 6px 8px;
  }

  .footer-col {
    direction: ltr;
    flex: 0 0 clamp(148px, 48vw, 172px);
    padding: 10px 4px 10px 0;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    scroll-snap-align: start;
  }

  .footer-col-contact {
    flex-basis: clamp(206px, 62vw, 238px);
  }

  .footer-contact-list a,
  .footer-contact-list span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-scroll-row .footer-col:last-child {
    padding-right: 8px;
    border-right: 0;
  }

  .footer-col h3 {
    margin-bottom: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .footer-list {
    gap: 6px;
  }

  .footer-list a,
  .footer-list span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .footer-social {
    margin-top: 10px;
    gap: 6px;
  }

  .footer-social a {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .footer-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--font-nav);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .footer-scroll-track {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  .footer-scroll-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 34px;
    background: #ffc40c;
    transform: translateX(0);
    will-change: transform, width;
  }

  .footer-scroll-hint-copy {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex: 0 0 auto;
    line-height: 1;
    text-align: right;
  }

  .footer-scroll-hint svg {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    color: #ffc40c;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 37px 0 0;
  }

  .footer-bottom-left {
    gap: 6px;
  }

  .footer-seo-note {
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .footer-legal {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .footer-legal a {
    font-size: 0.78rem;
  }
}

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

.nav-year {
  position: absolute;
  top: 6px;
  right: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  user-select: none;
  z-index: 3;
  transition: font-size 0.32s var(--ease);
}

.site-header.is-scrolled .nav-year {
  font-size: calc(0.65rem + 4px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(3, 20, 46, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled:hover,
.site-header.is-scrolled:focus-within {
  background: #03142e;
}

.nav-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px clamp(10px, 2.8vw, 34px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  transition:
    padding-left 0.46s var(--ease),
    padding-right 0.46s var(--ease);
}

.site-header.is-scrolled .nav-container {
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.nav-brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
  flex: 0 0 auto;
}

.nav-rotating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 24px;
  min-width: 0;
}

.rotating-text {
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.5s var(--ease);
}

.rotating-highlight {
  color: #ffc40c;
}

.rotating-text.is-visible {
  opacity: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  display: block;
  width: 160px;
  height: 40px;
  overflow: hidden;
}

.logo-static,
.logo-animated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-static {
  opacity: 1;
  transition: opacity 0.22s var(--ease);
}

.logo-animated {
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}

.logo:hover .logo-static,
.logo:focus-visible .logo-static,
.logo.logo--playing .logo-static {
  opacity: 0;
}

.logo:hover .logo-animated,
.logo:focus-visible .logo-animated,
.logo.logo--playing .logo-animated {
  opacity: 1;
}

.primary-nav {
  flex: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social a,
.mobile-social a {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-social a {
  color: #fff;
  padding: 0;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 0.28s var(--ease);
}

.nav-social a:hover,
.nav-social a:focus-visible {
  color: #ffc40c;
  text-decoration: underline;
}

.nav-right-divider {
  flex: 0 0 auto;
  background: #ffc40c;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item a {
  font-family: var(--font-nav);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  position: relative;
  padding: 10px 14px;
  line-height: 1;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  transition:
    color 0.28s var(--ease),
    background-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.mega-trigger {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
  flex: 0 0 auto;
  margin-left: 2px;
  transition: transform 0.28s var(--ease);
}

.nav-item a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #ffc40c;
  border-radius: 999px;
  transition: width 0.35s var(--ease);
}

.nav-item a:hover::after,
.nav-item a:focus-visible::after,
.has-mega.is-open .mega-trigger::after {
  width: calc(100% - 28px);
}

.nav-item a:hover,
.nav-item a:focus-visible,
.has-mega.is-open .mega-trigger {
  color: #ffc40c;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-item a[aria-current="page"] {
  color: #ffc40c;
}

.nav-item-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffc40c;
  color: #222;
  font-size: var(--btn-font-size);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  text-transform: uppercase;
}

.nav-cta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}

.nav-item-cta a::after {
  display: none;
}

.nav-item-cta a:hover,
.nav-item-cta a:focus-visible {
  color: #03142e;
  background: #ffc40c;
  transform: none;
}

.has-mega.is-open .nav-arrow {
  transform: rotate(180deg);
}

.nav-item a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 6px;
}

.has-mega {
  position: static;
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  transform: none;
  width: 100%;
  background: rgba(24, 26, 30, 0.95);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 360px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

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

.mega-inner {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(280px, 420px);
  gap: 20px;
  padding: 56px var(--container-pad);
  position: relative;
  align-items: center;
  justify-content: start;
}

.mega-logo {
  position: absolute;
  right: var(--container-pad);
  bottom: 22px;
  opacity: 0.45;
}

.mega-logo img {
  height: 36px;
  width: auto;
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  align-self: flex-start;
}

.mega-link {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}

.mega-preview {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
  opacity: 0.9;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.mega-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  border-radius: 0;
  transition: width 0.4s var(--ease);
}

.mega-link:hover::after,
.mega-link:focus-visible::after {
  width: 100%;
}

.mega-copy {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.mega-meta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  :root {
    --container-pad: clamp(18px, 3.4vw, 44px);
    --btn-font-size: 0.8rem;
    --btn-pad-y: 11px;
    --btn-pad-x: 18px;
  }

  .statement-left {
    font-size: clamp(3.2rem, 6.6vw, 6.2rem);
  }

  .portfolio-inner {
    gap: 44px;
  }

  .portfolio-browser {
    min-height: 540px;
  }

  .portfolio-heading {
    letter-spacing: 0.08em;
    width: min(50vw, 680px);
    opacity: 0.2;
  }

  .portfolio-heading span:nth-child(1) {
    font-size: clamp(7.6rem, 11.8vw, 12.4rem);
  }

  .portfolio-heading span:nth-child(2) {
    font-size: clamp(6rem, 9.8vw, 10rem);
  }

  .portfolio-heading span:nth-child(3) {
    font-size: clamp(4.4rem, 7.4vw, 7.6rem);
  }

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

  .nav-container {
    gap: 16px;
  }

  .nav-brand {
    gap: 8px;
  }

  .logo img {
    height: 30px;
  }

  .nav-rotating {
    min-height: 20px;
  }

  .rotating-text {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .nav-social a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-item a {
    font-size: 0.76rem;
    padding: 7px 10px;
  }

  .nav-item-cta a {
    font-size: 0.72rem;
    padding: 10px 14px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-pad: clamp(72px, 8vw, 180px);
    --btn-font-size: 0.92rem;
    --btn-pad-y: 14px;
    --btn-pad-x: 26px;
  }

  .portfolio,
  .projects,
  .blog,
  .faq,
  .about,
  .statement {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .portfolio {
    padding-top: 78px;
    padding-bottom: 110px;
  }

  .portfolio-browser {
    min-height: 760px;
  }

  .portfolio-heading {
    letter-spacing: 0.1em;
    width: min(46vw, 840px);
    opacity: 0.18;
  }

  .portfolio-heading span:nth-child(1) {
    --portfolio-line-opacity: 0.28;
    --portfolio-line-stroke: 0.05;
    font-size: clamp(10rem, 13.2vw, 16rem);
  }

  .portfolio-heading span:nth-child(2) {
    --portfolio-line-opacity: 0.18;
    --portfolio-line-stroke: 0.04;
    font-size: clamp(8rem, 11vw, 12.8rem);
  }

  .portfolio-heading span:nth-child(3) {
    --portfolio-line-opacity: 0.1;
    --portfolio-line-stroke: 0.025;
    font-size: clamp(6rem, 8.6vw, 10rem);
  }

  .portfolio-project h3 {
    font-size: clamp(2.1rem, 2.9vw, 3rem);
  }

  .portfolio-project p {
    font-size: 1.24rem;
    max-width: 56ch;
  }

  .nav-container {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .nav-item a {
    font-size: 1rem;
    padding: 12px 16px;
  }

  .section-head {
    max-width: 940px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.hero-mobile {
  display: none;
}

.hero {
  --hero-progress: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: #03142e;
  padding: 120px var(--container-pad) 80px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #03142e;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 0 solid #03142e;
  border-left: 0 solid #03142e;
  border-bottom: 0 solid #03142e;
  pointer-events: none;
  transition:
    border-top-width 0.42s var(--ease),
    border-left-width 0.42s var(--ease),
    border-bottom-width 0.42s var(--ease);
  z-index: 1;
}

.hero.is-scrolled .hero-bg::after {
  border-top-width: 20px;
  border-left-width: 20px;
  border-bottom-width: 20px;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.03);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  transform: translate3d(0, calc(var(--hero-progress, 0) * -18vh), 0);
  transition: transform 0.14s linear;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1,
.hero-copy p,
.hero-actions .btn {
  opacity: 1;
  transform: translateY(0);
}

body.intro-pending .site-header .nav-brand,
body.intro-pending .site-header .nav-social,
body.intro-pending .site-header .nav-right-divider,
body.intro-pending .site-header .primary-nav,
body.intro-pending .site-header .nav-year {
  opacity: 0;
  transform: translateY(-14px);
}

body.intro-pending .site-header,
body.intro-pending .site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}

body.intro-pending .hero-copy h1,
body.intro-pending .hero-copy p,
body.intro-pending .hero-actions .btn {
  opacity: 0;
  transform: translateY(28px);
}

body.intro-pending.intro-ready .site-header .nav-brand,
body.intro-pending.intro-ready .site-header .nav-social,
body.intro-pending.intro-ready .site-header .nav-right-divider,
body.intro-pending.intro-ready .site-header .primary-nav,
body.intro-pending.intro-ready .site-header .nav-year,
body.intro-pending.intro-ready .hero-copy h1,
body.intro-pending.intro-ready .hero-copy p,
body.intro-pending.intro-ready .hero-actions .btn {
  opacity: 1;
  transform: translateY(0);
}

body.intro-pending.intro-ready .site-header .nav-brand {
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: 0.12s;
}

body.intro-pending.intro-ready .site-header .nav-social,
body.intro-pending.intro-ready .site-header .nav-right-divider,
body.intro-pending.intro-ready .site-header .nav-year {
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: 0.22s;
}

body.intro-pending.intro-ready .site-header .primary-nav {
  transition:
    opacity 0.76s var(--ease),
    transform 0.76s var(--ease);
  transition-delay: 0.34s;
}

body.intro-pending.intro-ready .hero-copy h1 {
  transition:
    opacity 0.82s var(--ease),
    transform 0.82s var(--ease);
  transition-delay: 0.72s;
}

body.intro-pending.intro-ready .hero-copy p {
  transition:
    opacity 0.82s var(--ease),
    transform 0.82s var(--ease);
  transition-delay: 0.9s;
}

body.intro-pending.intro-ready .hero-actions .btn {
  transition:
    opacity 0.82s var(--ease),
    transform 0.82s var(--ease);
  transition-delay: 1.08s;
}

.hero h1 {
  font-size: clamp(3.2rem, 8.7vw, 7.4rem);
  line-height: 0.92;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  letter-spacing: 0;
  word-spacing: 0;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.hero-highlight {
  color: #ffc40c;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 760px) {
  .hero {
    display: none;
  }

  .hero-mobile {
    display: block;
    position: relative;
    background: #03132d;
    color: #fff;
    overflow: hidden;
  }

  .hero-mobile-wrapper {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: #03132d;
  }

  .hero-mobile-video-section {
    position: relative;
    width: 100%;
    height: 42vh;
    min-height: 260px;
    z-index: 1;
    background: #000;
  }

  .hero-mobile-video-element,
  .hero-mobile-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 28%;
    transform: scale(1.01);
    transform-origin: center center;
    background: #000;
  }

  .hero-mobile-video-fallback {
    background-size: cover;
    background-position: 68% 28%;
    background-repeat: no-repeat;
  }

  .hero-mobile-content-card {
    position: relative;
    flex: 0 0 auto;
    z-index: 2;
    margin-top: -50px;
    padding: 0 0 18px 24px;
    display: flex;
    flex-direction: column;
    background: #03132d;
  }

  .hero-mobile-wave-top {
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
  }

  .hero-mobile-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-mobile-scroll-container {
    position: absolute;
    right: 14px;
    top: 22px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #ffc40c;
  }

  .hero-mobile-circle-text {
    width: 100%;
    height: 100%;
    animation: hero-mobile-rotate-text 18s linear infinite;
  }

  .hero-mobile-arrow-down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffc40c;
  }

  .hero-mobile-arrow-down span {
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.1em;
  }

  .hero-mobile-arrow-down span + span {
    margin-bottom: 2px;
  }

  .hero-mobile-title {
    font-family: var(--font-nav);
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 0.9;
  }

  .hero-mobile-title-small {
    font-size: 1.8rem;
    opacity: 0.92;
    letter-spacing: -0.5px;
    margin-bottom: 0;
  }

  .hero-mobile-accent-text {
    color: #ffc40c;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 196, 14, 0.12));
  }

  .hero-mobile-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 22px;
    max-width: 65%;
    letter-spacing: 0.02em;
  }

  .hero-mobile-cta {
    display: inline-block;
    background-color: #ffc40c;
    color: #03132d;
    padding: 14px 34px;
    border-radius: 0;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(255, 196, 14, 0.1);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .hero-mobile-cta:active {
    transform: scale(0.98);
  }

  .hero-mobile-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    overflow: hidden;
    width: 100%;
    gap: 10px;
  }

  .hero-mobile-socials-row {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    margin-right: 8px;
    padding-bottom: 5px;
    align-items: center;
  }

  .hero-mobile-social-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .hero-mobile-v-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .hero-mobile-portfolio-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-right: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin-left: 18px;
  }

  .hero-mobile-portfolio-slider::-webkit-scrollbar {
    display: none;
  }

  .hero-mobile-thumb-card {
    flex: 0 0 150px;
    height: 110px;
    scroll-snap-align: start;
  }

  .hero-mobile-thumb {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  }
}

@keyframes hero-mobile-rotate-text {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 98px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6.1vw, 4.8rem);
    line-height: 0.93;
    margin-bottom: 10px;
    max-width: 18ch;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.62;
    max-width: 62ch;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }
}

@media (min-width: 1920px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 152px;
    padding-bottom: 108px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6.9vw, 8rem);
  }
}
.mobile-nav {
  display: none;
}

.mobile-nav svg {
  width: 1em;
  height: 1em;
  display: block;
}

.mobile-nav svg,
.mobile-nav svg * {
  vector-effect: non-scaling-stroke;
}

@media (max-width: 760px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    display: none;
  }

  .mobile-nav {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .mobile-nav-year {
    position: fixed;
    top: 8px;
    right: 12px;
    z-index: 1102;
    font-family: "Montserrat", sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    user-select: none;
    transition:
      opacity 0.3s ease,
      font-size 0.3s ease;
  }

  .mobile-nav-header.mobile-nav-header--scrolled ~ .mobile-nav-year,
  body.mobile-nav-open .mobile-nav-year {
    color: rgba(255, 255, 255, 0.18);
  }

  .mobile-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 1101;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 10px 18px 14px;
    background: transparent;
    transition:
      background-color 0.4s ease,
      box-shadow 0.4s ease,
      padding 0.4s ease;
  }

  .mobile-nav-header.mobile-nav-header--scrolled,
  body.mobile-nav-open .mobile-nav-header {
    padding-top: 12px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-left: 14px;
    background: rgba(3, 19, 45, 0.96);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  }

  .mobile-nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    margin-right: auto;
    padding-left: 0;
  }

  .mobile-nav-brand-mark {
    position: relative;
    display: block;
    width: min(54vw, 170px);
    height: 34px;
    overflow: hidden;
  }

  .mobile-nav-logo-static,
  .mobile-nav-logo-animated {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-logo-static {
    opacity: 1;
    transition: opacity 0.22s var(--ease);
  }

  .mobile-nav-logo-animated {
    opacity: 0;
    transition: opacity 0.22s var(--ease);
  }

  .mobile-nav-brand.mobile-nav-brand--animated .mobile-nav-logo-static {
    opacity: 0;
  }

  .mobile-nav-brand.mobile-nav-brand--animated .mobile-nav-logo-animated {
    opacity: 1;
  }

  .mobile-nav-toggle {
    width: 48px;
    height: 48px;
    border: 0;
    padding: 0;
    margin: 0 2px 0 auto;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #ffc40e;
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
      transform 0.45s ease,
      opacity 0.28s ease,
      width 0.28s ease;
  }

  .mobile-nav-toggle span:nth-child(1),
  .mobile-nav-toggle span:nth-child(3) {
    width: 28px;
  }

  .mobile-nav-toggle span:nth-child(2) {
    width: 20px;
  }

  .mobile-nav-toggle.mobile-nav-toggle--open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-nav-toggle.mobile-nav-toggle--open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .mobile-nav-toggle.mobile-nav-toggle--open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: #03132d;
    color: #fff;
    overflow-x: clip;
    opacity: 0;
    transform: translateY(-102%);
    pointer-events: none;
    transition:
      transform 0.55s cubic-bezier(0.8, 0, 0.2, 1),
      opacity 0.35s ease;
  }

  .mobile-nav-overlay.mobile-nav-overlay--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-panel {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 96px var(--container-pad) 28px;
    overflow-y: auto;
    overflow-x: clip;
    scrollbar-width: none;
  }

  .mobile-nav-panel::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav-ticker {
    margin-bottom: 24px;
    border-left: 1px solid #ffc40e;
    padding: 4px 0 4px 14px;
  }

  .mobile-nav-kicker {
    margin: 0 0 4px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
  }

  .mobile-nav-ticker-window {
    height: 20px;
    overflow: hidden;
    position: relative;
  }

  .mobile-nav-ticker-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transform: translateY(calc(var(--mobile-ticker-index, 0) * -20px));
  }

  .mobile-nav-ticker-item {
    height: 20px;
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
  }

  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-link,
  .mobile-nav-link--submenu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    cursor: pointer;
  }

  .mobile-nav-link-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .mobile-nav-icon {
    width: 18px;
    height: 18px;
    color: #ffc40e;
    opacity: 0.88;
    flex: 0 0 18px;
  }

  .mobile-nav-icon svg,
  .mobile-nav-chevron svg,
  .mobile-nav-cta-icon svg,
  .mobile-nav-socials a svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-icon--small {
    width: 14px;
    height: 14px;
    opacity: 0.45;
  }

  .mobile-nav-chevron {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.42);
    flex: 0 0 16px;
    transition:
      transform 0.35s ease,
      color 0.35s ease,
      opacity 0.35s ease;
  }

  .mobile-nav-item.mobile-nav-item--expanded .mobile-nav-chevron--down {
    transform: rotate(180deg);
    color: #ffc40e;
  }

  .mobile-nav-submenu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
      max-height 0.45s ease,
      opacity 0.3s ease,
      margin 0.3s ease;
  }

  .mobile-nav-item.mobile-nav-item--expanded .mobile-nav-submenu {
    max-height: 320px;
    opacity: 1;
    margin-bottom: 12px;
  }

  .mobile-nav-submenu-inner {
    margin: 0 0 8px 10px;
    padding: 4px 0 4px 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 10px;
  }

  .mobile-nav-sublink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  .mobile-nav-actions {
    margin-top: 28px;
    display: grid;
    gap: 24px;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #ffc40e;
    background: #ffc40e;
    color: #03132d;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .mobile-nav-cta-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .mobile-nav-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
  }

  .mobile-nav-socials {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-nav-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #ffc40e;
  }

  .mobile-nav-socials a svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-socials a:first-child svg {
    fill: currentColor;
    stroke: none;
  }

  .mobile-nav-mail-wrap {
    text-align: right;
  }

  .mobile-nav-mail-wrap p {
    margin: 0 0 4px;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
  }

  .mobile-nav-mail-wrap a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    font-weight: 500;
  }

  .mobile-nav-stagger {
    opacity: 0;
    transform: translateY(15px);
    transition:
      opacity 0.45s cubic-bezier(0.34, 1, 0.64, 1),
      transform 0.45s cubic-bezier(0.34, 1, 0.64, 1);
    transition-delay: var(--stagger-delay, 0ms);
  }

  .mobile-nav.mobile-nav--open .mobile-nav-stagger {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Brand Statement Section ──────────────────────────────── */
.brand-stmt {
  position: relative;
  background: #03142e;
  color: #fff;
  padding: 96px var(--container-pad);
  overflow: hidden;
}

/* watermark */
.brand-stmt-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.brand-stmt-watermark span {
  font-size: clamp(180px, 35vw, 480px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.015);
  transform: translateY(10%) translateX(3%);
  white-space: nowrap;
}

/* grid */
.brand-stmt-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4fr 5fr 3fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

/* ── Column 1: brand ────────────────────────────── */
.brand-stmt-col1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: clamp(20px, 3vw, 36px);
}

.brand-stmt-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand-stmt-kicker-line {
  display: block;
  width: 32px;
  height: 1px;
  background: #ffc40c;
  flex: 0 0 32px;
}

.brand-stmt-kicker span {
  font-family: var(--font-nav);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffc40c;
}

.brand-stmt-heading {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.brand-stmt-heading-outline {
  display: inline-block;
  color: #04152E;
  -webkit-text-stroke: 0;
  text-shadow:
    -1px 0 0 #ffc40c,
    1px 0 0 #ffc40c,
    0 -1px 0 #ffc40c,
    0 1px 0 #ffc40c,
    -1px -1px 0 #ffc40c,
    1px -1px 0 #ffc40c,
    -1px 1px 0 #ffc40c,
    1px 1px 0 #ffc40c;
}

.brand-stmt-col1-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 34ch;
}

.brand-stmt-col1-desc strong {
  color: #fff;
  font-weight: 500;
}

.brand-stmt-scroll-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  opacity: 0.3;
  transition: opacity 0.3s;
  cursor: default;
}

.brand-stmt-scroll-hint:hover {
  opacity: 1;
}

.brand-stmt-scroll-hint span {
  font-family: var(--font-nav);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brand-stmt-scroll-hint::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #fff;
  transition: width 0.3s var(--ease);
}

.brand-stmt-scroll-hint:hover::after {
  width: 80px;
}

/* ── Column 2: value prop ────────────────────────── */
.brand-stmt-col2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 0 clamp(16px, 3vw, 48px);
}

.brand-stmt-col2-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-stmt-col2-heading {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-stmt-col2-heading em {
  color: #ffc40c;
  font-style: inherit;
}

.brand-stmt-col2-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 52ch;
}

/* benefits list */
.brand-stmt-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.brand-stmt-benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.brand-stmt-benefit-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 196, 12, 0.2);
  color: #ffc40c;
  transition: border-color 0.28s var(--ease);
}

.brand-stmt-benefit:hover .brand-stmt-benefit-icon {
  border-color: #ffc40c;
}

.brand-stmt-benefit-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-stmt-benefit-title {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 0.28s var(--ease);
}

.brand-stmt-benefit:hover .brand-stmt-benefit-title {
  color: #ffc40c;
}

.brand-stmt-benefit-desc {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.7;
}

/* ── Column 3: proof ─────────────────────────────── */
.brand-stmt-col3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: clamp(20px, 3vw, 36px);
}

.brand-stmt-stat {
  padding-top: 8px;
}

.brand-stmt-stat-number {
  display: block;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffc40c;
}

.brand-stmt-stat-label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
}

.brand-stmt-col3-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-stmt-stack-label {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.brand-stmt-stack-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.brand-stmt-stack-tags span {
  font-family: var(--font-nav);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.brand-stmt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: #ffc40c;
  color: #03142e;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.28s var(--ease),
    transform 0.18s var(--ease);
}

.brand-stmt-cta:hover {
  background: #fff;
}

.brand-stmt-cta:active {
  transform: scale(0.98);
}

.brand-stmt-cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* side marker */
.brand-stmt-side-marker {
  position: absolute;
  left: 14px;
  bottom: 48px;
  transform-origin: 0 50%;
  transform: rotate(-90deg) translateX(-100%);
  pointer-events: none;
  user-select: none;
}

.brand-stmt-side-marker span {
  font-family: var(--font-nav);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 1.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .brand-stmt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-stmt-col3 {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    text-align: left;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 0;
    padding-top: 36px;
    gap: 40px;
  }

  .brand-stmt-stat {
    padding-top: 0;
  }

  .brand-stmt-col3-bottom {
    flex-direction: row;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 32px;
  }

  .brand-stmt-stack-tags {
    justify-content: flex-start;
  }

  .brand-stmt-cta {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .brand-stmt-side-marker {
    display: none;
  }
}

@media (max-width: 720px) {
  .brand-stmt {
    padding: 20px 14px 12px 22px;
  }

  .brand-stmt-watermark {
    align-items: flex-start;
    justify-content: center;
  }

  .brand-stmt-watermark span {
    font-size: clamp(160px, 60vw, 240px);
    color: rgba(255, 255, 255, 0.015);
    transform: translateY(20px) translateX(0);
  }

  .brand-stmt-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 4px;
  }

  .brand-stmt-col1,
  .brand-stmt-col2,
  .brand-stmt-col3 {
    padding: 0;
    background: transparent;
    border: 0;
  }

  .brand-stmt-col1 {
    justify-content: flex-start;
    border-left: 0;
    padding-left: 0;
  }

  .brand-stmt-kicker {
    gap: 12px;
    margin-bottom: 20px;
  }

  .brand-stmt-kicker-line {
    width: 28px;
    flex-basis: 28px;
  }

  .brand-stmt-kicker span {
    font-size: 0.58rem;
    letter-spacing: 0.34em;
  }

  .brand-stmt-heading {
    font-family: var(--font-sans);
    font-size: clamp(2.7rem, 12.2vw, 3.7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.075em;
    margin-bottom: 20px;
  }

  .brand-stmt-col1-desc {
    max-width: none;
    padding-top: 6px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 32px;
    font-size: 1.06rem;
    line-height: 1.56;
    text-align: left;
    color: rgba(255, 255, 255, 0.66);
  }

  .brand-stmt-col2 {
    gap: 22px;
    padding: 0;
  }

  .brand-stmt-col2-head {
    gap: 12px;
  }

  .brand-stmt-col2-heading {
    font-family: var(--font-sans);
    font-size: clamp(1.58rem, 6.7vw, 2rem);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: -0.06em;
  }

  .brand-stmt-col2-desc {
    max-width: none;
    padding-top: 8px;
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 32px;
    font-size: 0.96rem;
    line-height: 1.64;
    text-align: left;
    color: rgba(255, 255, 255, 0.68);
  }

  .brand-stmt-benefits {
    gap: 18px;
    padding-left: 0;
    padding-right: 18px;
  }

  .brand-stmt-benefit {
    gap: 15px;
  }

  .brand-stmt-benefit-icon {
    width: 33px;
    height: 33px;
  }

  .brand-stmt-benefit-title {
    font-size: 0.66rem;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .brand-stmt-benefit-desc {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    line-height: 1.58;
  }

  .brand-stmt-col3 {
    grid-column: span 1;
    display: grid;
    grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
    align-items: start;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    padding-left: 0;
    gap: 14px 18px;
  }

  .brand-stmt-stat {
    grid-column: 1;
    padding-top: 0;
  }

  .brand-stmt-stat-number {
    font-family: var(--font-sans);
    font-size: clamp(4.4rem, 19vw, 5.4rem);
    font-weight: 900;
  }

  .brand-stmt-stat-label {
    margin-top: 6px;
    font-size: 0.52rem;
    letter-spacing: 0.28em;
  }

  .brand-stmt-col3-bottom {
    display: contents;
  }

  .brand-stmt-col3-bottom > div {
    grid-column: 2;
    align-self: end;
    text-align: right;
  }

  .brand-stmt-stack-tags {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 6px;
  }

  .brand-stmt-stack-tags span {
    display: block;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .brand-stmt-cta {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding: 15px 16px;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .brand-stmt-side-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
    right: 5px;
    top: 0;
    bottom: 0;
    width: 14px;
    transform: none;
    transform-origin: unset;
  }

  .brand-stmt-side-marker span {
    font-size: 0.46rem;
    letter-spacing: 0.34em;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .brand-stmt-scroll-hint {
    display: none;
  }
}
/* ── Featured Projects ───────────────────────────────────── */
.featured-projects {
  background: #03142e;
  color: #fff;
  overflow: hidden;
  --projects-edge: var(--container-pad);
}

.featured-projects-head {
  padding: 120px var(--projects-edge) 40px;
}

.featured-projects-head-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.featured-projects.is-ready .featured-projects-head-inner {
  opacity: 1;
  transform: translateY(0);
}

.featured-projects-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffc40c;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.featured-projects-kicker::before {
  content: "";
  width: 48px;
  height: 2px;
  background: #ffc40c;
  flex: 0 0 48px;
}

.featured-projects-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.featured-projects-title {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-style: italic;
  text-transform: uppercase;
}

.featured-projects-title span {
  display: block;
}

.featured-projects-title-outline {
  display: inline-block;
  color: #03142e;
  -webkit-text-stroke: 0;
  text-shadow:
    -1px 0 0 rgba(255, 255, 255, 0.28),
    1px 0 0 rgba(255, 255, 255, 0.28),
    0 -1px 0 rgba(255, 255, 255, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.28),
    -1px -1px 0 rgba(255, 255, 255, 0.28),
    1px -1px 0 rgba(255, 255, 255, 0.28),
    -1px 1px 0 rgba(255, 255, 255, 0.28),
    1px 1px 0 rgba(255, 255, 255, 0.28);
}

.featured-projects-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.featured-projects-btn {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.featured-projects-btn:hover,
.featured-projects-btn:focus-visible {
  background: #ffc40c;
  color: #03142e;
  border-color: #ffc40c;
  transform: translateY(-2px);
  outline: none;
}

.featured-projects-track-wrap {
  position: relative;
}

.featured-projects-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 0 112px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.featured-projects-track::-webkit-scrollbar {
  display: none;
}

.featured-projects-spacer {
  flex: 0 0 var(--projects-edge);
}

.featured-project-card {
  position: relative;
  flex: 0 0 min(85vw, 800px);
  height: min(70vw, 700px);
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  scroll-snap-align: start;
  background: #061a39;
}

.featured-project-bg,
.featured-project-accent,
.featured-project-link,
.featured-project-card img {
  position: absolute;
  inset: 0;
}

.featured-project-bg {
  overflow: hidden;
}

.featured-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.4;
  transform: scale(1);
  transition:
    filter 1s var(--ease),
    opacity 0.5s var(--ease),
    transform 1s var(--ease);
}

.featured-project-accent {
  background: #ffc40c;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.featured-project-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.featured-project-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.featured-project-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

.featured-project-arrow {
  width: 64px;
  height: 64px;
  color: #03142e;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.featured-project-meta {
  max-width: min(90%, 560px);
}

.featured-project-category {
  margin-bottom: 18px;
  color: #ffc40c;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease);
}

.featured-project-name {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease);
}

.featured-project-link {
  z-index: 3;
}

.featured-project-card:hover img,
.featured-project-card:focus-within img {
  filter: grayscale(0%);
  opacity: 0.7;
  transform: scale(1.05);
}

.featured-project-card:hover .featured-project-accent,
.featured-project-card:focus-within .featured-project-accent {
  transform: translateY(0);
}

.featured-project-card:hover .featured-project-year,
.featured-project-card:focus-within .featured-project-year {
  border-color: #03142e;
  background: #03142e;
  color: #fff;
}

.featured-project-card:hover .featured-project-arrow,
.featured-project-card:focus-within .featured-project-arrow {
  opacity: 1;
  transform: translateX(0);
}

.featured-project-card:hover .featured-project-category,
.featured-project-card:focus-within .featured-project-category,
.featured-project-card:hover .featured-project-name,
.featured-project-card:focus-within .featured-project-name {
  color: #03142e;
}

.featured-projects-progress {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: min(100% - (var(--projects-edge) * 2), 640px);
  z-index: 4;
}

.featured-projects-progress-bar {
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.featured-projects-progress-value {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5%;
  background: #ffc40c;
  transition: width 0.15s linear;
}

.featured-projects-progress-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.featured-projects-progress-percent {
  color: #ffc40c;
}

@media (max-width: 1024px) {
  .featured-projects-head {
    padding-top: 96px;
  }

  .featured-projects-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-projects-controls {
    margin-bottom: 0;
  }

  .featured-project-card {
    flex-basis: min(84vw, 620px);
    height: min(90vw, 620px);
    min-height: 420px;
  }

  .featured-project-name {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }
}

@media (max-width: 760px) {
  .featured-projects-head {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .featured-projects-top {
    width: 100%;
    gap: 16px;
  }

  .featured-projects-kicker {
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .featured-projects-kicker::before {
    width: 34px;
    flex-basis: 34px;
  }

  .featured-projects-title {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .featured-projects-controls {
    align-self: flex-end;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }

  .featured-projects-btn {
    width: 54px;
    height: 54px;
  }

  .featured-projects-btn svg {
    width: 18px;
    height: 18px;
  }

  .featured-projects-track {
    gap: 18px;
    padding-bottom: 96px;
  }

  .featured-project-card {
    flex-basis: 85vw;
    height: 118vw;
    min-height: 0;
    max-height: none;
  }

  .featured-project-content {
    padding: 24px;
  }

  .featured-project-year {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .featured-project-arrow {
    width: 42px;
    height: 42px;
  }

  .featured-project-category {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .featured-project-name {
    font-size: clamp(1.5rem, 7.8vw, 2.6rem);
  }

  .featured-projects-progress {
    bottom: 28px;
    width: calc(100% - (var(--projects-edge) * 2));
  }

  .featured-projects-progress-meta {
    margin-top: 12px;
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-projects-head-inner,
  .featured-project-card img,
  .featured-project-accent,
  .featured-project-year,
  .featured-project-arrow,
  .featured-project-category,
  .featured-project-name,
  .featured-projects-btn,
  .featured-projects-progress-value {
    transition: none !important;
  }
}
:root {
  --intro-bg-deep: #03132d;
  --intro-accent-gold: #ffc40e;
  --intro-ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --intro-title-spacing-start: 1.2em;
  --intro-title-spacing: 0.8em;
  --intro-title-spacing-end: 0.6em;
  --intro-subtitle-spacing: 0.4em;
  --intro-line-width: 200px;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--intro-bg-deep);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  transition:
    opacity 1.5s var(--intro-ease-luxury),
    visibility 1.5s var(--intro-ease-luxury);
}

.intro-overlay[hidden] {
  display: none !important;
}

.intro-overlay.intro-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.intro-bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(255, 196, 14, 0.04) 0%,
    transparent 70%
  );
  animation: intro-pulse-glow 10s infinite alternate;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 42rem);
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
  transition:
    transform 1.5s var(--intro-ease-luxury),
    filter 1.5s var(--intro-ease-luxury);
}

.intro-overlay.intro-hidden .intro-content {
  transform: scale(1.1);
  filter: blur(20px);
}

.intro-title {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 4vw, 2.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--intro-title-spacing);
  margin-right: calc(var(--intro-title-spacing) * -1);
  line-height: 1.2;
  max-width: 20ch;
  color: #fff;
  opacity: 0;
  filter: blur(15px);
  text-wrap: balance;
  animation: intro-luxury-reveal 3s var(--intro-ease-luxury) forwards;
}

.intro-line {
  width: 0;
  height: 1px;
  margin: 2.5rem 0;
  opacity: 0.5;
  background: linear-gradient(
    90deg,
    transparent,
    var(--intro-accent-gold),
    transparent
  );
  animation: intro-line-grow 2.5s var(--intro-ease-luxury) 1s forwards;
}

.intro-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.2vw, 0.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--intro-subtitle-spacing);
  margin-right: calc(var(--intro-subtitle-spacing) * -1);
  line-height: 1.5;
  max-width: 28ch;
  color: var(--intro-accent-gold);
  opacity: 0;
  transform: translateY(10px);
  text-wrap: balance;
  animation: intro-subtitle-fade 2s var(--intro-ease-luxury) 1.8s forwards;
}

body.no-scroll {
  overflow: hidden;
}

@keyframes intro-luxury-reveal {
  0% {
    opacity: 0;
    filter: blur(15px);
    transform: scale(1.05);
    letter-spacing: var(--intro-title-spacing-start);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    letter-spacing: var(--intro-title-spacing-end);
  }
}

@keyframes intro-line-grow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: var(--intro-line-width);
    opacity: 0.5;
  }
}

@keyframes intro-subtitle-fade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0.8;
    transform: translateY(0);
  }
}

@keyframes intro-pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

@media (max-width: 760px) {
  :root {
    --intro-title-spacing-start: 0.34em;
    --intro-title-spacing: 0.24em;
    --intro-title-spacing-end: 0.18em;
    --intro-subtitle-spacing: 0.18em;
    --intro-line-width: min(150px, 48vw);
  }

  .intro-content {
    width: 100%;
    padding: 0 1.25rem;
  }

  .intro-title {
    font-size: clamp(0.95rem, 6.2vw, 1.45rem);
    max-width: 14ch;
    line-height: 1.28;
  }

  .intro-line {
    margin: 1.4rem 0;
  }

  .intro-subtitle {
    font-size: clamp(0.54rem, 2.9vw, 0.72rem);
    max-width: 24ch;
  }
}
/* ── News / Aktualności ────────────────────────────────────── */

.news-section {
  background: #03142e;
  color: #fff;
  padding: 88px var(--container-pad) 110px;
}

.news-header {
  margin-bottom: 72px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 22px;
  border-bottom: 4px solid #ffc40c;
}

.news-header-left span {
  display: block;
  color: #ffc40c;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8.2vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #ffc40c;
  text-transform: uppercase;
  margin: 0;
}

.news-header-right {
  text-align: right;
  display: none;
}

.news-header-right p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.news-header-right time {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffc40c;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: start;
}

/* ── Featured Article ─────────────────────────────────────── */
.news-featured {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.news-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 10;
  background: #000;
  margin-bottom: 8px;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.56s var(--ease);
  filter: grayscale(100%);
  transform: scale(1.05);
}

.news-featured:hover .news-featured-image img {
  filter: grayscale(0%);
  transform: scale(1);
}

.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffc40c;
  color: #03142e;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.news-featured h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  transition: color 0.32s var(--ease);
  margin: 0;
}

.news-featured:hover h3 {
  color: #ffc40c;
}

.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.news-featured-meta time {
  font-weight: 700;
  color: #ffc40c;
}

.news-featured-meta span:nth-child(2) {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.news-featured-content {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.news-featured-content::first-letter {
  font-size: 3.4rem;
  font-weight: 700;
  color: #ffc40c;
  float: left;
  line-height: 1;
  margin-right: 4px;
}

.news-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #ffc40c;
  font-weight: 900;
  text-decoration: none;
  transition: gap 0.32s var(--ease);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.news-featured-link:hover {
  gap: 14px;
}

/* ── Sidebar / News List ──────────────────────────────────── */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 48px;
}

.news-sidebar-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc40c;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffc40c;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: opacity 0.28s var(--ease);
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.news-item:hover {
  opacity: 0.9;
}

.news-item-image {
  width: 80px;
  height: 80px;
  min-height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s var(--ease);
  filter: grayscale(100%);
  opacity: 0.6;
}

.news-item:hover .news-item-image img {
  filter: grayscale(0%);
  opacity: 1;
}

.news-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.news-item-tag {
  display: inline-block;
  width: fit-content;
  background: #ffc40c;
  color: #03142e;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.news-item h4 {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  transition: color 0.28s var(--ease);
  margin: 0;
}

.news-item:hover h4 {
  color: #ffc40c;
  text-decoration: underline;
  text-decoration-color: #ffc40c;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.news-item-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  margin-top: 2px;
}

.news-divider {
  width: 1.5px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* ── Promo Box ───────────────────────────────────────────── */
.news-promo {
  margin-top: 32px;
  padding: 20px 16px;
  background: #ffc40c;
  color: #03142e;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  transform: rotate(-1deg);
}

.news-promo-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #03142e;
  letter-spacing: -0.01em;
}

.news-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  color: #03142e;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #03142e;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.32s var(--ease);
  font-family: var(--font-sans);
}

.news-promo-cta:hover {
  background: #03142e;
  color: #ffc40c;
  gap: 10px;
}

/* ── Responsive Design ───────────────────────────────────── */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-featured {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .news-sidebar {
    padding-left: 0;
  }

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

  .news-header-right {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .news-section {
    padding: 60px var(--container-pad);
  }

  .news-header {
    margin-bottom: 40px;
  }

  .news-header h2 {
    font-size: clamp(2.6rem, 6.8vw, 3.6rem);
  }

  .news-featured {
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .news-featured h3 {
    font-size: clamp(1.6rem, 4.4vw, 2.2rem);
  }

  .news-featured-image {
    margin-bottom: 4px;
  }

  .news-featured-link {
    font-size: 0.8rem;
    margin-top: 16px;
  }

  .news-sidebar {
    gap: 0;
  }

  .news-sidebar-title {
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .news-item {
    padding: 16px 0;
  }

  .news-item-image {
    width: 64px;
    height: 64px;
    min-height: 64px;
  }

  .news-item h4 {
    font-size: 0.9rem;
  }

  .news-item-desc {
    font-size: 0.78rem;
  }

  .news-promo {
    padding: 16px 14px;
    margin-top: 24px;
    margin-bottom: -15px;
  }

  .news-promo-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .news-promo-cta {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}
/* Oferta section moved from main page */
.features {
  padding: 90px var(--container-pad) 80px;
  position: relative;
  overflow: hidden;
  background: #03142e;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 46, 0.9) 0 62%,
    rgba(3, 20, 46, 0.76) 80%,
    rgba(3, 20, 46, 0.34) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.features-video-shell {
  position: absolute;
  top: 0;
  right: 2%;
  bottom: 0;
  width: 20%;
  overflow: hidden;
  z-index: 1;
  background: #03142e;
  pointer-events: none;
}

.features-video-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: #03142e;
  z-index: 2;
}

.features-video-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: #03142e;
  z-index: 2;
}

.features-video {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -22px;
  left: 0;
  width: calc(100% + 2px);
  height: calc(100% + 23px);
  display: block;
  object-fit: contain;
  object-position: right center;
  -webkit-clip-path: inset(0 0 2px 0);
  clip-path: inset(0 0 2px 0);
  background: #03142e;
  transform: translateZ(0);
  transform-origin: right center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  pointer-events: none;
}

.features-inner {
  position: relative;
  z-index: 3;
  width: 98%;
  max-width: none;
  margin: 0;
}

.features-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.features-header h2 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
  color: #fff;
}

.features-header h2 .title-accent {
  color: #fff;
}

.features-header p {
  color: #ffc40c;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.feature-card {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 16px 0 10px;
}

.feature-card .title-accent {
  color: #1f2430;
}

.feature-card p {
  color: #444;
  font-size: 0.95rem;
}

.feature-icon {
  width: 66px;
  height: 66px;
  border: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.feature-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .feature-grid {
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* ── Testimonials Wall ───────────────────────────────────── */
.testimonials-wall {
  background: #03142e;
  color: #fff;
  padding: 88px var(--container-pad);
  overflow: hidden;
}

.testimonials-wall-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-wall-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  min-height: 350px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-wall-card--lg {
  grid-column: span 8;
  min-height: 400px;
  padding: 56px 64px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-wall-card--accent {
  grid-column: span 4;
  min-height: 400px;
  background: #ffc40c;
  color: #03142e;
}

.testimonials-wall-card--sm {
  grid-column: span 4;
}

.testimonials-wall-card--sm:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-wall-card--wide {
  grid-column: span 12;
  min-height: 0;
  padding: 48px 64px;
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.testimonials-wall-quote-icon {
  position: absolute;
  right: -14px;
  bottom: -24px;
  width: 260px;
  height: 260px;
  color: rgba(255, 196, 14, 0.03);
  pointer-events: none;
  user-select: none;
  transform: rotate(-6deg);
}

.testimonials-wall-card--accent .testimonials-wall-quote-icon {
  color: rgba(3, 19, 45, 0.08);
}

.testimonials-wall-card--wide .testimonials-wall-quote-icon {
  position: static;
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  color: rgba(255, 196, 14, 0.05);
}

.testimonials-wall-content,
.testimonials-wall-meta {
  position: relative;
  z-index: 1;
}

.testimonials-wall-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  color: #ffc40c;
}

.testimonials-wall-stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: none;
}

.testimonials-wall-card--accent .testimonials-wall-stars {
  color: #03142e;
}

.testimonials-wall-text {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.testimonials-wall-card--lg .testimonials-wall-text {
  max-width: 52ch;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

.testimonials-wall-card--accent .testimonials-wall-text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.testimonials-wall-card--sm .testimonials-wall-text {
  font-size: 1.12rem;
  line-height: 1.75;
  opacity: 0.9;
}

.testimonials-wall-card--wide .testimonials-wall-text {
  max-width: 34ch;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  opacity: 0.92;
}

.testimonials-wall-name {
  display: block;
  margin-bottom: 6px;
  color: #ffc40c;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonials-wall-company {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.testimonials-wall-card--accent .testimonials-wall-name,
.testimonials-wall-card--accent .testimonials-wall-company {
  color: #03142e;
}

.testimonials-wall-card--accent .testimonials-wall-company {
  opacity: 0.6;
}

.testimonials-wall-card--wide .testimonials-wall-meta {
  margin-left: auto;
  text-align: right;
}

.testimonials-wall-card--wide .testimonials-wall-name {
  font-size: 1.15rem;
}

.testimonials-wall-footer {
  width: 100%;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0.2;
}

.testimonials-wall-footer-line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.testimonials-wall-footer-label {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.8em;
  text-transform: uppercase;
  color: #ffc40c;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .testimonials-wall-card--lg,
  .testimonials-wall-card--accent,
  .testimonials-wall-card--sm,
  .testimonials-wall-card--wide {
    grid-column: span 12;
  }

  .testimonials-wall-card--lg,
  .testimonials-wall-card--sm {
    border-right: none;
  }

  .testimonials-wall-card--accent,
  .testimonials-wall-card--sm {
    min-height: 0;
  }

  .testimonials-wall-card--wide {
    padding: 40px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-wall-card--wide .testimonials-wall-meta {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .testimonials-wall {
    padding: 42px 14px 28px;
  }

  .testimonials-wall-grid {
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .testimonials-wall-card,
  .testimonials-wall-card--lg,
  .testimonials-wall-card--accent,
  .testimonials-wall-card--sm,
  .testimonials-wall-card--wide {
    min-height: 0;
    padding: 20px 18px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .testimonials-wall-card {
    gap: 18px;
  }

  .testimonials-wall-card--accent {
    background: #ffc40c;
  }

  .testimonials-wall-card--wide {
    gap: 18px;
    padding: 20px 18px;
    border-top: 0;
    border-bottom: 0;
  }

  .testimonials-wall-stars {
    margin-bottom: 16px;
  }

  .testimonials-wall-card--lg .testimonials-wall-text {
    max-width: none;
    font-size: clamp(1.18rem, 5.7vw, 1.48rem);
    line-height: 1.3;
  }

  .testimonials-wall-card--accent .testimonials-wall-text,
  .testimonials-wall-card--wide .testimonials-wall-text {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .testimonials-wall-card--sm .testimonials-wall-text {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .testimonials-wall-name {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .testimonials-wall-company {
    font-size: 0.54rem;
    letter-spacing: 0.16em;
  }

  .testimonials-wall-quote-icon {
    width: 112px;
    height: 112px;
    right: -10px;
    bottom: -10px;
    color: rgba(255, 196, 14, 0.08);
  }

  .testimonials-wall-card--accent .testimonials-wall-quote-icon {
    color: rgba(3, 19, 45, 0.08);
  }

  .testimonials-wall-card--wide .testimonials-wall-quote-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .testimonials-wall-footer {
    gap: 12px;
    margin-top: 22px;
  }

  .testimonials-wall-footer-label {
    font-size: 0.46rem;
    letter-spacing: 0.28em;
  }
}
