/* =================================================================
   LAHANS GROUP - Company Profile
   Design System & Global Styles
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #e3e3e3;
  --dark-gray: #333333;
  --muted: #6b6b6b;
  --black: #1d274f;
  --red: #bc202f;
  --red-2: #a11d2a;

  /* Typography scale (brief) */
  --fs-caption: 16px;
  --fs-nav: 17px;
  --fs-body: 18px;
  --fs-lead: 20px;
  --fs-card: clamp(20px, 2vw, 24px);
  --fs-section: clamp(40px, 6vw, 72px);
  --fs-hero: clamp(52px, 11vw, 120px);

  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* Layout */
  --container: 100%;
  --gutter: clamp(12px, 1.8vw, 24px);
  --radius: 14px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s;
  --t-med: 0.5s;
  --t-slow: 0.9s;

  --shadow-sm: 0 4px 20px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 18px 50px rgba(17, 17, 17, 0.1);
  --shadow-lg: 0 30px 80px rgba(17, 17, 17, 0.16);

  --header-h: 88px;
  --home-hero-box-height: calc(100svh - var(--header-h) - clamp(48px, 6vw, 72px));
  --home-hero-box-height-mobile: calc(100svh - var(--header-h) - 40px);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Lenis smooth scroll — prevent native smooth-scroll fighting Lenis */
html.lenis {
  height: auto;
}

html.lenis body {
  height: auto;
}

html.lenis,
html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: "Plus Jakarta Sans", "DM Sans", "Google Sans", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Custom pointer dot ---------- */
:root {
  --pointer-dot-size: 8px;
}

.pointer-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--pointer-dot-size);
  height: var(--pointer-dot-size);
  margin: calc(var(--pointer-dot-size) / -2) 0 0 calc(var(--pointer-dot-size) / -2);
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  will-change: transform;
}

.pointer-dot.is-active {
  opacity: 1;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .pointer-dot {
    display: none !important;
  }
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

a:hover {
  color: var(--red);
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: var(--fw-bold);
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.02em;
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: none;
}

.section {
  padding-block: clamp(72px, 11vw, 160px);
  position: relative;
}

.section--tight {
  padding-block: clamp(56px, 8vw, 110px);
}

.section--gray {
  background: var(--light-gray);
}

.section--dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: clamp(20px, 2.4vw, 36px);
}

/* ---------- Typography utilities ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.section--dark .kicker {
  color: var(--red);
}

.section-title {
  font-size: var(--fs-section);
  margin-block: 18px 0;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 60ch;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.66);
}

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

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: none;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head__intro {
  max-width: 620px;
}

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

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
    letter-spacing var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn .btn__arrow {
  position: relative;
  z-index: 1;
  transition: transform var(--t-fast) var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  background: var(--red-2);
  transform: translateY(-2px) scale(1.02);
  letter-spacing: 0.07em;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.btn--ghost:hover {
  --btn-fg: var(--white);
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px) scale(1.02);
}

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--black);
}

.btn--light:hover {
  background: var(--light-gray);
  color: var(--black);
  transform: translateY(-2px) scale(1.02);
}

.btn--on-dark.btn--ghost {
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--on-dark.btn--ghost:hover {
  background: var(--white);
  --btn-fg: var(--black);
  transform: translateY(-2px) scale(1.02);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--fw-medium);
  font-size: var(--fs-nav);
  letter-spacing: 0.04em;
  color: var(--black);
}

.link-arrow svg {
  transition: transform var(--t-fast) var(--ease);
}

.link-arrow:hover {
  color: var(--red);
}

.link-arrow:hover svg {
  transform: translateX(5px);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #111111;
  display: grid;
  place-items: center;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
  overflow: hidden;
}

.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../patterns/preloader-grid.svg");
  background-size: 100px 100px;
  background-position: center;
  opacity: 0.42;
  mask-image: radial-gradient(
    circle at 50% 42%,
    transparent 0%,
    transparent 16%,
    black 58%
  );
}

.preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 42%,
      rgba(17, 17, 17, 0.72) 0%,
      rgba(17, 17, 17, 0.28) 24%,
      transparent 52%
    ),
    radial-gradient(
      circle at 50% 42%,
      rgba(188, 32, 47, 0.05) 0%,
      transparent 42%
    ),
    radial-gradient(circle at 50% 50%, transparent 55%, rgba(17, 17, 17, 0.35) 100%);
  pointer-events: none;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(300px, 72vw);
  padding: clamp(28px, 5vw, 40px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(17, 17, 17, 0.55) 0%,
    rgba(17, 17, 17, 0.2) 58%,
    transparent 72%
  );
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.preloader.is-exiting .preloader__inner {
  opacity: 0;
  transform: scale(1.04);
}

.preloader__logo-stage {
  position: relative;
  width: clamp(148px, 34vw, 196px);
  aspect-ratio: 452.7 / 181.68;
  margin-inline: auto;
  margin-bottom: clamp(22px, 4vw, 32px);
}

.preloader__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.78);
}

.preloader.is-active:not(.preloader--enhanced) .preloader__logo {
  animation: preloaderLogoIn 0.85s var(--ease) forwards;
}

.preloader__ring {
  position: absolute;
  inset: -26%;
  border-radius: 50%;
  border: 2px solid rgba(188, 32, 47, 0.22);
  border-top-color: var(--red);
  opacity: 0;
}

.preloader__ring--alt {
  inset: -42%;
  border-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.preloader.is-active .preloader__ring {
  animation: preloaderRingIn 0.7s var(--ease) forwards, preloaderSpin 1.15s linear infinite;
}

.preloader.is-active .preloader__ring--alt {
  animation: preloaderRingIn 0.85s var(--ease) 0.08s forwards,
    preloaderSpin 1.65s linear 0.08s infinite reverse;
}

@keyframes preloaderLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderRingIn {
  to {
    opacity: 1;
  }
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.preloader__bar {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  border-radius: 100px;
}

.preloader__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-2), var(--red));
  transition: width 0.2s linear;
  border-radius: inherit;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  z-index: 1200;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1100;
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease), height var(--t-med) var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.header__logo svg,
.header__logo img {
  height: 85px;
  width: auto;
  transition: filter var(--t-med) var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.nav__link {
  position: relative;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  padding-block: 6px;
  color: var(--black);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--t-fast) var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--red);
}

.nav__link.is-active::after,
.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
}

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

/* Transparent on hero */
.header--transparent:not(.is-scrolled) {
  background: transparent;
}

.header--transparent:not(.is-scrolled) .nav__link,
.header--transparent:not(.is-scrolled) .header__burger span {
  color: var(--white);
}

.header--transparent:not(.is-scrolled) .header__burger span {
  background: var(--white);
}

.header--transparent:not(.is-scrolled) .nav__link.is-active,
.header--transparent:not(.is-scrolled) .nav__link:hover {
  color: var(--white);
}

.header--transparent:not(.is-scrolled) .header__logo svg,
.header--transparent:not(.is-scrolled) .header__logo img {
  filter: brightness(0) invert(1);
}

.header--transparent:not(.is-scrolled) .btn--ghost {
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Scrolled state */
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
  height: 72px;
}

/* ---------- Header — Home (Orisa-style) ---------- */
.header--home {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}

.header--home .header__logo img {
  filter: none !important;
}

.header__inner--wide {
  max-width: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.header--home .nav--home {
  justify-self: center;
}

.header--home .header__actions {
  justify-self: end;
  gap: 12px;
}

.nav--home .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--black);
  font-weight: var(--fw-regular);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.nav--home .nav__link::after {
  display: none;
}

.nav--home .nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(188, 32, 47, 0.1);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  z-index: -1;
}

.nav--home .nav__link:hover,
.nav--home .nav__link.is-active {
  color: var(--red);
  transform: translateY(-1px);
}

.nav--home .nav__link:hover::before,
.nav--home .nav__link.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.nav__chev {
  opacity: 0.45;
  margin-top: 2px;
}

.header__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--mid-gray);
  display: grid;
  place-items: center;
  color: var(--black);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.header__icon-btn:hover {
  border-color: var(--black);
  background: var(--light-gray);
}

.btn--dark {
  --btn-bg: var(--black);
  --btn-fg: var(--white);
  border: 1px solid var(--black);
}

.btn--dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}

/* ---------- Side panel (right drawer) ---------- */
.side-panel {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
}

.side-panel.is-open {
  pointer-events: auto;
}

.side-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}

.side-panel.is-open .side-panel__backdrop {
  opacity: 1;
}

.side-panel__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(17, 17, 17, 0.12);
  padding: clamp(24px, 4vw, 40px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
}

.side-panel.is-open .side-panel__drawer {
  transform: translateX(0);
}

.side-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.side-panel__logo img {
  height: 34px;
  width: auto;
}

.side-panel__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--mid-gray);
  display: grid;
  place-items: center;
  color: var(--black);
  transition: background var(--t-fast) var(--ease);
}

.side-panel__close:hover {
  background: var(--light-gray);
}

.side-panel__title {
  font-weight: var(--fw-bold);
  color: var(--black);
  line-height: 1.2;
}

.side-panel__title--hero {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.side-panel__title:not(.side-panel__title--hero) {
  font-size: var(--fs-card);
  margin-bottom: 12px;
}

.side-panel__welcome {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.side-panel__intro {
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  margin-bottom: 28px;
}

.side-panel__gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.side-panel__gallery img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 auto;
}

.side-panel__nav {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--mid-gray);
}

.side-panel__nav-links {
  display: grid;
  gap: 6px;
}

.side-panel__nav-links a {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--dark-gray);
  padding-block: 5px;
  transition: color var(--t-fast) var(--ease);
}

.side-panel__nav-links a:hover {
  color: var(--red);
}

