.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;
  background: linear-gradient(
    180deg,
    rgba(3, 20, 46, 0.16) 0%,
    rgba(3, 20, 46, 0.36) 100%
  );
  pointer-events: none;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions {
  position: relative;
  z-index: 1;
}

.hero-actions .btn {
  position: relative;
  z-index: 1;
}

.hero-actions .btn {
  border-radius: 0;
}

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 .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 .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;
  max-width: 48ch;
  line-height: 1.7;
}

.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-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #03132d;
    transition: opacity 0.5s ease;
  }

  .hero-mobile-video-loader--ready {
    opacity: 0;
    pointer-events: none;
  }

  .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: transparent;
    border: none;
    box-shadow: none;
  }
}

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

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

  .hero-highlight {
    font-size: inherit;
  }
}

.hero-desktop-cut {
  display: none;
}

@media (min-width: 761px) {
  .hero-desktop-cut {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: clamp(96px, 12vw, 148px);
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
  }

  .hero-desktop-cut svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 -8px 18px rgba(0, 0, 0, 0.24));
  }

  .hero-desktop-cut .hero-desktop-scroll-label {
    position: absolute;
    right: clamp(32px, 5vw, 80px);
    bottom: clamp(32px, 3.2vw, 46px);
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: #ffc40c;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
    opacity: clamp(0, calc(1 - var(--hero-progress, 0) * 2.5), 1);
    transition: opacity 0.1s linear;
  }

  .hero-desktop-cut .hero-desktop-scroll-label::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: #ffc40c;
    flex-shrink: 0;
  }

  .hero-desktop-cut .hero-scroll-arrow {
    animation: scroll-arrow-bounce 1.6s ease-in-out infinite;
  }

  @keyframes scroll-arrow-bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(5px);
    }
  }

  .hero {
    overflow: hidden;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .hero-desktop-cut {
    height: clamp(96px, 12vw, 148px);
  }

  .hero-desktop-cut .hero-desktop-scroll-label {
    font-size: clamp(0.7rem, 0.9vw, 0.95rem);
    gap: 8px;
  }
}

@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);
  }
}
body.page-home {
  --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%;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.5s var(--intro-ease),
    visibility 1.5s var(--intro-ease);
}

.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-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%, 55rem);
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
  will-change: opacity;
}

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

.intro-title {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.1em, 0.75vw, 0.18em);
  font-size: clamp(1.28rem, 3.5vw, 2rem);
  font-weight: 250;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.015em;
  max-width: 100%;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  text-wrap: balance;
  animation: intro-fade-up 1.05s var(--intro-ease) 0.12s forwards;
}

.intro-title-line {
  display: block;
  line-height: 1;
}

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

.intro-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.35;
  max-width: 100%;
  color: var(--intro-accent-gold);
  opacity: 0;
  transform: translate3d(0, 4px, 0);
  text-wrap: balance;
  animation: intro-fade-up 0.95s var(--intro-ease) 0.9s forwards;
}

@keyframes intro-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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-bg-glow {
    animation: none;
    opacity: 0.28;
  }

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

  .intro-title {
    gap: clamp(0.08em, 0.55vw, 0.14em);
    font-size: clamp(1.08rem, 5.8vw, 1.55rem);
    letter-spacing: 0.01em;
    max-width: 100%;
    animation-duration: 0.9s;
    animation-delay: 0.08s;
  }

  .intro-line {
    margin: 1.4rem 0;
    animation-duration: 0.72s;
    animation-delay: 0.38s;
  }

  .intro-subtitle {
    font-size: clamp(0.6rem, 2.9vw, 0.8rem);
    max-width: 100%;
    animation-duration: 0.82s;
    animation-delay: 0.64s;
  }
}

@media (min-width: 761px) and (max-width: 1366px) {
  .intro-title {
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    gap: clamp(0.12em, 0.5vw, 0.2em);
    animation-duration: 1.2s;
  }

  .intro-subtitle {
    font-size: clamp(0.82rem, 1.15vw, 0.98rem);
    animation-duration: 1.08s;
  }

  .intro-line {
    animation-duration: 0.95s;
  }
}