.side-panel__block {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.side-panel__block:last-child {
  margin-bottom: 0;
}

.side-panel__block p {
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  margin-bottom: 6px;
}

.side-panel__block p a {
  font-weight: var(--fw-regular);
  color: var(--dark-gray);
  transition: color var(--t-fast) var(--ease);
}

.side-panel__block p a:hover {
  color: var(--red);
}

.side-panel__social {
  display: grid;
  gap: 8px;
}

.side-panel__social a {
  color: var(--dark-gray);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  transition: color var(--t-fast) var(--ease);
}

.side-panel__social a:hover {
  color: var(--red);
}

/* ---------- Mobile bottom navigation (max-width: 1080px only) ---------- */
.bottom-nav,
.mobile-curtain {
  display: none;
}

@media (max-width: 1080px) {
  .header--home .header__grid-btn {
    display: none;
  }

  .bottom-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 1300;
    padding: 6px 8px;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 32px rgba(17, 17, 17, 0.12), 0 2px 8px rgba(17, 17, 17, 0.06);
  }

  .bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 52px;
    padding: 6px 2px;
    border: 0;
    border-radius: 100px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    text-align: center;
    transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  }

  .bottom-nav__label {
    font-size: 8px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 100%;
  }

  .bottom-nav__item:hover,
  .bottom-nav__item.is-active {
    color: var(--black);
    background: transparent;
  }

  .bottom-nav__item--brands {
    color: var(--red);
  }

  .bottom-nav__item--brands:hover,
  .bottom-nav__item--brands.is-active {
    color: var(--red);
    background: transparent;
  }

  .bottom-nav__item--menu.is-active {
    color: var(--black);
    background: transparent;
  }

  .bottom-nav__icon {
    flex-shrink: 0;
    stroke: currentColor;
  }

  .bottom-nav__item--brands .bottom-nav__icon--brands {
    width: 24px;
    height: 24px;
  }

  .mobile-curtain {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1350;
    pointer-events: none;
  }

  .mobile-curtain.is-open {
    pointer-events: auto;
  }

  .mobile-curtain__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
  }

  .mobile-curtain.is-open .mobile-curtain__backdrop {
    opacity: 1;
  }

  .mobile-curtain__panel {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    width: auto;
    height: auto;
    max-height: min(82vh, 760px);
    padding: 12px clamp(20px, 5vw, 40px) clamp(24px, 4vw, 40px);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 -20px 60px rgba(17, 17, 17, 0.18);
    transform: translateY(calc(100% + 88px + env(safe-area-inset-bottom, 0px)));
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-curtain.is-open .mobile-curtain__panel {
    transform: translateY(0);
  }

  .mobile-curtain__handle {
    width: 44px;
    height: 4px;
    margin: 0 auto 12px;
    border-radius: 100px;
    background: var(--mid-gray);
    flex-shrink: 0;
  }

  .mobile-curtain__panel .side-panel__head {
    margin-bottom: clamp(20px, 4vw, 32px);
  }

  .mobile-curtain__panel .side-panel__title--hero {
    font-size: clamp(32px, 8vw, 44px);
  }

  .mobile-curtain__panel .side-panel__gallery img {
    width: 64px;
    height: 64px;
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .to-top {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-curtain__panel,
  .mobile-curtain__backdrop {
    transition-duration: 0.01ms;
  }
}

/* ---------- Search modal (Orisa-style) ---------- */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  pointer-events: none;
}

.search-modal.is-open {
  pointer-events: auto;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}

.search-modal.is-open .search-modal__backdrop {
  opacity: 1;
}

.search-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  background: #ececec;
  border-radius: clamp(18px, 2.4vw, 28px);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px) clamp(32px, 5vw, 56px);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition:
    transform var(--t-med) var(--ease),
    opacity var(--t-med) var(--ease);
}

.search-modal.is-open .search-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.search-modal__logo img {
  height: 34px;
  width: auto;
}

.search-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  transition: background var(--t-fast) var(--ease);
}

.search-modal__close:hover {
  background: rgba(17, 17, 17, 0.08);
}

.search-modal__field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 8px 8px clamp(22px, 3vw, 30px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

.search-modal__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--black);
  padding-block: 10px;
}

.search-modal__input::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.search-modal__input:focus {
  outline: none;
}

.search-modal__submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: var(--fw-medium);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.search-modal__submit:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.search-modal__popular {
  margin-top: clamp(28px, 4vw, 40px);
}

.search-modal__popular-label,
.search-modal__results-label {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.55);
  margin-bottom: 14px;
}

.search-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-modal__tag {
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: var(--fw-medium);
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}

.search-modal__tag:hover {
  background: rgba(188, 32, 47, 0.1);
  color: var(--red);
  transform: translateY(-1px);
}

.search-modal__results {
  margin-top: clamp(24px, 3vw, 32px);
}

.search-modal__list {
  display: grid;
  gap: 8px;
}

.search-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--white);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.search-modal__item:hover {
  background: rgba(188, 32, 47, 0.08);
  transform: translateX(4px);
}

.search-modal__item-title {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--black);
}

.search-modal__item-type {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
}

.search-modal__empty {
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
}

@media (max-width: 640px) {
  .search-modal__field {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 14px;
  }

  .search-modal__submit {
    justify-content: center;
  }
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
}

.header__burger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--black);
  transition: transform var(--t-fast) var(--ease),
    opacity var(--t-fast) var(--ease);
}

.header.menu-open .header__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header.menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

.header.menu-open .header__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--t-med) var(--ease);
}

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

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav__link {
  font-size: clamp(30px, 9vw, 52px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--white);
  padding-block: 8px;
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  color: var(--red);
}

.mobile-nav__footer {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: var(--fs-nav);
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Hero Orisa-style (homepage) ---------- */
.hero-orisa {
  padding-top: clamp(18px, 2.5vw, 28px);
  padding-bottom: clamp(12px, 1.8vw, 20px);
  background: var(--white);
}

.section--compact-top {
  padding-top: clamp(40px, 5vw, 64px);
}

#about.section--compact-top {
  padding-bottom: clamp(40px, 5vw, 64px);
}

.container--about {
  padding-inline: clamp(40px, 7vw, 120px);
  max-width: 1480px;
  margin-inline: auto;
}

.container--ecosystem {
  padding-inline: clamp(16px, 2.4vw, 48px);
  max-width: none;
  margin-inline: auto;
}

.about-content__title {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.about-content__desc {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.about-content__desc p {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--dark-gray);
  text-align: justify;
}

.about-content__cta {
  margin-top: clamp(24px, 3vw, 32px);
  width: fit-content;
}

.about-media {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 38vw, 540px);
}

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

.about-media.media-frame:hover img {
  transform: scale(1.05);
}

.page-hero:has(+ #overview) {
  padding-bottom: clamp(44px, 6vw, 76px);
}

#overview.section--compact-top {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

#overview + #vision-mission {
  padding-top: clamp(40px, 5vw, 64px);
}

#vision-mission {
  padding-bottom: clamp(28px, 4vw, 48px);
}

#vision-mission + #values {
  padding-top: clamp(28px, 4vw, 48px);
}

.hero-orisa__slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--home-hero-box-height);
  min-height: var(--home-hero-box-height);
  background: var(--black);
}

.hero-orisa__slides {
  position: absolute;
  inset: 0;
}

.hero-orisa__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.hero-orisa__slide.is-active {
  opacity: 1;
}

.hero-orisa__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.72) 0%,
    rgba(17, 17, 17, 0.35) 45%,
    rgba(17, 17, 17, 0.15) 100%
  );
}

.hero-orisa__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(110px, 16vw, 150px);
  z-index: 2;
  padding: clamp(24px, 4vw, 48px);
  max-width: min(720px, 90%);
  color: var(--white);
}

.hero-orisa__tags {
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.hero-orisa__title {
  font-size: 70px;
  font-weight: var(--fw-bold);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.hero-orisa__arrows {
  position: absolute;
  right: clamp(20px, 3vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-orisa__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.hero-orisa__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-orisa__arrow-glyph--mobile {
  display: none;
}

.hero-orisa__cards {
  position: absolute;
  left: clamp(16px, 2.4vw, 28px);
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 4;
  overflow: hidden;
}

.hero-orisa__cards-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.hero-orisa__cards-track::-webkit-scrollbar {
  display: none;
}

.hero-orisa__card {
  flex: 0 0 calc((100% - 7 * 10px) / 8);
  min-width: calc((100% - 7 * 10px) / 8);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  position: relative;
  transition: box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.hero-orisa__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-orisa__card.is-active {
  box-shadow: var(--shadow-md);
}

.hero-orisa__card-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background var(--t-fast) var(--ease);
}

.hero-orisa__card.is-active .hero-orisa__card-dot {
  background: var(--red);
}

.hero-orisa__card-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.hero-orisa__card-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter var(--t-med) var(--ease), opacity var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
}

.hero-orisa__card:hover .hero-orisa__card-logo img,
.hero-orisa__card.is-active .hero-orisa__card-logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.hero-orisa__card-text {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--black);
  line-height: 1.35;
  padding-right: 12px;
}

.hero-orisa__card-num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}

@media (max-width: 1080px) {
  .nav--home {
    display: none;
  }

  .header--home .header__grid-btn {
    display: none;
  }

  .hero-orisa__card {
    flex: 0 0 calc((100% - 3 * 10px) / 4);
    min-width: calc((100% - 3 * 10px) / 4);
  }
}

@media (max-width: 880px) {
  .hero-orisa__overlay {
    max-width: 100%;
    bottom: clamp(130px, 22vw, 170px);
  }

  .hero-orisa__card {
    flex: 0 0 calc((100% - 2 * 10px) / 3);
    min-width: calc((100% - 2 * 10px) / 3);
  }
}

@media (max-width: 640px) {
  .culture-cta__box,
  .journey__box {
    height: var(--home-hero-box-height-mobile);
    min-height: var(--home-hero-box-height-mobile);
  }
}

/* ---------- Hero (legacy full-screen) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.45) 0%,
    rgba(17, 17, 17, 0.2) 35%,
    rgba(17, 17, 17, 0.85) 100%
  );
}

.hero__media {
  position: absolute;
  inset: -8% 0 0 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(40px, 8vw, 90px);
  padding-top: calc(var(--header-h) + 40px);
}

.hero__eyebrow {
  font-size: var(--fs-nav);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 22px;
}

.hero__desc {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin-bottom: 34px;
}

/* Brand snap navigation */
.brand-snap {
  position: relative;
  z-index: 2;
  margin-top: clamp(30px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 26px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.brand-snap::-webkit-scrollbar {
  display: none;
}

.brand-snap__item {
  flex: 0 0 auto;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}

.brand-snap__item:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.brand-snap__item.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(40px, 8vw, 90px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-caption);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(-100%);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(60px, 9vw, 120px));
  padding-bottom: clamp(50px, 7vw, 100px);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -160px;
  background: radial-gradient(
    circle,
    rgba(188, 32, 47, 0.5) 0%,
    rgba(188, 32, 47, 0) 70%
  );
  filter: blur(10px);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.page-hero__title {
  font-size: clamp(44px, 8vw, 96px);
  color: var(--white);
  margin-block: 18px;
}

.page-hero__desc {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.7);
  max-width: 60ch;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: var(--fs-nav);
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--red);
}

/* ---------- About blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.split--equal {
  align-items: stretch;
}

.split--equal .split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.split--equal .split__media {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

/* About section — lightweight fade slider (no Swiper) */
.about-slider {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 38vw, 540px);
  overflow: hidden;
}

.about-slider__track {
  position: absolute;
  inset: 0;
}

.about-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
  background: linear-gradient(145deg, #ececec 0%, #d8d8d8 100%);
}

.about-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

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

.about-slider.media-frame:hover img {
  transform: none;
}

.about-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.about-slider__dot.is-active {
  background: var(--red);
  transform: scale(1.25);
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.media-frame--tall {
  aspect-ratio: 4 / 5;
}

.media-frame--wide {
  aspect-ratio: 16 / 10;
}

.media-frame:hover img {
  transform: scale(1.05);
}

.float-badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  z-index: 5;
  background: var(--red);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.float-badge strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: var(--white);
}

.float-badge span {
  font-size: var(--fs-nav);
  opacity: 0.9;
}

/* Vision / Mission — accordion */
.vm-accordion__heading {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}

.vm-accordion {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  max-width: 920px;
  margin-inline: auto;
}

.vm-accordion__item {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  transition: box-shadow var(--t-fast) var(--ease);
}

.vm-accordion__item.is-open {
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
}

.vm-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px);
  text-align: left;
  color: var(--black);
}

.vm-accordion__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: var(--fw-medium);
}

.vm-accordion__label {
  flex: 1;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
}

.vm-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.vm-accordion__icon::before,
.vm-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: opacity var(--t-fast) var(--ease);
}

.vm-accordion__icon::before {
  width: 14px;
  height: 2px;
}

.vm-accordion__icon::after {
  width: 2px;
  height: 14px;
}

.vm-accordion__item.is-open .vm-accordion__icon::after {
  opacity: 0;
}

.vm-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.vm-accordion__item.is-open .vm-accordion__panel {
  grid-template-rows: 1fr;
}

.vm-accordion__content {
  overflow: hidden;
  min-height: 0;
}

.vm-accordion__content p {
  padding: 0 clamp(22px, 3vw, 32px) clamp(24px, 3vw, 32px);
  padding-left: calc(clamp(22px, 3vw, 32px) + 34px + clamp(14px, 2vw, 22px));
  font-size: 20px;
  line-height: 1.75;
  color: var(--dark-gray);
  max-width: 78ch;
}

/* Vision / Mission — legacy cards (job-detail) */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  transition: transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.vm-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(188, 32, 47, 0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.vm-card h3 {
  font-size: var(--fs-card);
  margin-bottom: 12px;
}

/* ---------- Core Values (process-style) ---------- */
.container--values {
  padding-inline: clamp(48px, 8vw, 140px);
  max-width: 1560px;
  margin-inline: auto;
}

.core-values {
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
}

.core-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../patterns/preloader-grid.svg");
  background-size: 100px 100px;
  background-position: center;
  opacity: 0.45;
  pointer-events: none;
}

.core-values .container--values {
  position: relative;
  z-index: 1;
}

.core-values__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.core-values__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.core-values__kicker-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  flex-shrink: 0;
}

.core-values__title {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.core-values__explain p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--dark-gray);
  max-width: 46ch;
}

.core-values__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 360px;
}

.core-values__highlight strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.core-values__highlight span {
  display: block;
  font-size: 16px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}

.core-values__divider {
  height: 1px;
  background: rgba(17, 17, 17, 0.1);
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.core-values__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.core-values__item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.core-values__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.core-values__item-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.core-values__item-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(17, 17, 17, 0.06);
  position: relative;
}

.core-values__item.is-active .core-values__item-dot {
  border-color: var(--red);
  background: var(--red);
}

.core-values__item.is-active .core-values__item-dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}

.core-values__item-num {
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.55);
}

.core-values__item-tag {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}

.core-values__item-icon {
  margin: 0 0 clamp(14px, 1.8vw, 20px);
}

.core-values__item-icon img {
  display: block;
  width: 72px;
  height: auto;
}

.core-values__item h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

.core-values__item > p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: clamp(22px, 3vw, 32px);
}

.core-values__item-foot {
  margin-top: auto;
}

.core-values__item-label {
  display: block;
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 14px;
}

.core-values__item-foot ul {
  display: grid;
  gap: 10px;
}

.core-values__item-foot li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.72);
}

.core-values__item-foot li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: var(--fw-bold);
}

@media (max-width: 1200px) {
  .core-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .core-values__header {
    grid-template-columns: 1fr;
  }

  .core-values__title {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .container--values {
    padding-inline: clamp(24px, 6vw, 40px);
  }

  .core-values__grid {
    grid-template-columns: 1fr;
  }

  .core-values__highlights {
    max-width: none;
  }
}

/* ---------- Section sliders (about + brand detail mobile) ---------- */
.about-mobile-slider__dots,
.section-slider__dots {
  display: none;
}

.section-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--mid-gray);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

@media (max-width: 1080px) {
  #values .about-mobile-slider .core-values__grid,
  #team .about-mobile-slider .team-section__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  #values .about-mobile-slider .core-values__grid::-webkit-scrollbar,
  #team .about-mobile-slider .team-section__grid::-webkit-scrollbar {
    display: none;
  }

  #values .about-mobile-slider .core-values__item,
  #team .about-mobile-slider .team-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
  }

  .about-mobile-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .about-mobile-slider__dot {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: var(--mid-gray);
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  }

  .about-mobile-slider__dot.is-active,
  .section-slider__dot.is-active {
    background: var(--red);
    transform: scale(1.15);
  }

  #team .team-section__aside {
    text-align: center;
  }

  #team .team-section__aside p {
    margin-inline: auto;
  }

  #team .team-section__cta {
    margin-inline: auto;
  }

  #milestones .journey__intro {
    flex-direction: column;
  }

  #milestones .journey__cta {
    align-self: center;
  }
}

/* ---------- Journey / Milestones ---------- */
.journey {
  padding-top: clamp(18px, 2.5vw, 28px);
  padding-bottom: clamp(12px, 1.8vw, 20px);
  background: var(--white);
}

#values + .journey {
  padding-top: clamp(28px, 4vw, 48px);
}

#milestones + .team-section {
  padding-top: clamp(28px, 4vw, 48px);
}

main:has(> .team-section:last-child) + .footer {
  padding-top: clamp(16px, 2.5vw, 28px);
}

.journey__box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--home-hero-box-height);
  min-height: var(--home-hero-box-height);
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.72);
}

.journey__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(24px, 4vw, 48px);
}

.journey__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(20px, 3vw, 32px);
  flex-shrink: 0;
}

.journey__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.journey__kicker:hover {
  color: var(--white);
}

.journey__title {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.journey__lead {
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
}

.journey__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--white);
  transition:
    border-color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}

.journey__cta:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.journey__content {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 5.5vw, 72px);
  align-items: center;
}

.journey__content > * {
  min-height: 0;
}

.journey__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  min-height: 0;
  height: 100%;
}

.journey__image {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: clamp(14px, 2vw, 20px);
  box-shadow: none;
  overflow: hidden;
}

.journey__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.journey__image-cap {
  position: absolute;
  left: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  z-index: 2;
}

.journey__since {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.journey__image-cap p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 24ch;
}

.journey__brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 26px);
  border-radius: clamp(14px, 2vw, 20px);
  background: #161616;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--fw-medium);
  letter-spacing: -0.02em;
}

.journey__brand-plus {
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
}

.journey__list-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  align-self: center;
  width: 100%;
  min-height: 0;
  max-height: 100%;
  transform: translateY(clamp(-32px, -4vw, -16px));
}

.journey__list-viewport {
  max-height: clamp(360px, 40vh, 500px);
  overflow: hidden;
}

.journey__list {
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.journey__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-self: center;
  z-index: 2;
}

.journey__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  transition:
    background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease),
    opacity var(--t-fast) var(--ease);
}

.journey__nav-btn:hover:not(:disabled) {
  background: var(--red-2);
  transform: translateY(-1px);
}

.journey__nav-btn:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.journey__entry {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px) clamp(8px, 1.2vw, 14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: opacity var(--t-fast) var(--ease);
}

.journey__entry:hover .journey__entry-body h3 {
  color: var(--red);
}

.journey__entry:hover .journey__entry-meta span {
  color: rgba(255, 255, 255, 0.62);
}

.journey__entry:last-child {
  border-bottom: 0;
}

.journey__entry-meta {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.journey__entry-meta span {
  display: block;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--t-fast) var(--ease);
}

.journey__entry-body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  transition: color var(--t-fast) var(--ease);
}

.journey__entry-body h3 svg {
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.55;
}

.journey__entry-body p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  .journey__content {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
    align-items: stretch;
  }

  .journey__list-panel {
    transform: none;
    min-height: clamp(280px, 38vw, 380px);
  }
}

@media (max-width: 768px) {
  .journey__intro {
    flex-direction: column;
  }

  .journey__title {
    max-width: none;
  }

  .journey__entry {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---------- Key points ---------- */
.keypoints {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mid-gray);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.keypoint {
  background: var(--white);
  padding: clamp(28px, 3.5vw, 48px);
  transition: background var(--t-med) var(--ease),
    color var(--t-med) var(--ease);
}

.keypoint:hover {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
}

.keypoint:hover h3,
.keypoint:hover .keypoint__num {
  color: var(--white);
}

.keypoint__num {
  font-size: var(--fs-nav);
  font-weight: var(--fw-bold);
  color: var(--red);
  letter-spacing: 0.1em;
}

.keypoint h3 {
  font-size: var(--fs-card);
  margin-block: 18px 12px;
}

.keypoint p {
  font-size: var(--fs-body);
  color: inherit;
}

/* Why LAHANS — 5 vertical columns */
.keypoints--strip {
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.keypoint--vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: clamp(280px, 30vw, 360px);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
    background var(--t-med) var(--ease), color var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease);
}

.keypoint--vertical:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(188, 32, 47, 0.22);
  border-color: var(--red);
  background: var(--red);
  color: rgba(255, 255, 255, 0.88);
}

.keypoints--strip .keypoint__num {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: var(--fw-bold);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--red);
  opacity: 0.92;
}

.keypoints--strip .keypoint h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-block: clamp(18px, 2.2vw, 26px) 12px;
  line-height: 1.25;
}

.keypoints--strip .keypoint p {
  margin-top: auto;
  line-height: 1.65;
  color: var(--muted);
}

.keypoints--strip .keypoint--vertical:hover h3,
.keypoints--strip .keypoint--vertical:hover .keypoint__num {
  color: var(--white);
}

.keypoints--strip .keypoint:hover p,
.keypoints--strip .keypoint--vertical:hover p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1200px) {
  .keypoints--strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .keypoints--strip:not(#why-lahans .keypoints--strip) {
    grid-template-columns: repeat(2, 1fr);
  }

  .keypoint--vertical:not(#why-lahans .keypoint--vertical) {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .keypoints--strip:not(#why-lahans .keypoints--strip) {
    grid-template-columns: 1fr;
  }

  .keypoint--vertical:not(#why-lahans .keypoint--vertical) {
    min-height: auto;
  }
}