@media (min-width: 1367px) {
  .intro-title {
    font-size: clamp(1.9rem, 2.45vw, 2.85rem);
    gap: clamp(0.13em, 0.38vw, 0.22em);
    animation-duration: 1.24s;
  }

  .intro-subtitle {
    font-size: clamp(0.9rem, 1vw, 1.04rem);
    animation-duration: 1.12s;
  }

  .intro-line {
    animation-duration: 1s;
  }
}

.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: stretch;
  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 {
  position: relative;
  min-width: 0;
  width: min(100%, 560px);
  justify-self: end;
  padding-left: clamp(14px, 2vw, 28px);
  transform: translateX(-100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statement-signature {
  display: block;
  height: 56px;
  width: auto;
  margin-top: 32px;
  margin-left: auto;
  opacity: 0.77;
}

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

.statement-heading {
  margin: 0 0 20px 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: #ffc40c;
  text-transform: none;
  letter-spacing: 0;
}

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

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

  .statement-heading {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .statement-signature {
    height: 36px;
    bottom: -60px;
  }

  .statement {
    padding-bottom: 80px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .statement {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .statement-right {
    transform: none;
    padding-left: clamp(10px, 1.5vw, 20px);
  }

  .statement-right p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .statement-rule {
    width: 100px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1920px) {
  .statement {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.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: auto;
  height: 84px;
  max-width: 84px;
  margin-bottom: 20px;
  color: #ffc40c;
  object-fit: contain;
  display: block;
}

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

@media (max-width: 1200px) {
  .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) {
  .process {
    padding: 0;
    min-height: 0;
    border-bottom: 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;
  }

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

  .intro-overlay.intro-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: none;
    transform: translateZ(0) scale(1.01);
  }

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

.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 (min-width: 1025px) and (max-width: 1366px) {
  .featured-projects {
    --projects-edge: clamp(20px, 3vw, 44px);
  }

  .featured-projects-head {
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .featured-projects-top {
    align-items: center;
    gap: 22px;
  }

  .featured-projects-title {
    font-size: clamp(3rem, 6.4vw, 5.8rem);
    line-height: 0.88;
  }

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

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

  .featured-projects-track {
    gap: 20px;
    padding-bottom: 88px;
  }

  .featured-project-card {
    flex-basis: min(56vw, 460px);
    height: min(48vw, 440px);
    min-height: 300px;
    max-height: 440px;
  }

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

  .featured-project-year {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.7rem;
  }

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

  .featured-project-category {
    margin-bottom: 14px;
    font-size: 0.74rem;
    letter-spacing: 0.15em;
  }

  .featured-project-name {
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  }

  .featured-projects-progress {
    width: min(100% - (var(--projects-edge) * 2), 560px);
    bottom: 30px;
  }

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

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

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

.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-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.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-body);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  transition: color 0.32s var(--ease);
  margin: 0;
  text-transform: uppercase;
}

.news-featured h3 a {
  color: inherit;
  text-decoration: none;
}

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

.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 h4 a {
  color: inherit;
  text-decoration: none;
}

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

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

.news-promo-email-input {
  display: block;
  width: 100%;
  padding: 5px 0;
  margin-bottom: 10px;
  background: transparent;
  color: #03142e;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-bottom: 1.5px solid #03142e;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.news-promo-email-input::placeholder {
  color: #03142e;
  opacity: 1;
}

.news-promo-msg {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

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

.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: 20px 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  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(1rem, 1.8vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  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 {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition:
    height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s var(--ease);
  will-change: height, opacity;
}

.faq-item.is-open .faq-answer-wrap {
  opacity: 1;
}

.faq-answer-inner {
  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(0.92rem, 1.4vw, 1.1rem);
  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);
}

@media (max-width: 1200px) {
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-sticky {
    position: static;
  }

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

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

@media (min-width: 1025px) and (max-width: 1366px) {
  .faq {
    padding-top: 88px;
    padding-bottom: 88px;
    --faq-number-width: 2rem;
    --faq-gap: 18px;
  }

  .faq-shell {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 3vw, 48px);
  }

  .faq-sticky {
    top: 96px;
  }

  .faq-intro h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    margin-bottom: 18px;
  }

  .faq-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 38ch;
  }

  .faq-contact-card {
    margin-top: 28px;
    max-width: 320px;
    padding: 20px;
  }

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

  .faq-question {
    padding: 16px 0;
  }

  .faq-question-text {
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.08;
  }

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

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

  .faq-answer-copy p {
    font-size: clamp(0.96rem, 1.25vw, 1.1rem);
    line-height: 1.62;
  }
}

@media (max-width: 760px) {
  .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: 16px 0;
    gap: 12px;
  }

  .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(0.88rem, 4vw, 1.15rem);
    line-height: 1.3;
    font-weight: 600;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    display: grid;
    place-items: center;
    transform: none;
  }

  .faq-toggle-plus,
  .faq-toggle-minus {
    display: none;
  }

  .faq-toggle::before {
    content: "+";
    font-family: var(--font-nav);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
  }

  .faq-item.is-open .faq-toggle::before {
    content: "-";
    color: #03142e;
  }

  .faq-item.is-open .faq-toggle {
    transform: none;
  }

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

  .faq-answer-wrap {
    display: block;
    height: auto;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
      max-height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.18s var(--ease);
    will-change: max-height, opacity;
  }

  .faq-answer-wrap > .faq-answer-inner {
    overflow: visible;
  }

  .faq-item.is-open .faq-answer-wrap {
    opacity: 1;
  }

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

@media (min-width: 1920px) {
  .faq {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.brand-stmt {
  position: relative;
  background: #03142e;
  color: #fff;
  padding: 96px var(--container-pad);
  overflow: hidden;
}

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

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

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

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

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

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

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

@media (min-width: 1101px) and (max-width: 1366px) {
  .brand-stmt {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .brand-stmt-grid {
    grid-template-columns: 3.2fr 4.2fr 2.6fr;
    gap: clamp(20px, 2.8vw, 36px);
  }

  .brand-stmt-col1,
  .brand-stmt-col3 {
    padding-left: clamp(14px, 2vw, 24px);
  }

  .brand-stmt-heading {
    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    margin-bottom: 20px;
  }

  .brand-stmt-col1-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 30ch;
  }

  .brand-stmt-scroll-hint {
    margin-top: 22px;
    gap: 10px;
  }

  .brand-stmt-col2 {
    gap: 24px;
    padding: 0 clamp(10px, 1.8vw, 24px);
  }

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

  .brand-stmt-col2-heading {
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    line-height: 1.02;
  }

  .brand-stmt-col2-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 44ch;
  }

  .brand-stmt-benefits {
    gap: 16px;
  }

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

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

  .brand-stmt-benefit-title {
    font-size: 0.56rem;
    margin-bottom: 2px;
  }

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

  .brand-stmt-stat-number {
    font-size: clamp(3.4rem, 6vw, 5.2rem);
  }

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

  .brand-stmt-col3-bottom {
    gap: 16px;
  }

  .brand-stmt-stack-tags {
    gap: 6px 10px;
  }

  .brand-stmt-stack-tags span {
    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }

  .brand-stmt-cta {
    padding: 12px 14px;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .brand-stmt-side-marker {
    left: 8px;
    bottom: 34px;
  }

  .brand-stmt-side-marker span {
    font-size: 0.4rem;
    letter-spacing: 0.8em;
  }
}

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

#o-firmie.about {
  display: none !important;
}

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

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

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

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

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

@media (min-width: 1920px) {
  .about {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.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-card--qr {
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  overflow: visible;
  min-height: 350px;
  position: relative;
  transition: background 0.3s ease;
}

.testimonials-wall-card--qr:hover {
  background: rgba(255, 196, 14, 0.04);
  border-left-color: #ffc40c;
  border-right-color: #ffc40c;
}

.testimonials-wall-qr-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 32px;
  gap: 20px;
  position: relative;
}

.testimonials-wall-card--qr .testimonials-wall-quote-icon {
  position: absolute;
  right: -14px;
  bottom: -24px;
  flex: none;
  width: 260px;
  height: 260px;
  color: rgba(255, 196, 14, 0.03);
}

.testimonials-wall-card--qr .testimonials-wall-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.testimonials-wall-card--qr .testimonials-wall-stars {
  margin-bottom: 0;
  color: rgba(255, 196, 14, 0.6);
}

.testimonials-wall-card--qr .testimonials-wall-stars svg {
  width: 18px;
  height: 18px;
}

.testimonials-wall-card--qr .testimonials-wall-text {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonials-wall-card--qr .testimonials-wall-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0;
}

.testimonials-wall-card--qr .testimonials-wall-name {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #ffc40c;
  font-weight: 700;
}

.testimonials-wall-card--qr .testimonials-wall-company {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-wall-qr-box {
  flex: 0 0 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.testimonials-wall-penguin {
  display: none;
}

.testimonials-wall-qr-code {
  width: 160px;
  height: 160px;
  display: block;
  object-fit: contain;
}

.testimonials-wall-qr-link {
  display: none;
}

.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.8rem;
  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 (min-width: 1025px) and (max-width: 1366px) {
  .testimonials-wall-card--lg .testimonials-wall-text {
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.32;
  }
  .testimonials-wall-card--accent .testimonials-wall-text {
    font-size: 1.6rem;
  }
  .testimonials-wall-card--qr .testimonials-wall-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@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 {
    min-height: 0;
    padding: 40px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-wall-card--qr {
    flex-direction: row;
    gap: 0;
    padding: 0;
    border-right: none;
    align-items: stretch;
    min-height: 300px;
  }

  .testimonials-wall-qr-left {
    padding: 28px 24px;
    gap: 16px;
  }

  .testimonials-wall-card--qr .testimonials-wall-quote-icon {
    right: -10px;
    bottom: -10px;
    width: 120px;
    height: 120px;
  }

  .testimonials-wall-card--qr .testimonials-wall-content {
    gap: 16px;
  }

  .testimonials-wall-card--qr .testimonials-wall-text {
    font-size: 0.88rem;
  }

  .testimonials-wall-qr-box {
    flex: 0 0 160px;
    width: 160px;
    padding: 20px 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonials-wall-qr-code {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .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--qr {
    flex-direction: column;
    padding: 0;
    gap: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: stretch;
    min-height: auto;
  }

  .testimonials-wall-qr-left {
    padding: 24px;
    gap: 16px;
    flex: 1;
  }

  .testimonials-wall-card--qr .testimonials-wall-quote-icon {
    right: -8px;
    bottom: -8px;
    width: 80px;
    height: 80px;
  }

  .testimonials-wall-card--qr .testimonials-wall-content {
    gap: 12px;
  }

  .testimonials-wall-card--qr .testimonials-wall-text {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .testimonials-wall-card--qr .testimonials-wall-name {
    font-size: 0.68rem;
  }

  .testimonials-wall-card--qr .testimonials-wall-company {
    font-size: 0.58rem;
  }

  .testimonials-wall-qr-box {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 24px 24px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
  }

  .testimonials-wall-penguin {
    display: block;
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 64px;
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
  }

  .testimonials-wall-penguin img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .testimonials-wall-qr-code {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

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

@media (min-width: 900px) and (max-width: 1180px) and (max-height: 820px) {
  .hero {
    min-height: 92svh;
    min-height: 92dvh;
    padding-top: 84px;
    padding-bottom: 34px;
  }

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

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 0.92;
    margin-bottom: 8px;
  }

  .hero p {
    max-width: 54ch;
    font-size: 0.92rem;
    line-height: 1.52;
  }

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

  .hero-actions .btn {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .hero-desktop-cut {
    height: 52px;
  }

  .hero-desktop-cut .hero-desktop-scroll-label {
    right: 24px;
    bottom: 18px;
    font-size: 0.68rem;
    gap: 7px;
    letter-spacing: 0.22em;
  }

  .statement {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .statement-inner {
    grid-template-columns: minmax(max-content, 1.18fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: 0;
  }

  .statement-left {
    font-size: clamp(4rem, 6.5vw, 6rem);
  }

  .statement-right {
    width: min(100%, 420px);
    justify-self: start;
    padding-left: 0;
    margin-left: -40px;
    text-align: left;
  }

  .statement-right p {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 40ch;
    text-wrap: balance;
    margin-left: 0;
  }

  .statement-heading {
    font-size: 1.08rem;
    margin-bottom: 12px;
  }

  .statement-signature {
    position: relative;
    bottom: auto;
    right: auto;
    display: block;
    height: 44px;
    margin-top: 20px;
    margin-left: auto;
  }

  .process,
  .process-frame {
    min-height: 0;
  }

  .process {
    padding-top: 0;
    padding-bottom: 0;
  }

  .process-frame {
    grid-template-columns: auto minmax(0, 1fr);
    height: clamp(380px, 62svh, 520px);
  }

  .process-spines {
    flex-direction: column;
    flex-wrap: nowrap;
    align-self: stretch;
  }

  .process-spine {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    flex: 1;
    min-width: 68px;
    min-height: 0;
    padding: 16px 10px;
    justify-items: center;
    text-align: center;
    gap: 10px;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .process-spine:first-child {
    border-top: 0;
  }

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

  .process-spine-num {
    font-size: 1.15rem;
  }

  .process-spine-label {
    font-size: 0.62rem;
  }

  .process-content {
    padding: 0 clamp(20px, 3vw, 34px);
  }

  .process-icon {
    width: auto;
    height: 54px;
    max-width: 54px;
    margin-bottom: 10px;
    object-fit: contain;
  }

  .process-subtitle {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .process-title {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    margin-bottom: 8px;
  }

  .process-description {
    max-width: 52ch;
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .process-bars {
    margin-top: 14px;
  }

  .featured-projects-head {
    padding-top: 72px;
    padding-bottom: 24px;
  }

  .featured-projects-head-inner {
    gap: 20px;
  }

  .featured-projects-title {
    font-size: clamp(2.7rem, 5.8vw, 5rem);
    line-height: 0.88;
  }

  .featured-projects-controls {
    gap: 10px;
  }

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

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

  .featured-project-card {
    flex-basis: min(50vw, 420px);
    height: min(40vw, 360px);
    min-height: 260px;
    max-height: 360px;
  }

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

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

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

  .featured-project-category {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

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

  .featured-projects-progress {
    bottom: 24px;
    width: min(100% - (var(--projects-edge) * 2), 460px);
  }

  .news-section {
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .news-header {
    margin-bottom: 48px;
    padding-bottom: 16px;
  }

  .news-header h2 {
    font-size: clamp(2.8rem, 6.6vw, 4.8rem);
  }

  .news-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  }

  .news-featured {
    gap: 18px;
    padding-right: 28px;
  }

  .news-featured h3 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
  }

  .news-featured-content {
    font-size: 0.96rem;
    line-height: 1.64;
  }

  .news-sidebar {
    padding-left: 28px;
  }

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

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

  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
    --faq-gap: 16px;
    --faq-number-width: 1.9rem;
  }

  .faq-shell {
    grid-template-columns: minmax(240px, 0.84fr) minmax(0, 1.16fr);
    gap: 28px;
  }

  .faq-sticky {
    top: 84px;
  }

  .faq-kicker {
    margin-bottom: 24px;
  }

  .faq-intro h2 {
    font-size: clamp(2.8rem, 5.6vw, 5rem);
    margin-bottom: 20px;
  }

  .faq-intro p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .faq-contact-card {
    margin-top: 26px;
    max-width: 320px;
    padding: 22px;
  }

  .faq-contact-card p {
    font-size: 0.9rem;
    line-height: 1.58;
    margin-bottom: 16px;
  }

  .faq-question {
    padding: 16px 0;
  }

  .faq-question-text {
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.04;
  }

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

  .faq-answer-inner {
    padding-bottom: 24px;
  }

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

  .brand-stmt {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .testimonials-wall {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .testimonials-wall-card {
    gap: 20px;
    padding: 24px;
    min-height: 280px;
  }

  .testimonials-wall-card--lg,
  .testimonials-wall-card--accent {
    min-height: 320px;
    padding: 32px;
  }

  .testimonials-wall-card--lg .testimonials-wall-text {
    font-size: clamp(1.35rem, 2.2vw, 1.95rem);
    line-height: 1.28;
  }

  .testimonials-wall-card--accent .testimonials-wall-text {
    font-size: 1.35rem;
    line-height: 1.18;
  }

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

  .testimonials-wall-card--qr {
    min-height: 280px;
  }

  .testimonials-wall-qr-left {
    padding: 24px;
  }

  .testimonials-wall-qr-box {
    flex: 0 0 150px;
    width: 150px;
  }

  .testimonials-wall-qr-code {
    width: 110px;
    height: 110px;
  }

  .testimonials-wall-footer {
    margin-top: 32px;
  }
}