/* ---------- Homepage mobile compaction (max-width: 1080px) ---------- */
.keypoints-slider__dots {
  display: none;
}

@media (max-width: 1080px) {
  .hero-orisa {
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .hero-orisa__slider {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 6;
  }

  .hero-orisa__overlay {
    max-width: 100%;
    bottom: clamp(88px, 17vw, 112px);
    padding: clamp(14px, 3.5vw, 22px);
  }

  .hero-orisa__title {
    font-size: clamp(20px, 5.2vw, 30px);
  }

  .hero-orisa__arrows {
    display: none;
  }

  .hero-orisa__card {
    flex: 0 0 calc((100% - 10px) / 2);
    min-width: calc((100% - 10px) / 2);
    padding: 8px 10px;
  }

  .hero-orisa__card-logo {
    width: 40px;
    height: 40px;
  }

  #why-lahans .keypoints-slider {
    position: relative;
  }

  #why-lahans .keypoints--strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  #why-lahans .keypoints--strip::-webkit-scrollbar {
    display: none;
  }

  #why-lahans .keypoints--strip .keypoint--vertical {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    min-height: 220px;
  }

  #about .about-content__cta {
    margin-inline: auto;
  }

  .keypoints-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .keypoints-slider__dot {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: var(--mid-gray);
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  }

  .keypoints-slider__dot.is-active {
    background: var(--red);
    transform: scale(1.15);
  }

  #brands .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
  }

  #brands .ecosystem-card:nth-child(n + 7) {
    display: none;
  }

  #brands .ecosystem-card__visual {
    aspect-ratio: 4 / 4.8;
  }

  #brands .ecosystem-card__foot {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  #brands .ecosystem-card__btn {
    width: auto;
  }

  #newsroom .card-grid {
    grid-template-columns: 1fr;
  }

  #newsroom .card-grid > .card:nth-child(n + 3) {
    display: none;
  }

  #newsroom .card__foot {
    display: flex;
    justify-content: center;
  }
}

/* ---------- Section spacing (homepage clusters) ---------- */
#why-lahans {
  padding-bottom: clamp(20px, 3vw, 36px);
}

.section--numbers {
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(56px, 8vw, 120px);
  min-height: clamp(460px, 58vh, 680px);
}

.section--numbers .section-head {
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

#brands.section--compact-top {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(20px, 3vw, 36px);
}

#brands.section--ecosystem + .culture-cta {
  padding-top: clamp(18px, 2.5vw, 28px);
}

.culture-cta {
  padding-top: clamp(18px, 2.5vw, 28px);
  padding-bottom: clamp(12px, 1.8vw, 20px);
  background: var(--white);
}

#newsroom.section--compact-top {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(16px, 2.5vw, 28px);
}

main + .footer {
  padding-top: clamp(8px, 1.2vw, 14px);
}

/* ---------- LAHANS in Numbers (bg image) ---------- */
.section--numbers {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.section--numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/landscape-industrial-building.png")
    center / cover no-repeat;
  transform: scale(1.06);
  opacity: 0.62;
}

.section--numbers::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.86) 0%,
    rgba(17, 17, 17, 0.62) 42%,
    rgba(17, 17, 17, 0.86) 100%
  );
}

.section--numbers .container {
  position: relative;
  z-index: 1;
}

.section--numbers .section-title {
  font-size: clamp(32px, 4.8vw, 56px);
}

.section-title--single-line {
  white-space: nowrap;
  font-size: clamp(32px, 4.8vw, 56px);
}

@media (max-width: 768px) {
  .section-title--single-line {
    white-space: normal;
    font-size: clamp(30px, 7vw, 44px);
  }
}

/* ---------- Stats / counter ---------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px) clamp(16px, 2.5vw, 28px);
  width: min(100%, 980px);
  margin-inline: auto;
}

.stat {
  flex: 0 1 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat__num {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat__num [data-counter] {
  display: inline-block;
  min-width: 2ch;
  text-align: center;
}

.stat__suffix {
  color: var(--red);
  font-size: 0.5em;
  line-height: 1;
  transform: translateY(-0.06em);
}

.stat__label {
  margin-top: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- Our Brands (homepage) ---------- */
.section--ecosystem {
  background: #ececec;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.ecosystem-card {
  background: var(--white);
  border-radius: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}

.ecosystem-card__visual {
  position: relative;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  background: #ddd;
}

.ecosystem-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.45s var(--ease);
}

.ecosystem-card:hover .ecosystem-card__img {
  transform: scale(1.05);
  filter: brightness(0.92);
}

.ecosystem-card__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18%;
  background: rgba(17, 17, 17, 0.72);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.ecosystem-card:hover .ecosystem-card__logo,
.ecosystem-card:focus-within .ecosystem-card__logo {
  opacity: 1;
  transform: scale(1);
}

.ecosystem-card__logo img {
  width: 100%;
  max-width: 220px;
  max-height: 88px;
  object-fit: contain;
}

.ecosystem-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.6vw, 18px);
  background: var(--white);
}

.ecosystem-card__name {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.ecosystem-card__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--white);
  background: var(--black);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.ecosystem-card__btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Brands showcase ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.brand-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(188, 32, 47, 0.12) 0%,
    rgba(188, 32, 47, 0) 70%
  );
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card__logo {
  height: 96px;
  display: flex;
  align-items: center;
}

.brand-card__logo img {
  max-height: 80px;
  max-width: 78%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter var(--t-med) var(--ease),
    opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}

.brand-card:hover .brand-card__logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
}

.brand-card__meta {
  position: relative;
  z-index: 1;
}

.brand-card__sector {
  font-size: var(--fs-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: var(--fw-medium);
}

.brand-card__name {
  font-size: var(--fs-card);
  margin-block: 10px 8px;
}

.brand-card__desc {
  font-size: var(--fs-body);
  color: var(--muted);
  margin-bottom: 16px;
}

/* Swiper brand carousel */
.brand-carousel {
  overflow: visible;
}

.brand-carousel .swiper-slide {
  height: auto;
}

/* ---------- Brands page ---------- */
.brands-statement,
.section--brands-showcase {
  padding-block: clamp(48px, 7vw, 100px);
}

.brands-statement .section-head,
.section--brands-showcase .section-head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.brands-statement__title {
  margin-inline: auto;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.brands-statement__lead {
  margin: 18px auto 0;
  max-width: 58ch;
}

.brands-logo-slider {
  margin-top: clamp(28px, 4vw, 48px);
  overflow: hidden;
}

.brands-logo-swiper {
  overflow: visible;
}

.brands-logo-swiper .swiper-slide {
  height: auto;
}

.brands-logo-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 28px);
  background: #ececec;
  border-radius: clamp(14px, 1.8vw, 22px);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.brands-logo-tile img {
  width: 72%;
  max-height: 64%;
  object-fit: contain;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}

.brands-logo-tile:hover img {
  transform: scale(1.04);
}

.section--brands-showcase {
  background: #f7f7f7;
}

.container--brands {
  max-width: 1280px;
}

.brands-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

.brand-showcase.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.brand-showcase .split__media {
  display: block;
  width: 100%;
  min-width: 0;
}

.brand-showcase .split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-showcase--reverse .split__media {
  order: 2;
}

.brand-showcase--reverse .split__content {
  order: 1;
}

.brand-showcase__visual {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: clamp(18px, 2.2vw, 28px);
  background: #ddd;
}

.brand-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.brand-showcase__visual:hover .brand-showcase__img {
  transform: scale(1.04);
}

.brand-showcase__logo {
  position: absolute;
  left: clamp(16px, 2.4vw, 24px);
  bottom: clamp(16px, 2.4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: clamp(52px, 7vw, 68px);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.14);
}

.brand-showcase__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-showcase__content .kicker {
  margin-bottom: 4px;
}

.brand-showcase__name {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-block: 14px 18px;
}

.brand-showcase__desc {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 24px;
}

.brand-showcase__cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.brand-showcase__cats li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-body);
  color: var(--black);
  line-height: 1.5;
}

.brand-showcase__cats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

.brands-filter {
  justify-content: center;
  margin-top: clamp(8px, 1.5vw, 16px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.brands-showcase__empty {
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-lead);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.brands-showcase__empty[hidden] {
  display: none;
}

.brand-showcase__quotes {
  margin-bottom: 28px;
  width: 100%;
  position: relative;
}

.brand-quote-swiper {
  overflow: hidden;
  width: 100%;
}

/* Fallback before Swiper init — show first testimonial only */
.brand-quote-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.brand-quote-swiper .swiper-slide {
  height: auto;
}

.brand-quote-swiper .swiper-wrapper {
  align-items: stretch;
}

.brand-quote-swiper__pagination {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  margin-top: 14px;
  text-align: center;
  line-height: 1;
}

.brand-quote-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--mid-gray);
  opacity: 1;
}

.brand-quote-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--red);
}

.brand-showcase__quote {
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
}

.brand-showcase__quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.brand-showcase__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--light-gray);
}

.brand-showcase__quote-meta cite {
  display: block;
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  color: var(--black);
}

.brand-showcase__quote-meta span {
  display: block;
  font-size: var(--fs-caption);
  color: var(--muted);
  margin-top: 2px;
}

.brand-showcase__quote p {
  margin: 0;
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.65;
}

.brand-showcase.is-hidden {
  display: none;
}

.brand-showcase__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 12px 22px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  background: var(--black);
  color: var(--white);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.brand-showcase__btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.brands-showcase__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 56px);
}

.brands-filter-slider__dots {
  display: none;
}


/* ---------- Brands page mobile (max-width: 1080px only) ---------- */
@media (max-width: 1080px) {
  #brands-showcase .brands-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 4px;
    margin-bottom: 0;
  }

  #brands-showcase .brands-filter::-webkit-scrollbar {
    display: none;
  }

  #brands-showcase .brands-filter .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .brands-filter-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: clamp(24px, 4vw, 40px);
  }

  .brands-filter-slider__dots[hidden] {
    display: none;
  }

  #brands-showcase .brand-showcase__btn {
    align-self: center;
  }
}

/* ---------- Our Culture (CTA-style) ---------- */
.culture-cta__box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--home-hero-box-height);
  min-height: var(--home-hero-box-height);
  background: #0c0c0c;
}

.culture-cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/culture-team-collaboration.png") center / cover no-repeat;
  transform: scale(1.06);
  opacity: 0.72;
  pointer-events: none;
}

.culture-cta__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 82% 88%,
      rgba(188, 32, 47, 0.32) 0%,
      rgba(161, 29, 42, 0.1) 34%,
      transparent 62%
    ),
    linear-gradient(
      118deg,
      rgba(12, 12, 12, 0.9) 0%,
      rgba(12, 12, 12, 0.62) 46%,
      rgba(12, 12, 12, 0.84) 100%
    ),
    url("../patterns/preloader-grid.svg");
  background-size: auto, auto, 100px 100px;
  background-position: center, center, center;
  pointer-events: none;
}

.culture-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(24px, 4vw, 48px);
}

.culture-cta__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.culture-cta__meta span:first-child {
  justify-self: start;
}

.culture-cta__meta span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.culture-cta__meta span:last-child {
  justify-self: end;
  text-align: right;
}

.culture-cta__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
  transform: translateY(-1px);
}

.culture-cta__hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(32px, 6vw, 72px);
}

.culture-cta__label {
  display: block;
  margin-bottom: clamp(20px, 3vw, 32px);
  font-size: 16px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.culture-cta__title {
  max-width: 14ch;
  font-size: clamp(52px, 9.5vw, 132px);
  font-weight: var(--fw-bold);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
}

.culture-cta__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
}

.culture-cta__title-accent {
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.88) 42%, #e8a0a7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.culture-cta__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.culture-cta__desc {
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.culture-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.culture-cta__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 100px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.culture-cta__pill:hover {
  border-color: var(--red);
  background: rgba(188, 32, 47, 0.14);
  color: var(--white);
  transform: translateY(-2px);
}

.culture-cta__contact {
  justify-self: end;
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.culture-cta__contact-label {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.culture-cta__contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.culture-cta__email {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color var(--t-fast) var(--ease);
}

.culture-cta__email:hover {
  color: rgba(255, 255, 255, 0.78);
}

.culture-cta__icon-btn {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.culture-cta__icon-btn:hover {
  background: var(--red-2);
  transform: translate(2px, -2px);
}

@media (max-width: 880px) {
  .culture-cta__meta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .culture-cta__meta span:nth-child(2),
  .culture-cta__meta span:last-child {
    justify-self: start;
    text-align: left;
  }

  .culture-cta__meta span:last-child {
    display: none;
  }

  .culture-cta__bottom {
    grid-template-columns: 1fr;
  }

  .culture-cta__contact {
    justify-self: start;
    max-width: none;
  }

  .culture-cta__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .culture-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .culture-cta__pill {
    justify-content: center;
  }

  .culture-cta__email {
    font-size: clamp(18px, 5vw, 24px);
    word-break: break-all;
  }
}

/* ---------- Cards: articles / gallery / generic ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}

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

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.08);
}

.card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: var(--fs-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  padding: 6px 12px;
  border-radius: 100px;
}

.card__body {
  padding: clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card__meta {
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.card__title {
  font-size: var(--fs-card);
  line-height: 1.2;
}

.card a.card__title:hover {
  color: var(--red);
}

.card__excerpt {
  font-size: var(--fs-body);
  color: var(--muted);
}

.card__foot {
  margin-top: auto;
  padding-top: 8px;
}

.card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--white);
  background: var(--black);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.card__btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Articles page ---------- */
.articles-section__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.articles-section__head .section-title {
  margin-top: 0;
}

main:has(.section--articles-latest) .page-hero {
  padding-bottom: clamp(36px, 5vw, 64px);
}

.section--articles-latest {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.section--articles-other {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(24px, 3.5vw, 40px);
  background: #f7f7f7;
}

.section--articles-other .articles-section__head {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.articles-filter {
  justify-content: flex-start;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.articles-filter-slider__dots {
  display: none;
}

.brands-filter-slider__dot,
.articles-filter-slider__dot,
.jobs-filter-slider__dot,
.gallery-filter-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--mid-gray);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.brands-filter-slider__dot.is-active,
.articles-filter-slider__dot.is-active,
.jobs-filter-slider__dot.is-active,
.gallery-filter-slider__dot.is-active {
  background: var(--red);
  transform: scale(1.15);
}

/* ---------- Articles page mobile (max-width: 1080px only) ---------- */
@media (max-width: 1080px) {
  main:has(.section--articles-latest) .section--articles-latest .card__foot,
  main:has(.section--articles-latest) .section--articles-other .card__foot {
    display: flex;
    justify-content: center;
  }

  .section--articles-other .articles-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 4px;
    margin-bottom: 0;
  }

  .section--articles-other .articles-filter::-webkit-scrollbar {
    display: none;
  }

  .section--articles-other .articles-filter .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .articles-filter-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: clamp(24px, 3.5vw, 40px);
  }

  .articles-filter-slider__dots[hidden] {
    display: none;
  }
}

.section--articles-other .articles-section__head .section-title {
  font-weight: var(--fw-bold);
}

.section--articles-latest .card__title,
.section--articles-other .card__title {
  color: var(--black);
  font-weight: var(--fw-bold);
}

.section--articles-latest .card a.card__title:hover,
.section--articles-other .card a.card__title:hover {
  color: var(--dark-gray);
}

.section--articles-latest .card__excerpt,
.section--articles-other .card__excerpt {
  color: var(--dark-gray);
}

.articles-other__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

@media (max-width: 1080px) {
  .articles-other__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .articles-other__grid {
    grid-template-columns: 1fr;
  }
}

.section--articles-other .articles-pagination {
  margin-bottom: 0;
}

.articles-pagination,
.jobs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 4vw, 44px);
}

.articles-pagination[hidden] {
  display: none;
}

.articles-pagination__btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--white);
  background: var(--black);
  transition: all var(--t-fast) var(--ease);
}

.articles-pagination__btn:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.articles-pagination__btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.articles-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.articles-pagination__ellipsis {
  padding: 0 6px;
  color: var(--muted);
  font-size: var(--fs-nav);
}

#newsroom .card__title {
  color: var(--black);
  font-weight: var(--fw-bold);
}

#newsroom .card a.card__title:hover {
  color: var(--dark-gray);
}

#newsroom .card__excerpt {
  color: var(--dark-gray);
}

/* ---------- Filters / tabs ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.filter-btn {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--mid-gray);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--dark-gray);
  transition: all var(--t-fast) var(--ease);
}

.filter-btn:hover {
  border-color: var(--black);
}

.filter-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.is-hidden {
  display: none !important;
}

/* ---------- Gallery page ---------- */
.section--gallery {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(20px, 3vw, 36px);
}

.gallery-filter {
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(17, 17, 17, 0.06);
}

.gallery-card__visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--black);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  text-align: left;
}

.gallery-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 45%,
    rgba(17, 17, 17, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.gallery-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.gallery-card__visual:hover img {
  transform: scale(1.05);
}

.gallery-card__badge {
  position: absolute;
  left: clamp(14px, 1.4vw, 18px);
  bottom: clamp(14px, 1.4vw, 18px);
  z-index: 2;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.gallery-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  pointer-events: none;
}

.gallery-card__play svg {
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(4px);
}

.gallery-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(14px, 1.6vw, 20px) clamp(16px, 1.8vw, 22px);
  background: var(--white);
}

.gallery-card__meta {
  min-width: 0;
}

.gallery-card__category {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.gallery-card__title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--black);
}

.gallery-card__plus {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
  margin-bottom: 0;
}

.gallery-filter-slider__dots {
  display: none;
}

/* Gallery page mobile (max-width: 1080px only) */
@media (max-width: 1080px) {
  .section--gallery .gallery-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 4px;
    margin-bottom: 0;
  }

  .section--gallery .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .section--gallery .gallery-filter .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .gallery-filter-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: clamp(24px, 3.5vw, 40px);
  }

  .gallery-filter-slider__dots[hidden] {
    display: none;
  }

  .section--gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section--gallery .gallery-more {
    margin-top: clamp(32px, 5vw, 56px);
  }
}

/* ---------- Gallery / lightbox (legacy masonry) ---------- */
.masonry {
  columns: 3;
  column-gap: 18px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry__item img {
  width: 100%;
  transition: transform var(--t-slow) var(--ease);
}

.masonry__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 50%,
    rgba(188, 32, 47, 0.5) 100%
  );
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}

.masonry__item:hover img {
  transform: scale(1.06);
}

.masonry__item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(10, 10, 10, 0.94);
  display: grid;
  place-items: center;
  padding: 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease),
    visibility var(--t-med) var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: var(--radius);
}

.lightbox__video {
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.lightbox__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox__close {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--white);
  font-size: 30px;
}

/* video card */
.video-card .card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.25);
  z-index: 1;
}

.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform var(--t-fast) var(--ease);
}

.video-card:hover .play {
  transform: scale(1.1);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mid-gray);
}

.timeline__item {
  position: relative;
  padding: 0 0 clamp(34px, 4vw, 56px) clamp(34px, 4vw, 64px);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(188, 32, 47, 0.15);
}

.timeline__year {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--fw-bold);
  color: var(--black);
  line-height: 1;
}

.timeline__item h3 {
  font-size: var(--fs-card);
  margin-block: 12px 8px;
}

/* ---------- Management Team ---------- */
.container--team {
  padding-inline: clamp(16px, 2.2vw, 32px);
  max-width: 1360px;
  margin-inline: auto;
}

.team-section {
  position: relative;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background: #f3f3f3;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../patterns/preloader-grid.svg");
  background-size: 100px 100px;
  background-position: center;
  opacity: 0.45;
  pointer-events: none;
}

.team-section .container--team {
  position: relative;
  z-index: 1;
}

.team-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.team-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.team-section__title {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.team-section__aside p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--dark-gray);
  max-width: 42ch;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.team-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 22px;
  border-radius: 100px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: var(--fw-medium);
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}

.team-section__cta:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.team-section__cta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: grid;
  place-items: center;
}

.team-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  align-items: stretch;
}

.team-card__media {
  position: relative;
  aspect-ratio: 3 / 4.25;
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  background: #ececec;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s var(--ease);
}

.team-card:hover .team-card__media img {
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .team-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 48%,
    rgba(17, 17, 17, 0.52) 100%
  );
  pointer-events: none;
}

.team-card__link {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: grid;
  place-items: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.team-card__link:hover {
  background: var(--red);
  color: var(--white);
}

.team-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2.2vw, 24px);
  text-align: center;
  color: var(--white);
}

.team-card__info h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.team-card__info span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}

@media (max-width: 768px) {
  .team-section__header {
    grid-template-columns: 1fr;
  }

  .team-section__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container--team {
    padding-inline: clamp(12px, 3vw, 20px);
  }

  .team-section__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Career page ---------- */
.main--career .container {
  max-width: min(100%, 1680px);
  padding-inline: clamp(16px, 2.2vw, 36px);
}

.main--career .page-hero__inner {
  max-width: min(100%, 1120px);
}

.main--career > .section {
  padding-block: clamp(40px, 5.5vw, 80px);
}

.main--career > .section.section--tight {
  padding-block: clamp(28px, 4vw, 56px);
}

.main--career > .page-hero {
  padding-bottom: clamp(44px, 6vw, 80px);
}

.main--career > .page-hero + .section {
  padding-top: clamp(32px, 4vw, 52px);
}

.main--career .section-head {
  margin-bottom: clamp(24px, 3.5vw, 44px);
}

.main--career .split {
  gap: clamp(28px, 4.5vw, 64px);
}

.main--career + .footer {
  padding-top: clamp(4px, 0.8vw, 8px);
}

/* Culture & Benefits — background image & overlay */
.career-culture {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.career-culture__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.career-culture__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-culture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.82) 0%,
    rgba(17, 17, 17, 0.88) 100%
  );
}

.career-culture .container {
  position: relative;
  z-index: 2;
}

.career-culture .section-title {
  color: var(--white);
}

.career-culture .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.career-culture .kicker::before {
  background: var(--red);
}

.career-culture .benefit {
  background: var(--white);
}

.jobs-filter-slider__dots {
  display: none;
}

/* ---------- Career page mobile (max-width: 1080px only) ---------- */
@media (max-width: 1080px) {
  .main--career .split__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main--career .split__content > .kicker {
    display: inline-flex;
    align-self: center;
  }

  .main--career .split__content > .section-title,
  .main--career .split__content .lead,
  .main--career .split__content .muted {
    width: 100%;
    text-align: center;
  }

  .main--career .page-hero__inner > .btn {
    margin-inline: auto;
  }

  .career-culture .benefit {
    text-align: center;
  }

  .career-culture .benefit__icon {
    margin-inline: auto;
  }

  .career-culture .career-benefits-slider [data-section-slider-track] {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .career-culture .career-benefits-slider [data-section-slider-track]::-webkit-scrollbar {
    display: none;
  }

  .career-culture .career-benefits-slider [data-section-slider-track] > .benefit {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
  }

  .career-culture .career-benefits-slider .section-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .section--openings .jobs-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 4px;
    margin-bottom: 0;
  }

  .section--openings .jobs-filter::-webkit-scrollbar {
    display: none;
  }

  .section--openings .jobs-filter .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .jobs-filter-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: clamp(24px, 3.5vw, 40px);
  }

  .jobs-filter-slider__dots[hidden] {
    display: none;
  }

  .main--career .job-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: stretch;
    transform: none;
  }

  .main--career .job-row:hover {
    transform: none;
  }

  .main--career .job-row__title {
    width: 100%;
  }

  .main--career .job-row__meta-group {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vw, 16px);
    width: 100%;
  }

  .main--career .job-row__meta-group .job-row__meta {
    width: 100%;
    text-align: center;
  }

  .main--career .job-row__btn {
    justify-self: center;
    margin-inline: auto;
  }

  .main--career .jobs-pagination {
    justify-content: center;
  }
}

@media (min-width: 1081px) {
  .main--career .job-row__meta-group {
    display: contents;
  }
}

/* ---------- Job detail ---------- */
.main--job-detail > .page-hero {
  padding-bottom: clamp(40px, 5.5vw, 72px);
}

.main--job-detail > .section--job-detail {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 48px);
}

.job-detail-hero__title {
  font-size: clamp(38px, 6vw, 76px);
}

.job-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
}

.job-detail__aside {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.job-detail__block + .job-detail__block {
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--mid-gray);
}

.job-detail__heading {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: clamp(12px, 1.6vw, 18px);
  color: var(--black);
}

.job-detail__text,
.job-detail__lead {
  font-size: var(--fs-lead);
  color: var(--dark-gray);
  line-height: 1.65;
}

.job-detail__lead {
  margin-bottom: 14px;
}

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

.job-detail__list li {
  display: flex;
  gap: 12px;
  font-size: var(--fs-body);
  color: var(--dark-gray);
  line-height: 1.55;
}

.job-detail__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23bc202f' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.job-detail__summary {
  display: grid;
  gap: clamp(14px, 1.8vw, 18px);
}

.job-detail__summary-item {
  display: grid;
  gap: 4px;
}

.job-detail__summary-item dt {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: var(--fw-semibold);
}

.job-detail__summary-item dd {
  font-size: var(--fs-body);
  color: var(--black);
  font-weight: var(--fw-medium);
}

.job-apply-form {
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.job-apply-form .field input[readonly] {
  background: var(--light-gray);
  color: var(--dark-gray);
  cursor: default;
}

.field__hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.field--file input[type="file"] {
  padding: 12px 14px;
  font-size: var(--fs-nav);
  cursor: pointer;
}

.field--file input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 8px 14px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
}

.field--file input[type="file"]::file-selector-button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

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

.job-detail__back {
  display: inline-flex;
  margin-top: clamp(28px, 3.5vw, 40px);
  font-weight: var(--fw-medium);
}

@media (max-width: 1024px) {
  .job-detail {
    grid-template-columns: 1fr;
  }

  .job-detail__aside {
    position: static;
  }

  .contact-detail {
    grid-template-columns: 1fr;
  }

  .contact-detail__info,
  .contact-form {
    height: auto;
  }
}

.benefit {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  transition: transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(188, 32, 47, 0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: var(--fs-card);
  margin-bottom: 10px;
}

.jobs-filter {
  justify-content: flex-start;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.section--openings .section-head {
  margin-bottom: clamp(20px, 3vw, 32px);
}

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

.job-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  transition: all var(--t-med) var(--ease);
}

.job-row:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.job-row h3 {
  font-size: var(--fs-card);
}

.job-row__btn {
  padding: 10px 18px;
  font-size: var(--fs-nav);
  gap: 8px;
}

.job-row .btn--dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.job-row__meta {
  font-size: var(--fs-nav);
  color: var(--muted);
}

.job-row__meta span {
  display: block;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 2px;
}

/* ---------- Contact page ---------- */
.main--contact + .footer {
  padding-top: clamp(4px, 0.8vw, 8px);
}

.main--contact > .page-hero {
  padding-bottom: clamp(36px, 5vw, 64px);
}

.main--contact > .page-hero + .contact-gallery {
  margin-top: 0;
}

.contact-gallery {
  width: 100%;
  max-width: 100%;
  padding-block: clamp(24px, 3.5vw, 40px);
  padding-inline: clamp(16px, 2.2vw, 36px);
  overflow: hidden;
}

.contact-gallery-swiper {
  width: 100%;
  overflow: hidden;
}

.contact-gallery-swiper .swiper-slide {
  height: auto;
}

.contact-gallery__frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
}

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

.main--contact > .section--contact-map {
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(24px, 3.5vw, 40px);
}

.main--contact > .section--contact {
  padding-top: clamp(24px, 3.5vw, 40px);
  padding-bottom: clamp(28px, 3.5vw, 48px);
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: stretch;
}

.contact-detail__info,
.contact-form {
  height: 100%;
}

.contact-detail__info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-detail__form {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-info__block + .contact-info__block {
  margin-top: clamp(20px, 2.5vw, 28px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid var(--mid-gray);
}

.contact-info__block--social {
  margin-top: auto;
}

.contact-info__label {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: var(--fw-medium);
  margin-bottom: 8px;
}

.contact-info__value {
  font-size: var(--fs-lead);
  color: var(--dark-gray);
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--black);
  transition: color var(--t-fast) var(--ease);
}

.contact-info__value a:hover {
  color: var(--red);
}

.contact-info__block--social .contact-info__label {
  margin-bottom: 14px;
}

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

.contact-social__link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mid-gray);
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.contact-social__link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form__title {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: clamp(18px, 2.2vw, 24px);
  color: var(--black);
}

.contact-form__submit {
  margin-top: auto;
}

/* Contact page mobile (max-width: 1080px only) */
@media (max-width: 1080px) {
  .main--contact .contact-detail {
    grid-template-columns: 1fr;
  }

  .main--contact .contact-detail__info,
  .main--contact .contact-form {
    height: auto;
  }

  .main--contact .contact-detail__form {
    order: 1;
  }

  .main--contact .contact-detail__info {
    order: 2;
  }

  .main--contact .contact-form__title {
    text-align: center;
  }

  .main--contact .contact-form .field label {
    text-align: center;
  }

  .main--contact .contact-form .field input,
  .main--contact .contact-form .field textarea,
  .main--contact .contact-form .field select {
    text-align: center;
    text-align-last: center;
  }

  .main--contact .contact-form .field input::placeholder,
  .main--contact .contact-form .field textarea::placeholder {
    text-align: center;
  }
}

/* Legacy contact blocks (if used elsewhere) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
}

.info-list {
  display: grid;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-item__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(188, 32, 47, 0.1);
  color: var(--red);
  display: grid;
  place-items: center;
}

.info-item h4 {
  font-size: var(--fs-card);
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--black);
}

.field input,
.field textarea,
.field select {
  padding: 15px 18px;
  border: 1px solid var(--mid-gray);
  border-radius: 12px;
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(188, 32, 47, 0.12);
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
}

.field__error {
  font-size: var(--fs-caption);
  color: var(--red);
  min-height: 14px;
}

.form__status {
  font-size: var(--fs-nav);
  color: var(--red);
  font-weight: var(--fw-medium);
}

/* Contact Form 7 — match theme contact / job application form layout */
.lahans-cf7-form .wpcf7,
.lahans-job-cf7-form .wpcf7 {
  display: contents;
}

.lahans-cf7-form .wpcf7-form,
.lahans-job-cf7-form .wpcf7-form {
  display: grid;
  gap: 20px;
  flex: 1;
}

.lahans-cf7-form .wpcf7-form-control-wrap,
.lahans-job-cf7-form .wpcf7-form-control-wrap {
  display: block;
}

.lahans-cf7-form .wpcf7-form-control,
.lahans-job-cf7-form .wpcf7-form-control {
  width: 100%;
}

.lahans-cf7-form .wpcf7-not-valid-tip,
.lahans-job-cf7-form .wpcf7-not-valid-tip {
  font-size: var(--fs-caption);
  color: var(--red);
  min-height: 14px;
  margin-top: 4px;
}

.lahans-cf7-form .wpcf7-not-valid,
.lahans-job-cf7-form .wpcf7-not-valid {
  border-color: var(--red) !important;
}

.lahans-cf7-form .wpcf7-response-output,
.lahans-job-cf7-form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: var(--fs-nav);
  color: var(--red);
  font-weight: var(--fw-medium);
}

.lahans-cf7-form .wpcf7-spinner,
.lahans-job-cf7-form .wpcf7-spinner {
  display: none;
}

.lahans-cf7-form .contact-form__submit {
  margin-top: auto;
  width: 100%;
  cursor: pointer;
}

.lahans-job-cf7-form .job-apply-submit {
  margin-top: 4px;
  width: 100%;
  cursor: pointer;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -160px;
  background: radial-gradient(
    circle,
    rgba(188, 32, 47, 0.45) 0%,
    rgba(188, 32, 47, 0) 70%
  );
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: var(--fs-section);
  color: var(--white);
  margin-bottom: 18px;
}

/* ---------- Article detail ---------- */
main:has(.article-body) .page-hero {
  padding-bottom: clamp(32px, 4.5vw, 56px);
}

.section--article-content {
  padding-top: clamp(24px, 3.5vw, 40px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.article-hero-image {
  max-width: 980px;
  margin: 0 auto clamp(24px, 3.5vw, 36px);
}

.section--article-related {
  padding-top: clamp(40px, 5.5vw, 64px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.section--article-related .articles-section__head {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.section--article-related .card__title {
  color: var(--black);
  font-weight: var(--fw-bold);
}

.section--article-related .card a.card__title:hover {
  color: var(--dark-gray);
}

.section--article-related .card__excerpt {
  color: var(--dark-gray);
}

/* Article detail — Keep Reading mobile only */
@media (max-width: 1080px) {
  .section--article-related .card__foot {
    display: flex;
    justify-content: center;
  }
}

main:has(.section--article-related) + .footer {
  padding-top: clamp(4px, 0.8vw, 8px);
}

/* ---------- Article body ---------- */
.article-body {
  max-width: 760px;
  margin-inline: auto;
}

.article-body p {
  font-size: var(--fs-lead);
  color: var(--dark-gray);
  margin-bottom: 26px;
}

.article-body h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-block: 36px 18px;
}

.article-body h3 {
  font-size: var(--fs-card);
  margin-block: 28px 12px;
}

.article-body blockquote {
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 28px;
  margin: 32px 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: var(--fw-medium);
  color: var(--black);
  line-height: 1.3;
}

.article-body figure {
  margin: 36px 0;
}

.article-body figure img {
  border-radius: var(--radius);
  width: 100%;
}

.article-body figcaption {
  font-size: var(--fs-caption);
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

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

.tag {
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--light-gray);
  color: var(--dark-gray);
}

/* ---------- Brand detail product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.product {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: transform var(--t-med) var(--ease);
}

.product:hover {
  transform: translateY(-6px);
}

.product__img {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--white);
}

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

/* ---------- Footer ---------- */
.footer {
  padding: clamp(12px, 1.8vw, 20px) 0 clamp(18px, 2.5vw, 28px);
  background: var(--white);
  color: rgba(255, 255, 255, 0.68);
}

.footer__box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c0c0c;
}

.footer__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/landscape-market-hall.png")
    center / cover no-repeat;
  opacity: 0.32;
  transform: scale(1.04);
  pointer-events: none;
}

.footer__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(12, 12, 12, 0.9) 0%,
    rgba(12, 12, 12, 0.72) 42%,
    rgba(12, 12, 12, 0.88) 100%
  );
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 4.5vw, 56px) clamp(24px, 4vw, 48px);
}

.footer a {
  color: inherit;
  transition: color var(--t-fast) var(--ease);
}

.footer a:hover {
  color: var(--white);
}

.footer__brand-name {
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: var(--fw-bold);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}

.footer__brand-name sup {
  font-size: 0.34em;
  font-weight: var(--fw-regular);
  vertical-align: super;
  margin-left: 0.08em;
}

.footer__email {
  display: inline-block;
  margin-top: clamp(18px, 2.5vw, 28px);
  margin-bottom: clamp(32px, 4.5vw, 52px);
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 2px;
}

.footer__email:hover {
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.25fr 1.2fr;
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(36px, 4.5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__label {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer__block p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.86);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}

.footer__pill:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transform: translateY(-1px);
}

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

.footer__link-cols ul {
  display: grid;
  gap: 10px;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.72);
}

.footer__accordion__trigger {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer__accordion__trigger .footer__label {
  margin-bottom: 0;
}

.footer__accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.footer__accordion__icon::before,
.footer__accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}

.footer__accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.footer__accordion.is-open .footer__accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.footer__accordion__panel[hidden] {
  display: none;
}

@media (min-width: 721px) {
  .footer__accordion__trigger {
    display: block;
    pointer-events: none;
    cursor: default;
  }

  .footer__accordion__icon {
    display: none;
  }

  .footer__accordion__panel {
    display: block !important;
  }

  .footer__accordion__panel[hidden] {
    display: block !important;
  }
}

.footer__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: clamp(22px, 3vw, 30px);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.48);
}

.footer__copy {
  justify-self: start;
}

.footer__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}

.footer__service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__service:hover {
  color: rgba(255, 255, 255, 0.82);
}

.footer__bar-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  justify-self: end;
}

.footer__top-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.footer__top-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1080px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__block {
    padding-block: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer__accordion__trigger {
    display: flex;
  }

  .footer__accordion__panel {
    padding-top: 14px;
  }

  .footer__accordion:not(.is-open) .footer__accordion__panel {
    display: none;
  }

  .footer__accordion.is-open .footer__accordion__panel {
    display: block;
  }

  .footer__bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__copy,
  .footer__bar-end {
    justify-self: center;
    justify-content: center;
  }

  .footer__services {
    justify-content: center;
  }

  .footer__email {
    font-size: clamp(20px, 6vw, 28px);
    word-break: break-all;
  }
}

/* Back to top */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-med) var(--ease);
  box-shadow: var(--shadow-md);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--red-2);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- Reveal animation base (fallback if JS/GSAP fails) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

.reveal-ready [data-reveal] {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Marquee logos strip */
.logo-strip {
  display: flex;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.logo-strip img {
  height: 38px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all var(--t-fast) var(--ease);
}

.logo-strip img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

[data-brands-showcase] {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}

/* ---------- Brand detail (case study layout) ---------- */
.main--brand-detail {
  background: var(--white);
}

.main--brand-detail .section {
  padding-block: clamp(52px, 5.5vw, 72px);
}

.main--brand-detail .section--compact-top {
  padding-top: clamp(40px, 4.2vw, 52px);
  padding-bottom: clamp(52px, 5.5vw, 72px);
}

.main--brand-detail .brand-detail-block + .brand-detail-block {
  padding-top: clamp(48px, 5vw, 64px);
}

.main--brand-detail .section--gray {
  background: var(--light-gray);
}

.main--brand-detail .section-head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.main--brand-detail .section-head--center {
  margin-inline: auto;
  text-align: center;
}

.main--brand-detail .section-head--center .lead {
  margin-inline: auto;
}

/* Narrow container for brand detail content */
.container--case {
  max-width: 1000px;
  margin-inline: auto;
}

.container--case-narrow {
  max-width: 860px;
  margin-inline: auto;
}

.container--brand-usage {
  max-width: 1360px;
  margin-inline: auto;
}

.main--brand-detail .page-hero__title sup {
  font-size: 0.35em;
  vertical-align: super;
  letter-spacing: 0;
}

.main--brand-detail > .page-hero + .contact-gallery {
  margin-top: 0;
}

/* Meta strip */
.case-meta {
  border-block: 1px solid var(--mid-gray);
  padding-block: clamp(24px, 3.5vw, 36px);
}

.case-meta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.case-meta__item dt {
  font-size: var(--fs-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.case-meta__item dd {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: var(--fw-medium);
  color: var(--black);
}

/* Section label */
.case-section__label {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.case-section__label--center {
  text-align: center;
}

/* Introduction */
.case-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.case-intro__title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 14ch;
}

.case-intro__text {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.case-intro__highlights {
  display: grid;
  gap: 14px;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--mid-gray);
}

.case-intro__highlights li {
  font-size: var(--fs-body);
  color: var(--dark-gray);
  padding-left: 20px;
  position: relative;
}

.case-intro__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.case-intro__highlights strong {
  font-weight: var(--fw-bold);
  color: var(--black);
}

/* Gallery */
.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.case-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: clamp(14px, 1.8vw, 20px);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}

.case-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.case-gallery__item:hover img {
  transform: scale(1.04);
}

.case-gallery__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(17, 17, 17, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: var(--fw-medium);
}

/* Process */
.case-process__lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  margin-top: -28px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.case-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.case-process__media {
  display: flex;
  min-height: 100%;
}

.case-process__steps {
  list-style: none;
  display: grid;
  gap: clamp(24px, 3.5vw, 40px);
}

.case-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--mid-gray);
}

.case-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.case-step__num {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: var(--red);
}

.case-step__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.case-step__text {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--muted);
}

.case-process__frame {
  flex: 1;
  width: 100%;
  min-height: 100%;
  border-radius: clamp(18px, 2.2vw, 24px);
  overflow: hidden;
}

.case-process__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote */
.case-quote {
  padding-block: clamp(56px, 8vw, 100px);
}

.case-quote__inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.case-quote__text {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: var(--fw-medium);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.case-quote__text::before {
  content: "\201C";
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--red);
  margin-bottom: 16px;
}

.case-quote__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.72);
}

.case-quote__author strong {
  font-size: var(--fs-card);
  color: var(--white);
}

/* Solution & Outcome */
.case-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.case-result__index {
  display: block;
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.case-result__title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.15;
}

.case-result__text {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.case-result__list {
  display: grid;
  gap: 12px;
}

.case-result__list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--dark-gray);
}

.case-result__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--red);
}

/* Banner */
.case-banner {
  padding: 0;
}

.case-banner__frame {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.case-banner__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Related brands */
.case-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.case-related__sub {
  font-size: var(--fs-body);
  color: var(--muted);
  margin-top: 8px;
}

.case-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.case-related-card {
  display: flex;
  flex-direction: column;
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  background: var(--white);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.case-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.case-related-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.case-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.case-related-card:hover .case-related-card__media img {
  transform: scale(1.05);
}

.case-related-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--white);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-related-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.5vw, 28px);
}

.case-related-card__title {
  font-size: var(--fs-card);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-bottom: 8px;
}

.case-related-card__desc {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: clamp(18px, 2.2vw, 24px);
}

.case-related-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 22px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  background: var(--black);
  color: var(--white);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.case-related-card__btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Hero enhancements */
.brand-hero__logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin-top: clamp(20px, 3vw, 32px);
  filter: brightness(0) invert(1);
}

.brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3.5vw, 36px);
}

.brand-hero__actions--center {
  justify-content: center;
}

/* Highlights & segments — 5 columns */
.brand-highlights,
.brand-segments {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-highlights .benefit h3,
.brand-segments .benefit h3 {
  font-size: clamp(15px, 1.4vw, 18px);
}

.brand-highlights .benefit p,
.brand-segments .benefit p {
  font-size: clamp(13px, 1.2vw, 15px);
}

/* Product Applications — background image & overlay */
.brand-applications {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.brand-applications__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-applications__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-applications::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.82) 0%,
    rgba(17, 17, 17, 0.88) 100%
  );
}

.brand-applications .container {
  position: relative;
  z-index: 2;
}

.brand-applications .section-title {
  color: var(--white);
}

.brand-applications .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.brand-applications .kicker::before {
  background: var(--red);
}

/* Usage Inspiration — centered heading */
.brand-usage-section__head {
  max-width: 780px;
  margin-inline: auto;
}

.brand-usage__title {
  text-align: center;
  max-width: none;
  white-space: nowrap;
}

.brand-usage-section .lead {
  max-width: 52ch;
  margin-inline: auto;
}

/* Product variants — 4 columns, single variant badge */
.brand-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.brand-product {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.brand-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.brand-product__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.brand-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.brand-product:hover .brand-product__media img {
  transform: scale(1.05);
}

.brand-product__body {
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.brand-product__cat {
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: var(--fw-medium);
  margin-bottom: 8px;
}

.brand-product__name {
  font-size: var(--fs-card);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-bottom: 10px;
}

.brand-product__desc {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: clamp(14px, 1.8vw, 18px);
}

.brand-product__variant {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--dark-gray);
}

/* Usage inspiration */
.brand-usage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.brand-usage-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.brand-usage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.brand-usage-card:hover img {
  transform: scale(1.06);
}

.brand-usage-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(17, 17, 17, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: var(--fw-medium);
}

/* Key benefits */
.brand-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  list-style: none;
  max-width: 820px;
  margin-inline: auto;
}

.brand-benefits li {
  position: relative;
  padding-left: 28px;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--dark-gray);
}

.brand-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(188, 32, 47, 0.12);
  border: 2px solid var(--red);
}

/* Specifications */
.brand-specs-wrap {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-specs {
  width: 100%;
  border-collapse: collapse;
}

.brand-specs th,
.brand-specs td {
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px);
  text-align: left;
  font-size: var(--fs-body);
  line-height: 1.6;
  border-bottom: 1px solid var(--mid-gray);
}

.brand-specs tr:last-child th,
.brand-specs tr:last-child td {
  border-bottom: 0;
}

.brand-specs th {
  width: 38%;
  font-weight: var(--fw-medium);
  color: var(--black);
  background: var(--light-gray);
}

.brand-specs td {
  color: var(--dark-gray);
}

/* Certifications */
.brand-certs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.brand-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(22px, 2.8vw, 32px) clamp(12px, 1.5vw, 16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mid-gray);
  background: var(--white);
  text-align: center;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}

.brand-cert:hover {
  transform: translateY(-4px);
  border-color: rgba(188, 32, 47, 0.35);
}

.brand-cert__label {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  color: var(--black);
}

.brand-cert__sub {
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Distribution */
.brand-distribution__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(28px, 4vw, 44px);
}

.brand-distribution__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.brand-distribution__stat strong {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
}

.brand-distribution__stat span {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.72);
}

.brand-distribution__channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-distribution__channels span {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--white);
}

/* Download center */
.brand-downloads {
  display: grid;
  gap: 14px;
}

.brand-download {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

.brand-download:hover {
  transform: translateY(-3px);
  border-color: rgba(188, 32, 47, 0.35);
  box-shadow: var(--shadow-sm);
}

.brand-download__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(188, 32, 47, 0.1);
  color: var(--red);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  display: grid;
  place-items: center;
}

.brand-download__info h3 {
  font-size: var(--fs-card);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-bottom: 4px;
}

.brand-download__info p {
  font-size: var(--fs-body);
  color: var(--muted);
}

.brand-download__action {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--red);
  white-space: nowrap;
}

/* Inquiry CTA */
.main--brand-detail .case-meta + .section--compact-top {
  padding-top: clamp(44px, 4.5vw, 56px);
}

.main--brand-detail .brand-inquiry-section {
  padding-top: clamp(48px, 5vw, 64px);
  padding-bottom: clamp(20px, 2.5vw, 32px);
}

.main--brand-detail .brand-hero__actions .btn--light:hover,
.main--brand-detail .brand-hero__actions .btn--on-dark.btn--ghost:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  --btn-fg: var(--white);
}

.brand-inquiry .lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.main--brand-detail .section-head .lead {
  max-width: 62ch;
  margin-top: 12px;
}

@media (max-width: 1080px) {
  .case-intro {
    grid-template-columns: 1fr;
  }

  .case-intro__title {
    max-width: none;
  }

  .case-process__grid {
    grid-template-columns: 1fr;
  }

  .case-process__media {
    min-height: auto;
  }

  .case-process__frame {
    aspect-ratio: 16 / 10;
    min-height: auto;
  }

  .case-results {
    grid-template-columns: 1fr;
  }

  .brand-usage__title {
    white-space: normal;
  }

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

  /* Brand detail — mobile layout */
  .main--brand-detail > .page-hero .brand-hero__actions {
    display: none;
  }

  .main--brand-detail > .page-hero .brand-hero__logo {
    margin-inline: auto;
  }

  .main--brand-detail .case-meta__grid {
    text-align: center;
  }

  .main--brand-detail .case-meta__item dt,
  .main--brand-detail .case-meta__item dd {
    text-align: center;
  }

  .main--brand-detail [data-section-slider] [data-section-slider-track] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .main--brand-detail [data-section-slider] [data-section-slider-track]::-webkit-scrollbar {
    display: none;
  }

  .main--brand-detail .section-slider--cols-1 [data-section-slider-track] > * {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
  }

  .main--brand-detail .section-slider--cols-2 [data-section-slider-track] > * {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
    scroll-snap-align: start;
  }

  .main--brand-detail .section-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .main--brand-detail #specifications .section-head .lead {
    margin-inline: auto;
    text-align: center;
  }

  .main--brand-detail .brand-specs th,
  .main--brand-detail .brand-specs td {
    text-align: center;
  }

  .main--brand-detail .case-related__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main--brand-detail .case-related__head .case-section__label {
    margin-bottom: 0;
  }

  .main--brand-detail .case-related__sub {
    text-align: center;
  }

  .main--brand-detail .case-related__head .link-arrow {
    margin-inline: auto;
  }

  .main--brand-detail .case-related-card__body {
    align-items: center;
    text-align: center;
  }

  .main--brand-detail .case-related-card__title,
  .main--brand-detail .case-related-card__desc {
    text-align: center;
  }

  .main--brand-detail .case-related-card__btn {
    align-self: center;
  }

  .main--brand-detail .brand-inquiry {
    text-align: center;
  }

  .main--brand-detail .brand-inquiry h2 {
    text-align: center;
  }

  .main--brand-detail .brand-inquiry .brand-hero__actions {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .case-meta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .main--brand-detail .brand-specs th,
  .main--brand-detail .brand-specs td {
    display: block;
    width: 100%;
  }

  .main--brand-detail .brand-specs th {
    border-bottom: 0;
    padding-bottom: 8px;
  }

  .main--brand-detail .brand-specs td {
    text-align: center;
    padding-top: 0;
    padding-bottom: 18px;
  }
}

@media (max-width: 520px) {
  .case-meta__grid {
    grid-template-columns: 1fr;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1200px) {
  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main--brand-detail .brand-highlights,
  .main--brand-detail .brand-segments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main--brand-detail .brand-certs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  /* Global — center tagline (kicker) & title on mobile */
  .page-hero__inner {
    text-align: center;
    max-width: none;
  }

  .page-hero__inner > .kicker {
    display: inline-flex;
  }

  .page-hero__title {
    text-align: center;
  }

  .page-hero__desc {
    margin-inline: auto;
    text-align: center;
  }

  .page-hero__inner .breadcrumb {
    justify-content: center;
  }

  .hero-orisa__overlay {
    text-align: center;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  .section-head {
    text-align: center;
    margin-inline: auto;
  }

  .section-head .kicker {
    display: inline-flex;
  }

  .section-head .section-title {
    text-align: center;
  }

  .section-head .lead {
    margin-inline: auto;
    text-align: center;
  }

  .section-head--split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-head--split .section-head__intro {
    max-width: none;
    text-align: center;
  }

  .section-head--split .section-head__intro .kicker {
    display: inline-flex;
  }

  .section-head--split .section-head__intro .section-title {
    text-align: center;
  }

  .split__content > .kicker {
    display: inline-flex;
    align-self: center;
  }

  .split__content > .section-title,
  .split__content > .about-content__title {
    align-self: center;
    text-align: center;
    width: 100%;
  }

  .core-values__intro {
    text-align: center;
  }

  .core-values__intro .core-values__kicker {
    justify-content: center;
  }

  .core-values__title {
    margin-inline: auto;
  }

  .team-section__intro {
    text-align: center;
  }

  .team-section__intro .team-section__kicker {
    justify-content: center;
  }

  .team-section__title {
    margin-inline: auto;
    max-width: none;
  }

  .brand-showcase__content > .kicker {
    align-self: center;
  }

  .brand-showcase__name {
    align-self: center;
    text-align: center;
    width: 100%;
  }

  .articles-section__head {
    text-align: center;
  }

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

  .stats {
    width: min(100%, 560px);
  }

  .stat {
    flex-basis: 130px;
  }
  .brand-grid,
  .keypoints:not(.keypoints--strip),
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .masonry {
    columns: 2;
  }

  .main--brand-detail .brand-highlights,
  .main--brand-detail .brand-segments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .brand-showcase.split {
    grid-template-columns: 1fr;
  }

  .brand-showcase--reverse .split__media,
  .brand-showcase--reverse .split__content {
    order: unset;
  }

  .brand-showcase .split__media {
    margin-bottom: clamp(20px, 3vw, 28px);
  }

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

  :root {
    --header-h: 72px;
  }
  .nav,
  .header__cta {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .split,
  .vm-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: -1;
  }
  .value-row {
    grid-template-columns: 50px 1fr;
  }
  .value-row p {
    grid-column: 1 / -1;
  }
  .job-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .job-row__title {
    grid-column: 1 / -1;
  }
  .job-row__btn {
    grid-column: 1 / -1;
  }
  .cta-band {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    width: min(100%, 360px);
    gap: 24px 20px;
  }

  .stat {
    flex-basis: 120px;
  }

  .stat__num {
    font-size: clamp(40px, 11vw, 52px);
  }
}

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

@media (max-width: 640px) {
  .ecosystem-grid:not(#brands .ecosystem-grid) {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

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

  #brands .ecosystem-card__foot {
    align-items: center;
    text-align: center;
  }

  .ecosystem-card__btn {
    width: 100%;
  }

  #brands .ecosystem-card__btn {
    width: auto;
  }

  .brand-grid,
  .keypoints:not(.keypoints--strip),
  .card-grid,
  .card-grid--2,
  .card-grid--4,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
  .masonry {
    columns: 1;
  }
  .float-badge {
    left: 16px;
    bottom: 16px;
  }
  .hero__scroll {
    display: none;
  }
  .job-row {
    grid-template-columns: 1fr;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
