/* ==========================================================================
   İNCİ HOLDİNG DESIGN SYSTEM
   Concept: "Her inci, zamanla oluşur." patience, layers, quiet strength.
   ========================================================================== */

:root {
  --ink: #14120F;
  --ink-2: #221F1A;
  --ink-soft: #5C564C;
  --paper: #FFFFFF;
  --paper-2: #FFFFFF;
  --paper-dim: #F3F2F0;
  --red: #E30613;
  --red-dark: #CA0001;
  --line: rgba(20, 18, 15, 0.12);

  --sector-auto: #E85A1C;
  --sector-energy: #1E9C8B;
  --sector-logistics: #4C9A5C;
  --sector-life: #D97A34;
  --sector-vc: #8E45B0;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --container-inset: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  --header-h: 78px;
  --fs-scale: 1;
  --fs-h2: clamp(2rem, 1.55rem + 2vw, 3.4rem);
  --fs-eyebrow: 0.8rem;
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: calc(100% * var(--fs-scale, 1));
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
ul { margin: 0; padding: 0; }
button { font: inherit; }
main { display: block; }
[id] { scroll-margin-top: var(--header-h); }

::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 10px; height:10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-soft); border-radius: 6px; border: 2px solid var(--paper); }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ==========================================================================
   ACCESSIBILITY BASE
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 0.8em 1.4em;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto !important; }
}

/* ==========================================================================
   TYPE UTILITIES
   ========================================================================== */
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-head-light h2 { color: var(--paper); }
.section-head-light .section-sub { color: rgba(255, 255, 255, 0.65); }
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 0.9rem;
  line-height: 1.55;
  max-width: 58ch;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--paper); border-color: rgba(255, 255, 255, 0.35); background: transparent; }
.btn-ghost:hover { border-color: var(--paper); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-ghost-dark { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(20, 18, 15, 0.05); transform: translateY(-2px); }
.btn-outline-light { color: var(--paper); border-color: rgba(255, 255, 255, 0.35); background: transparent; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.arrow-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; }
.btn:hover .arrow-icon { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15em;
}
.text-link:hover .arrow-icon { transform: translateX(4px); }

/* ==========================================================================
   LOGO
   ========================================================================== */
.logo-svg { height: 44px; width: auto; display: block; }
.logo-word, .logo-legs { fill: currentColor; }
.logo-dot { fill: var(--red); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 17px 0;
  color: var(--paper);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, color 0.3s ease;
}
.site-header .logo-word, .site-header .logo-legs { fill: var(--paper); transition: fill 0.3s ease; }
.site-header .logo-dot { fill: var(--paper); transition: fill 0.3s ease; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: inline-flex; }

.primary-nav > ul { display: flex; gap: 1.7rem; list-style: none; }
.nav-item { position: static; }
.nav-item > a {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-item > a:hover::after, .nav-item > a.is-active::after { right: 0; }

/* Small chevron affordance so it reads as a dropdown, not a plain link */
.nav-item:has(.nav-dropdown) > a::before {
  content: '';
  order: 2;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), opacity 0.2s ease, margin-top 0.3s ease;
}
.nav-item.is-open > a::before { transform: rotate(225deg); margin-top: 2px; opacity: 0.9; }

.header-utils { display: flex; align-items: center; gap: 1rem; }

.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.28rem 0.45rem 0.28rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(20, 18, 15, 0.04);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.search-trigger:hover {
  background: #fff;
  box-shadow: 0 8px 20px -14px rgba(20, 18, 15, 0.45);
}
.search-trigger__icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: rgba(20, 18, 15, 0.55);
}
.search-trigger__icon svg { width: 16px; height: 16px; }
.search-trigger__label {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(20, 18, 15, 0.55);
  white-space: nowrap;
}
.search-trigger__kbd {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(20, 18, 15, 0.7);
  background: #fff;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: 0.45rem;
  padding: 0.22em 0.45em;
  line-height: 1;
}
.search-trigger--mobile {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.search-trigger--mobile .search-trigger__icon,
.search-trigger--mobile .search-trigger__label {
  color: rgba(255, 255, 255, 0.82);
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: start center;
  padding: clamp(4.5rem, 12vh, 7rem) 1rem 1.5rem;
}
.site-search[hidden] { display: none !important; }
.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-search__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid rgba(20, 18, 15, 0.08);
  border-radius: 18px;
  box-shadow: 0 30px 80px -28px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(78vh, 720px);
}
.site-search__bar {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(20, 18, 15, 0.08);
}
.site-search__icon {
  display: grid;
  place-items: center;
  color: rgba(20, 18, 15, 0.45);
}
.site-search__icon svg { width: 20px; height: 20px; }
.site-search__input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1.02rem;
  color: var(--ink);
  min-width: 0;
}
.site-search__input::placeholder { color: rgba(20, 18, 15, 0.4); }
.site-search__esc {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.site-search__esc kbd,
.site-search__hints kbd {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(20, 18, 15, 0.62);
  background: #f2f0ec;
  border: 1px solid rgba(20, 18, 15, 0.08);
  border-radius: 0.4rem;
  padding: 0.28em 0.45em;
  line-height: 1;
}
.site-search__body {
  overflow: auto;
  padding: 1.15rem 1.15rem 1.35rem;
  flex: 1;
}
.site-search__empty {
  text-align: center;
  padding: 1.25rem 0.5rem 0.5rem;
}
.site-search__empty-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  color: var(--red);
  opacity: 0.85;
}
.site-search__empty-icon svg { width: 100%; height: 100%; }
.site-search__empty-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.site-search__empty-text {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}
.site-search__popular-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-search__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.site-search__chip {
  border: 1px solid rgba(20, 18, 15, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45em 0.85em;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.site-search__chip:hover {
  border-color: rgba(227, 6, 19, 0.45);
  color: var(--red);
  background: rgba(227, 6, 19, 0.04);
}
.site-search__results {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.site-search__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}
.site-search__item.is-active,
.site-search__item:hover {
  background: #f7f5f1;
  border-color: rgba(20, 18, 15, 0.06);
}
.site-search__item-visual {
  width: 56px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eceae6;
  border-radius: 8px;
}
.site-search__item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-search__item-visual--page {
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-search__item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.site-search__item-meta {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.site-search__item-meta .tag { color: var(--red); font-weight: 700; }
.site-search__item-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.site-search__status {
  margin: 0.75rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-search__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1.1rem;
  background: #f4f2ee;
  border-top: 1px solid rgba(20, 18, 15, 0.06);
}
.site-search__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.site-search__hints span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.site-search__all {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.site-search__all:hover { text-decoration: underline; }

body.site-search-open { overflow: hidden; }

@media (max-width: 720px) {
  .search-trigger__label,
  .search-trigger__kbd { display: none; }
  .search-trigger {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }
  .search-trigger--mobile .search-trigger__label { display: inline; }
  .search-trigger--mobile {
    width: 100%;
    height: auto;
    padding: 0.55rem 0.85rem;
    justify-content: flex-start;
  }
  .site-search__hints { display: none; }
}

.lang-toggle {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.42em 0.95em;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-toggle:hover { background: var(--red); border-color: var(--red); color: #fff; }
.mobile-lang { margin-top: 1.25rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  background: none; border: none; cursor: pointer; padding: 0;
  color: inherit;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header.is-scrolled {
  /* Note: intentionally no backdrop-filter/transform here, either would make
     this fixed header a new containing block, collapsing the fixed-position
     .mobile-menu / .nav-dropdown (nested inside <header>) down to the
     header's own auto height instead of the viewport. Padding is intentionally
     unchanged too, shrinking it here would open a gap between the header's
     new (shorter) bottom edge and the dropdown, which still sits at the fixed
     --header-h offset. */
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}
.site-header.is-scrolled .logo-word, .site-header.is-scrolled .logo-legs { fill: var(--ink); }
.site-header.is-scrolled .logo-dot { fill: var(--red); }

/* ==========================================================================
   FULL-WIDTH NAV DROPDOWNS
   ========================================================================== */
.nav-dropdown {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 45;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  box-shadow: 0 40px 70px -24px rgba(20, 18, 15, 0.28);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
/* Visibility is JS-driven (.is-open, with hover-intent delay) rather than
   pure :hover: a fixed-position gap between the nav item and the panel
   below it made pure-CSS hover chains drop out while crossing the gap. */
.nav-item.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
  align-items: start;
}
.nav-dropdown-links { position: relative; }
@media (min-width: 1024px) {
  .nav-dropdown-links::after {
    content: '';
    position: absolute;
    top: 0.3rem; bottom: 0.3rem;
    right: calc(clamp(2rem, 4vw, 4.5rem) / -2);
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  }
}
.nav-dropdown > .wrap:not(.nav-dropdown-inner) { padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.nav-dropdown-eyebrow { font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 1.4rem; }

.nav-dropdown-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }
.nav-dropdown-links li {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-item.is-open .nav-dropdown-links li { opacity: 1; transform: none; }
.nav-dropdown-links li:nth-child(1) { transition-delay: 0ms; }
.nav-dropdown-links li:nth-child(2) { transition-delay: 40ms; }
.nav-dropdown-links li:nth-child(3) { transition-delay: 80ms; }
.nav-dropdown-links li:nth-child(4) { transition-delay: 120ms; }
.nav-dropdown-links li:nth-child(5) { transition-delay: 160ms; }
.nav-dropdown-links li:nth-child(6) { transition-delay: 200ms; }
.nav-dropdown-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.25s ease;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.nav-dropdown-links li:last-child a { border-bottom: none; }
.nav-dropdown-links a:hover { color: var(--red); padding-left: 0.35rem; }
.nav-link-index { font-size: 0.72rem; font-weight: 700; color: var(--red); opacity: 0.55; font-variant-numeric: tabular-nums; }

/* "photo area" cards: gradient + grain stand-ins for imagery.
   Entrance uses a keyframe animation (not a transition-delay) so it can
   stagger in per-card without then also delaying the hover-lift transform
   for as long as the panel stays open. */
@keyframes navPhotoIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.nav-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 12px;
  padding: 1.4rem;
  text-decoration: none;
  color: #fff;
  min-height: 170px;
  background: linear-gradient(155deg, var(--accent, var(--red)) 0%, var(--ink) 135%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s ease;
  opacity: 0;
}
.nav-item.is-open .nav-photo {
  animation: navPhotoIn 0.45s cubic-bezier(0.16,0.8,0.24,1) both;
}
.nav-photo-grid .nav-photo:nth-child(1) { animation-delay: 0ms; }
.nav-photo-grid .nav-photo:nth-child(2) { animation-delay: 35ms; }
.nav-photo-grid .nav-photo:nth-child(3) { animation-delay: 70ms; }
.nav-photo-grid .nav-photo:nth-child(4) { animation-delay: 105ms; }
.nav-photo-grid .nav-photo:nth-child(5) { animation-delay: 140ms; }
.nav-photo-grid .nav-photo:nth-child(6) { animation-delay: 175ms; }
.nav-photo-grid .nav-photo:nth-child(7) { animation-delay: 210ms; }
.nav-photo-grid .nav-photo:nth-child(8) { animation-delay: 245ms; }
.nav-photo-grid .nav-photo:nth-child(9) { animation-delay: 280ms; }
.nav-dropdown-visual .nav-photo { animation-delay: 60ms; }
.nav-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.nav-photo::after {
  content: '';
  position: absolute;
  width: 170%; height: 170%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  right: -35%; top: -70%;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-photo:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 22px 40px -16px rgba(0, 0, 0, 0.45); }
.nav-photo:hover::after { transform: scale(1.08); }

.nav-photo-feature { min-height: 230px; }
.nav-photo-feature::after { width: 120%; height: 220%; right: -10%; top: -90%; }
.nav-photo-media {
  background: var(--ink-2);
  min-height: 280px;
}
.nav-photo-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-photo-media::before {
  z-index: 1;
  background-image: none;
  background: linear-gradient(
    to top,
    rgba(227, 6, 19, 0.78) 0%,
    rgba(227, 6, 19, 0.42) 38%,
    rgba(227, 6, 19, 0.12) 68%,
    transparent 100%
  );
  opacity: 1;
  mix-blend-mode: normal;
}
.nav-photo-media::after { display: none; }
.nav-photo-media:hover img { transform: scale(1.04); }
.nav-photo-kicker { position: relative; z-index: 2; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.55rem; }
.nav-photo-title { position: relative; z-index: 2; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.25; }

.nav-photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.1rem; }
.nav-photo-grid .nav-photo { min-height: 148px; justify-content: space-between; }
.nav-photo-grid-3 { grid-template-columns: repeat(3, 1fr); }
.nav-photo-grid-3 .nav-photo {
  min-height: 128px;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
}
.nav-photo-grid-3 .nav-photo-icon { width: 40px; height: 40px; flex-shrink: 0; padding: 0.5rem; background: rgba(255, 255, 255, 0.16); border-radius: 9px; }
.nav-photo-grid-3 .nav-photo-name { display: block; font-size: 1.06rem; margin-bottom: 0.2rem; }
.nav-photo-grid-3 .nav-photo-tag { display: block; }
.nav-photo-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .primary-nav { display: none; }
  .nav-dropdown { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px var(--gutter) 40px;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.1rem; color: var(--paper); text-decoration: none; }
.mobile-menu a.is-active { color: var(--red); }
.mobile-menu-foot .social-row a { border-color: rgba(255, 255, 255, 0.25); color: var(--paper); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-slide > .wrap.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  flex: 0 0 auto;
  align-self: center;
  box-sizing: border-box;
}

.hero-media { position: absolute; inset: 0; overflow: hidden; background: var(--ink); }
.hero-video, .hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.6) 0%, rgba(10, 9, 7, 0.34) 32%, rgba(10, 9, 7, 0.4) 62%, rgba(10, 9, 7, 0.74) 100%),
    linear-gradient(100deg, rgba(10, 9, 7, 0.6) 0%, rgba(10, 9, 7, 0.18) 55%, rgba(10, 9, 7, 0.08) 100%);
}
.grain {
  position: absolute; inset: -10%;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 3rem;
}
.hero-inner .eyebrow,
.hero-inner .hero-headline,
.hero-inner .hero-sub,
.hero-inner .hero-cta {
  max-width: 44rem;
}
.hero-inner .eyebrow {
  font-size: 0.72rem;
  margin-bottom: 0.95rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
h2.hero-headline {
  font-size: inherit;
  margin: 0;
}
.hero-headline .line1 {
  display: block;
  font-size: clamp(2.15rem, 1.65rem + 3vw, 5rem);
  color: var(--paper);
}
.hero-headline .line2 {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 0.95rem + 1.6vw, 2.65rem);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.18em;
}
.hero-sub {
  font-size: clamp(0.92rem, 0.86rem + 0.18vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 40ch;
  margin: 1.5rem 0 0;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero-cta .btn { font-size: 0.88rem; padding: 0.85em 1.45em; }

.hero-nav {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  right: var(--gutter);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, width 0.3s ease;
}
.hero-dot:hover { border-color: #fff; }
.hero-dot.is-active { width: 26px; background: var(--red); border-color: var(--red); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 9, 7, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); }
.hero-arrow svg { width: 19px; height: 19px; }
.hero-arrow-prev { left: clamp(12px, 2.5vw, 32px); }
.hero-arrow-next { right: clamp(12px, 2.5vw, 32px); }

@media (max-width: 720px) {
  .hero-arrow { display: none; }
  .hero-nav { right: 50%; transform: translateX(50%); }
}

.scroll-cue {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  z-index: 2;
}
.scroll-cue svg { width: 15px; height: 15px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ==========================================================================
   STATS — editorial split
   ========================================================================== */
.stats {
  position: relative;
  background: var(--paper);
  padding: clamp(48px, 6vw, 72px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 4.5rem);
  align-items: center;
}
.stats-statement .eyebrow {
  margin-bottom: 0.7rem;
}
.stats-statement h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 1.25rem + 1.5vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 16ch;
}
.stats-statement .section-sub {
  margin-top: 0.75rem;
  max-width: 36ch;
  font-size: 0.95rem;
}
.stats-kpis {
  margin: 0;
  padding: 0;
}
.stats-kpi {
  padding: 0.85rem 0 0.95rem;
  border-top: 1px solid var(--line);
}
.stats-kpi:last-child {
  border-bottom: 1px solid var(--line);
}
.stats-kpi dt {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats-kpi .stat-value {
  font-size: clamp(2rem, 1.4rem + 1.5vw, 2.85rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stats-kpi__unit {
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.45rem);
  font-weight: 600;
}
.stats-kpi dd {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 38ch;
}
@media (max-width: 880px) {
  .stats-split {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .stats-statement h2 {
    max-width: 18ch;
  }
}

/* ==========================================================================
   HERITAGE TIMELINE
   ========================================================================== */
.heritage {
  position: relative;
  background: var(--paper-dim);
  color: var(--ink);
  padding: clamp(48px, 6vw, 72px) 0 0;
  overflow: hidden;
}
.heritage-atmosphere { position: absolute; inset: 0; pointer-events: none; }
.heritage-atmosphere .grain { opacity: 0.04; mix-blend-mode: multiply; }
.heritage-atmosphere::before,
.heritage-atmosphere::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  right: -22vmax; bottom: -32vmax;
}
.heritage-atmosphere::before { width: 72vmax; height: 72vmax; border: 1px solid rgba(20, 18, 15, 0.06); }
.heritage-atmosphere::after { width: 46vmax; height: 46vmax; right: -12vmax; bottom: -19vmax; border: 1px solid rgba(227, 6, 19, 0.12); }

.timeline-wrap { margin-top: clamp(1rem, 2vw, 1.5rem); position: relative; }
.timeline-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--container-inset);
  padding: 0.2rem var(--gutter) 1rem var(--container-inset);
  cursor: grab;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  touch-action: pan-y;
}
.timeline-track.is-dragging,
.timeline-track.is-gliding {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
  -webkit-user-select: none;
}
.timeline-track.is-dragging .timeline-item,
.timeline-track.is-gliding .timeline-item {
  pointer-events: none;
  transition: none;
  transform: none;
}
.timeline-track::-webkit-scrollbar { display: none; }

.timeline-item {
  flex: 0 0 clamp(216px, 20vw, 248px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.timeline-track .timeline-item.reveal,
.timeline-track .timeline-item {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}
.timeline-item:hover { transform: translateY(-4px) !important; border-color: rgba(227, 6, 19, 0.45); }
.timeline-item-today { border-color: rgba(227, 6, 19, 0.55); }

.timeline-item-visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #C8C4BC;
}
.timeline-item-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.18);
  pointer-events: none;
  transition: background 0.45s ease;
}
.timeline-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  filter: grayscale(0.92) contrast(1.06) brightness(0.94);
  transform: scale(1.02);
  transition: filter 0.45s ease, transform 0.5s ease;
}
.timeline-item:hover .timeline-item-visual img {
  filter: grayscale(0) contrast(1.04) brightness(1);
  transform: scale(1.06);
}
.timeline-item:hover .timeline-item-visual::after {
  background: rgba(20, 18, 15, 0.06);
}
.t-ghost {
  position: absolute;
  bottom: -0.18em; right: 0.35rem;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.38);
  pointer-events: none;
  user-select: none;
}
.timeline-item-body {
  position: relative;
  padding: 0.85rem 0.95rem 1rem;
  background: var(--paper);
  min-height: 7.4rem;
}
.t-year {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.01em;
  margin-bottom: 0.28rem;
}
.timeline-item p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* edge fade: hints that cards continue past the frame; toggled by scroll position */
.timeline-track {
  -webkit-mask-image: linear-gradient(90deg, black 0, black calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(90deg, black 0, black calc(100% - 70px), transparent 100%);
}
.timeline-track.at-start {
  -webkit-mask-image: linear-gradient(90deg, black 0, black calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(90deg, black 0, black calc(100% - 70px), transparent 100%);
}
.timeline-track.at-end {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 70px, black 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 70px, black 100%);
}
.timeline-track.at-start.at-end {
  -webkit-mask-image: none;
  mask-image: none;
}
.timeline-track:not(.at-start):not(.at-end) {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 70px, black calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 70px, black calc(100% - 70px), transparent 100%);
}

.timeline-nav { display: flex; align-items: center; gap: 1rem; margin: 0 var(--gutter) clamp(18px, 3vw, 28px) var(--container-inset); position: relative; z-index: 2; }
.timeline-progress { height: 3px; border-radius: 999px; overflow: hidden; background: var(--line); margin: 0; flex: 1; position: relative; }
.timeline-progress span { position: absolute; left: 0; top: 0; height: 100%; background: var(--red); width: 0%; border-radius: 999px; }
.timeline-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
}
.timeline-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.timeline-arrow:active { transform: scale(0.93); }
.timeline-arrow svg { width: 18px; height: 18px; }
.timeline-arrow:disabled { opacity: 0.35; cursor: default; }
.timeline-arrow:disabled:hover { background: var(--paper); border-color: var(--line); color: var(--ink); }

/* ==========================================================================
   SECTORS — vertical panels + typographic mark
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ==========================================================================
   SECTORS — EXPANDABLE ACCORDION CARDS layout
   ========================================================================== */
.sectors {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(65px, 8vw, 110px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.sectors-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-end;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.sectors-header-left .eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.sectors-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  text-transform: uppercase;
}
.sectors-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 48ch;
}

/* Accordion Gallery Container */
.sectors-accordion {
  display: flex;
  gap: 1.1rem;
  min-height: 520px;
  height: clamp(480px, 64vh, 580px);
  width: 100%;
}

/* Single Accordion Card */
.sector-acc-card {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: #14120F;
  cursor: pointer;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.sector-acc-card:hover,
.sector-acc-card:focus-visible,
.sector-acc-card.is-active {
  flex: 3.8;
  border-color: rgba(227, 6, 19, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.sector-acc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.3) brightness(0.68) contrast(1.06);
  transform: scale(1.03);
  transition: filter 0.6s ease, transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.sector-acc-card:hover img,
.sector-acc-card:focus-visible img,
.sector-acc-card.is-active img {
  filter: grayscale(0) brightness(0.82) contrast(1.05);
  transform: scale(1.06);
}

.sector-acc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 10, 8, 0.12) 0%, rgba(11, 10, 8, 0.35) 45%, rgba(11, 10, 8, 0.88) 100%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Collapsed State Title (Vertical rotated text) */
.sector-acc-vertical {
  position: absolute;
  bottom: 2.2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.sector-acc-card:hover .sector-acc-vertical,
.sector-acc-card:focus-visible .sector-acc-vertical,
.sector-acc-card.is-active .sector-acc-vertical {
  opacity: 0;
}

.acc-vtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* Expanded Active Content */
.sector-acc-expanded {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: clamp(1.8rem, 3.2vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sector-acc-card:hover .sector-acc-expanded,
.sector-acc-card:focus-visible .sector-acc-expanded,
.sector-acc-card.is-active .sector-acc-expanded {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.12s;
}
.acc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 24ch;
}
.acc-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 42ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.acc-btn {
  margin-top: 0.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.acc-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}
.acc-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .sectors-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sectors-accordion {
    flex-direction: column;
    height: auto;
    min-height: 0;
    gap: 0.85rem;
  }
  .sector-acc-card {
    flex: none;
    width: 100%;
    min-height: 200px;
    border-radius: 14px;
  }
  .sector-acc-card:hover,
  .sector-acc-card:focus-visible,
  .sector-acc-card.is-active {
    flex: none;
    min-height: 320px;
  }
  .sector-acc-vertical {
    display: none;
  }
  .sector-acc-expanded {
    opacity: 1;
    transform: none;
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 20%, rgba(11, 10, 8, 0.9) 100%);
  }
}

/* ==========================================================================
   SUSTAINABILITY
   ========================================================================== */
.sustainability {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, #F7F8F5 100%);
  color: var(--ink);
  padding: clamp(70px, 10vw, 130px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.sustain-atmosphere { position: absolute; inset: 0; pointer-events: none; }
.sustain-atmosphere::before,
.sustain-atmosphere::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sustain-atmosphere::before {
  width: 72vmax;
  height: 72vmax;
  right: -22vmax;
  bottom: -32vmax;
  border: 1px solid rgba(30, 156, 139, 0.1);
}
.sustain-atmosphere::after {
  width: 46vmax;
  height: 46vmax;
  right: -12vmax;
  bottom: -19vmax;
  border: 1px solid rgba(227, 6, 19, 0.08);
}
.sustain-atmosphere .grain { opacity: 0.035; }

.sustain-aside {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.sustain-visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.03);
}

@media (min-width: 1024px) {
  .sustain-visual-stack {
    flex: 1 1 auto;
    min-height: 520px;
  }
}

.sustain-visual-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sustain-visual-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.sustain-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.5) contrast(1.05) brightness(0.9);
  transition: filter 0.8s ease;
}

.sustain-theme-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  opacity: 0.85;
  transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide specific theme color gradients overlaying landscape */
.sustain-visual-media.slide-0 .sustain-theme-overlay {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}
.sustain-visual-media.slide-0 .sustain-visual-img {
  filter: grayscale(0.5) contrast(1.1) brightness(0.9);
}

.sustain-visual-media.slide-1 .sustain-theme-overlay {
  background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
}
.sustain-visual-media.slide-1 .sustain-visual-img {
  filter: grayscale(0.3) contrast(1) brightness(0.95);
}

.sustain-visual-media.slide-2 .sustain-theme-overlay {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.sustain-visual-media.slide-2 .sustain-visual-img {
  filter: grayscale(0) contrast(1.05) brightness(0.9);
}

.sustain-visual-media.slide-3 .sustain-theme-overlay {
  background: linear-gradient(135deg, #8e44ad 0%, #c0392b 100%);
}
.sustain-visual-media.slide-3 .sustain-visual-img {
  filter: grayscale(0.4) contrast(1.15) brightness(0.85);
}

.sustain-inner { position: relative; z-index: 2; }
.sustain-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .sustain-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.sustain-head { margin-bottom: clamp(2rem, 4vw, 2.75rem); max-width: 580px; }

.sustain-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sustain-pillar {
  position: relative;
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.dark-mode .sustain-pillar {
  background: rgba(20, 18, 15, 0.2);
  border-color: rgba(255, 255, 255, 0.05);
}

.sustain-pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sustain-pillar:hover,
.sustain-pillar.is-active {
  border-color: rgba(227, 6, 19, 0.35);
  background: var(--paper-dim);
  box-shadow: 0 10px 25px rgba(20, 18, 15, 0.04);
  transform: translateX(5px);
}

.sustain-pillar.is-active::before {
  height: 60%;
}

.sustain-pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.sustain-pillar p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* Metric badge — top of image */
.sustain-goal {
  position: absolute !important;
  top: 1.1rem;
  left: 1.1rem;
  right: auto;
  bottom: auto;
  z-index: 5;
  max-width: min(240px, calc(100% - 2.2rem));
  border-radius: 14px;
  padding: 0.9rem 1.15rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.dark-mode .sustain-goal {
  background: rgba(20, 18, 15, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

.sustain-goal-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  display: block;
  min-width: 5.5ch;
}

.sustain-goal-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
  margin: 0;
}

/* Detail copy — inside image, bottom overlay */
.sustain-detail-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  margin: 0;
  min-height: 0;
  padding: clamp(4.5rem, 12vw, 7rem) clamp(1.15rem, 2.5vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.6rem);
  background: linear-gradient(180deg, transparent 0%, rgba(20, 18, 15, 0.72) 42%, rgba(20, 18, 15, 0.9) 100%);
  color: #fff;
}

.sustain-detail-slide {
  position: absolute;
  left: clamp(1.15rem, 2.5vw, 1.75rem);
  right: clamp(1.15rem, 2.5vw, 1.75rem);
  bottom: clamp(1.15rem, 2.5vw, 1.6rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.sustain-detail-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
  pointer-events: auto;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, visibility 0.45s 0.12s;
}

.sustain-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.55rem;
}

.sustain-detail-desc {
  font-size: clamp(0.88rem, 0.84rem + 0.2vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1rem;
  max-width: 42ch;
}

.sustain-detail-card .btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  min-height: 0;
}

/* Responsive queries */
@media (max-width: 1023px) {
  .sustain-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .sustain-pillar {
    padding: 1.25rem 1.2rem;
  }
  .sustain-pillar::before {
    display: none;
  }
  .sustain-pillar:hover,
  .sustain-pillar.is-active {
    transform: translateY(-2px);
  }
}

@media (max-width: 767px) {
  .sustain-pillars {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   NEWS
   ========================================================================== */
.news { background: var(--paper); padding: clamp(70px, 10vw, 120px) 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2.5rem; }
.n-card { transition: transform 0.3s ease; overflow: hidden; }
.n-card:hover { transform: translateY(-3px); }
.n-card-visual {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.2rem;
  overflow: hidden;
  background: var(--paper-dim);
}
.n-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.n-card:hover .n-card-visual img { transform: scale(1.06); }
.n-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; margin-bottom: 1rem; }
.n-tag { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); }
.n-date { color: var(--ink-soft); }
.n-card h3,
.n-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; line-height: 1.35; color: var(--ink); margin: 0; }
.n-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   MEDIA CENTER PAGES
   ========================================================================== */
.media-hub {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.media-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.media-hub__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper-dim);
  border: 1px solid rgba(20, 18, 15, 0.08);
  color: inherit;
  text-decoration: none;
  min-height: 220px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.media-hub__card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow: 0 22px 40px -30px rgba(20, 18, 15, 0.35);
}
.media-hub__index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
}
.media-hub__card .media-hub__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.media-hub__card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.media-hub__cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
}

.media-list {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6rem);
}
.media-nav {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.media-nav__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.media-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  align-items: baseline;
}
.media-nav__list > li {
  display: flex;
  align-items: baseline;
}
.media-nav__list > li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 0.85em;
  margin: 0 0.95rem;
  background: rgba(20, 18, 15, 0.16);
  align-self: center;
}
.media-nav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.media-nav__index {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(20, 18, 15, 0.35);
}
.media-nav__name {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.media-nav__link:hover {
  color: var(--ink);
}
.media-nav__link:hover .media-nav__index {
  color: var(--red);
}
.media-nav__link.is-active {
  color: var(--ink);
  border-bottom-color: var(--red);
}
.media-nav__link.is-active .media-nav__index {
  color: var(--red);
}
.media-nav__link.is-active .media-nav__name {
  font-weight: 700;
}

@media (max-width: 720px) {
  .media-nav__list > li:not(:last-child)::after {
    display: none;
  }
  .media-nav__list {
    gap: 0.35rem 1.15rem;
  }
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.media-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.media-card {
  background: var(--paper);
  border: 1px solid rgba(20, 18, 15, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 18, 15, 0.14);
  box-shadow: 0 22px 40px -30px rgba(20, 18, 15, 0.35);
}
.media-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.media-card__visual {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-dim);
}
.media-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.media-card:hover .media-card__visual img { transform: scale(1.04); }
.media-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eceae6, #d9d5cf);
}
.media-card__meta,
.media-card__title,
.media-card__summary {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}
.media-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.media-card__tag {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
}
.media-card__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.7rem 0 0.85rem;
}
.media-card__summary {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}
.media-empty {
  color: var(--ink-soft);
  padding: 2rem 0 4rem;
}
.media-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.media-pagination__btn {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.55em 1em;
  font-size: 0.82rem;
  font-weight: 600;
}
.media-pagination__btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.media-pagination__status {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.media-detail {
  background: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}
.media-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(240px, 3fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
.media-detail__main {
  min-width: 0;
}
.media-detail__aside {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.media-detail__head .eyebrow {
  margin: 0 0 0.65rem;
}
.media-detail__head .eyebrow a {
  color: var(--red);
  text-decoration: none;
}
.media-detail__head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.25rem + 1.4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 0.85rem;
  color: var(--ink);
  max-width: 28ch;
}
.media-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.media-detail__cover {
  margin: 0 0 1.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-dim);
}
.media-detail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-detail__summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.media-detail__body {
  margin-bottom: 2rem;
}
.media-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.media-aside-block {
  background: var(--paper-dim);
  border: 1px solid rgba(20, 18, 15, 0.08);
  padding: 1.2rem 1.15rem 1.25rem;
}
.media-aside-block__head {
  margin-bottom: 1rem;
}
.media-aside-block__head .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--red);
}
.media-aside-block__head .media-aside-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.media-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.media-aside-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.media-aside-item__visual {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e5df;
}
.media-aside-item__visual img,
.media-aside-item__visual .media-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-aside-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.media-aside-item__body time {
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.media-aside-item__body strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-aside-item:hover strong {
  color: var(--red);
}
.media-aside-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.media-aside-more:hover {
  text-decoration: underline;
}
.media-aside-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.media-aside-links li + li {
  border-top: 1px solid rgba(20, 18, 15, 0.08);
}
.media-aside-links a {
  display: block;
  padding: 0.7rem 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.media-aside-links a:hover {
  color: var(--red);
}

@media (max-width: 980px) {
  .media-hub__grid,
  .media-grid,
  .media-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-detail__layout {
    grid-template-columns: 1fr;
  }
  .media-detail__aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .media-hub__grid,
  .media-grid,
  .media-grid--related {
    grid-template-columns: 1fr;
  }
  .media-detail__aside {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CAREERS
   ========================================================================== */
.careers {
  position: relative;
  z-index: 5;
  background: var(--paper-dim);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.careers-copy {
  padding-bottom: 0;
}
.careers-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.careers-hashtag { font-weight: 700; color: var(--red); margin-top: 0.6rem; font-size: 1.05rem; }
.careers-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.careers-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.careers-visual:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { position: relative; background: var(--ink); color: var(--paper); padding: clamp(70px, 10vw, 130px) 0; overflow: hidden; }
.contact-atmosphere { position: absolute; inset: 0; pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 6vw, 6rem); position: relative; z-index: 2; }
.contact-info dl { margin: 2rem 0; }
.contact-info dl > div { padding: 1.1rem 0; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.contact-info dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255, 255, 255, 0.5); margin-bottom: 0.4rem; }
.contact-info dd, .contact-info dd a { font-family: var(--font-display); font-size: 1.2rem; color: var(--paper); text-decoration: none; }

.social-row { display: flex; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  transition: all 0.25s ease;
}
.social-row a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; }

.contact-form { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.15); padding: clamp(1.8rem, 4vw, 2.6rem); border-radius: 6px; }
.form-row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
.form-row input, .form-row textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
  padding: 0.85em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
/* ==========================================================================
   CONTACT PAGE (/iletisim)
   ========================================================================== */
.contact-page {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.contact-page__head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.contact-page__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.45rem + 1.5vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
}
.contact-page__lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1.02rem;
  max-width: 46ch;
}

.contact-sheet {
  background: var(--paper-dim);
  border: 1px solid rgba(20, 18, 15, 0.08);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.contact-sheet__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
}
.contact-sheet .form-row {
  margin-bottom: 0;
}
.contact-sheet .form-row--full {
  grid-column: 1 / -1;
}
.contact-sheet .form-row label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-sheet .form-row input,
.contact-sheet .form-row textarea {
  background: var(--paper);
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 0;
  color: var(--ink);
  padding: 0.9em 1em;
  font: inherit;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-sheet .form-row textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-sheet .form-row input:focus,
.contact-sheet .form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}
.contact-consent {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(20, 18, 15, 0.08);
}
.contact-consent__label {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
  cursor: pointer;
}
.contact-consent__label input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-consent__box {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  border: 1.5px solid rgba(20, 18, 15, 0.28);
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-consent__box::after {
  content: '';
  width: 0.4rem;
  height: 0.7rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s ease;
  margin-bottom: 0.15rem;
}
.contact-consent__label input:checked + .contact-consent__box {
  background: var(--red);
  border-color: var(--red);
}
.contact-consent__label input:checked + .contact-consent__box::after {
  transform: rotate(45deg) scale(1);
}
.contact-consent__label input:focus-visible + .contact-consent__box {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.contact-consent__text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.contact-consent__text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.contact-sheet__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem 2rem;
  margin-top: 1.35rem;
}
.contact-sheet .form-success {
  margin-top: 1.15rem;
  color: #1a7a45;
  background: rgba(26, 122, 69, 0.08);
  border: 1px solid rgba(26, 122, 69, 0.2);
  padding: 0.9rem 1.05rem;
}

.contact-address {
  background: var(--paper-dim);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}
.contact-address__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.contact-address__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.4rem + 1.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 1.75rem;
}
.contact-facts {
  margin: 0;
  display: grid;
  gap: 0;
}
.contact-facts > div {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}
.contact-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-facts dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.contact-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}
.contact-facts dd a {
  color: inherit;
  text-decoration: none;
}
.contact-facts dd a:hover { color: var(--red); }

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.85rem;
}
.contact-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.contact-social a svg { width: 18px; height: 18px; }
.contact-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.contact-address__map {
  min-height: 360px;
  background: #e8e6e2;
  border: 1px solid rgba(20, 18, 15, 0.08);
  overflow: hidden;
}
.contact-address__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.03);
}

@media (max-width: 900px) {
  .contact-sheet__grid,
  .contact-address__grid {
    grid-template-columns: 1fr;
  }
  .contact-address__map,
  .contact-address__map iframe {
    min-height: 280px;
  }
}

/* ==========================================================================
   CORPORATE HERO (shared) + ABOUT PAGE
   ========================================================================== */
.corp-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.corp-hero--article {
  min-height: clamp(280px, 38vh, 380px);
  padding: calc(var(--header-h) + 1.75rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}
.corp-hero--article .corp-breadcrumb {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}
.corp-hero--article .corp-hero__title {
  font-size: clamp(1.85rem, 1.35rem + 1.4vw, 2.75rem);
  max-width: 18ch;
}
.corp-hero__media {
  position: absolute;
  inset: 0;
}
.corp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.04);
  animation: corpHeroDrift 18s ease-in-out infinite alternate;
}
@keyframes corpHeroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}
.corp-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.78) 100%),
    rgba(0, 0, 0, 0.28);
}
.corp-hero__media .grain { opacity: 0.04; mix-blend-mode: overlay; }
.corp-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.corp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.corp-breadcrumb__sep {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
}
.corp-breadcrumb a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}
.corp-breadcrumb a:hover { color: #fff; }
.corp-breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
  max-width: min(52vw, 28rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.corp-hero__content {
  max-width: 720px;
}
.corp-hero__year {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.corp-hero__year span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.corp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3.6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 1.15rem;
  color: #fff;
  text-wrap: balance;
}
.corp-hero__sub {
  margin: 0 0 1.85rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.22rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.corp-hero__jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.corp-hero__jumps a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.58em 1em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(20, 18, 15, 0.28);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
}
.corp-hero__jumps a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.corp-hero--split {
  min-height: clamp(520px, 78vh, 720px);
  align-items: stretch;
}
.corp-hero--split .corp-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.corp-hero--split .corp-breadcrumb {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.corp-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: end;
}
.corp-hero--sustain .corp-hero__content {
  max-width: none;
}
.corp-hero--sustain .corp-hero__title {
  font-size: clamp(2.6rem, 1.6rem + 3vw, 4.6rem);
  max-width: 12ch;
}
.corp-hero--sustain .corp-hero__sub {
  max-width: 28ch;
}

.sustain-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 22rem;
  margin-left: auto;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.sustain-hero-panel__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.sustain-hero-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sustain-hero-index li {
  opacity: 0;
  transform: translateX(12px);
  animation: sustainHeroIn 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.07s);
}
.sustain-hero-index a {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.85rem 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease, padding-left 0.3s ease;
}
.sustain-hero-index li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sustain-hero-index a:hover {
  color: #fff;
  padding-left: 0.35rem;
}
.sustain-hero-index__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}
.sustain-hero-index a:hover .sustain-hero-index__num {
  color: var(--red);
}
.sustain-hero-index__name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.sustain-hero-report {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.15rem;
  padding: 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: translateX(12px);
  animation: sustainHeroIn 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.07s);
  transition: color 0.25s ease;
}
.sustain-hero-report:hover {
  color: #fff;
}
.sustain-hero-report__meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
}
.sustain-hero-report__txt {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  transition: text-decoration-color 0.25s ease;
}
.sustain-hero-report:hover .sustain-hero-report__txt {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

@keyframes sustainHeroIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .corp-hero__media img {
    animation: none !important;
    transform: none;
  }
  .sustain-hero-index li,
  .sustain-hero-report {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .corp-hero__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .corp-hero--split {
    min-height: clamp(520px, 82vh, 700px);
  }
  .corp-hero--sustain .corp-hero__title {
    max-width: none;
  }
  .sustain-hero-panel {
    max-width: none;
    margin-left: 0;
    padding-left: 1rem;
  }
}

.about-block {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.about-block--alt { background: var(--paper-dim); }
.about-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-block__grid--flip {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.about-block__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1.35rem;
  max-width: 18ch;
}
.about-prose {
  display: grid;
  gap: 1rem;
}
.about-prose p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 58ch;
}
.about-prose--message {
  margin-top: 1.15rem;
  padding-left: 1.15rem;
  border-left: 2px solid var(--red);
}
.about-message__more {
  display: grid;
  gap: 1rem;
}
.about-message__more[hidden] { display: none; }
.about-prose__close {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink) !important;
  font-size: 1.08rem !important;
}
.about-message__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--red);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s ease;
}
.about-message__toggle:hover { color: var(--ink); }
.about-message__toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.about-message__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.about-block#mesaj .about-orb {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

/* Circular media + red accent (live motif) */
.about-orb {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  justify-self: start;
}
.about-orb--right { justify-self: end; }
.about-orb__dot {
  position: absolute;
  width: 46%;
  height: 46%;
  border-radius: 50%;
  background: var(--red);
  right: -6%;
  bottom: -4%;
  z-index: 0;
  box-shadow: 0 20px 40px -24px rgba(227, 6, 19, 0.55);
}
.about-orb--right .about-orb__dot {
  right: auto;
  left: -6%;
}
.about-orb__frame {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-dim);
  box-shadow: 0 28px 50px -30px rgba(20, 18, 15, 0.35);
}
.about-orb__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-orb:hover .about-orb__frame img { transform: scale(1.04); }

.about-founder__quote {
  margin: 0 0 1.5rem;
}
.about-founder__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.22rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  max-width: 36ch;
}
.about-founder__byline {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  max-width: 340px;
}
.about-founder__byline strong { font-size: 1.05rem; }
.about-founder__byline span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.about-message__greeting {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.about-message__sign {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  max-width: 320px;
}
.about-message__sign strong { font-size: 1.05rem; }
.about-message__sign span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Board — hierarchical tree, refined */
.about-board {
  position: relative;
  overflow: hidden;
  background: var(--paper-dim);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.about-board__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(227, 6, 19, 0.06), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 90%, rgba(20, 18, 15, 0.03), transparent 65%);
}
.about-board__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}
.about-board__head .eyebrow {
  margin-bottom: 0.85rem;
}
.about-board__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.about-board__rule {
  display: block;
  width: 1px;
  height: 36px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--red), rgba(227, 6, 19, 0.15));
}

.about-board__tree {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}

/* vertical spine */
.about-board__tree::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 10%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(227, 6, 19, 0.5) 0%,
    rgba(20, 18, 15, 0.1) 40%,
    rgba(20, 18, 15, 0.1) 78%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.about-board__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  column-gap: clamp(3rem, 8vw, 7rem);
  width: 100%;
  padding: clamp(1.5rem, 2.8vw, 2rem) 0;
}

/* horizontal branch for pair rows */
.about-board__row:not(.about-board__row--solo)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(48%, 320px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 18, 15, 0.12) 20%,
    rgba(20, 18, 15, 0.12) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.about-board__row--solo {
  grid-template-columns: minmax(0, 340px);
  justify-items: center;
  padding-top: clamp(1.75rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.4rem);
}

.about-board__row--solo:first-child { padding-top: 0; }
.about-board__row--solo:last-child { padding-bottom: 0; }

.about-person {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  justify-self: center;
  background: var(--paper);
  border: 1px solid rgba(20, 18, 15, 0.08);
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

.about-person--lead {
  max-width: 340px;
}

.about-person::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.35s ease;
}

.about-person--lead::after {
  background: var(--red);
}

.about-person:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 18, 15, 0.14);
  box-shadow: 0 24px 48px -32px rgba(20, 18, 15, 0.35);
}
.about-person:hover::after {
  background: var(--red);
}

.about-person__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e8e6e2;
}

.about-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-person:hover .about-person__photo img {
  transform: scale(1.04);
}

.about-person__meta {
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(20, 18, 15, 0.06);
}
.about-person__meta h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.about-person--lead .about-person__meta h3 {
  font-size: 1.28rem;
}
.about-person__meta p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.about-person--lead .about-person__meta p {
  color: var(--red);
  font-weight: 600;
}

.about-cta {
  position: relative;
  color: var(--paper);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  overflow: hidden;
  min-height: clamp(380px, 48vh, 520px);
  display: flex;
  align-items: center;
}
.about-cta__media {
  position: absolute;
  inset: 0;
}
.about-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 18, 15, 0.88) 0%, rgba(20, 18, 15, 0.62) 55%, rgba(20, 18, 15, 0.4) 100%);
}
.about-cta__media .grain { opacity: 0.06; mix-blend-mode: overlay; }
.about-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  width: 100%;
}
.about-cta .eyebrow { color: rgba(255, 255, 255, 0.6); }
.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.45rem + 1.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  max-width: 14ch;
}
.about-cta__sub {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 1.02rem;
}

@media (max-width: 980px) {
  .about-block__grid,
  .about-block__grid--flip {
    grid-template-columns: 1fr;
  }
  .about-orb,
  .about-orb--right {
    justify-self: center;
    width: min(100%, 340px);
  }
  .about-block#mesaj .about-orb {
    position: static;
  }
  .about-board__tree::before { display: none; }
  .about-board__row:not(.about-board__row--solo)::before { display: none; }
  .about-board__row {
    column-gap: clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: repeat(2, minmax(0, 260px));
  }
  .about-board__row--solo {
    grid-template-columns: minmax(0, 300px);
  }
}

@media (max-width: 640px) {
  .about-board__row,
  .about-board__row--solo {
    grid-template-columns: minmax(0, 300px);
    padding: 0.75rem 0;
  }
  .about-board__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .about-person,
  .about-person--lead {
    max-width: 300px;
  }
}

/* ==========================================================================
   KNOW PAGE (/inciyi-taniyin)
   ========================================================================== */
.know-block {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.know-block--alt { background: var(--paper-dim); }
.know-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.know-block__grid--flip {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.know-block__copy h2,
.know-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.4rem + 1.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 1.15rem;
}
.know-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  max-width: 28ch;
}
.know-prose {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.know-prose p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}
.know-media__frame {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-dim);
}
.know-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.know-media:hover .know-media__frame img { transform: scale(1.04); }

.know-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.know-head__sub {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1.02rem;
  max-width: 48ch;
}

.know-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}
.know-value {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper);
  border: 1px solid rgba(20, 18, 15, 0.08);
  overflow: hidden;
  min-height: 220px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.know-value:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 18, 15, 0.14);
  box-shadow: 0 22px 40px -30px rgba(20, 18, 15, 0.35);
}
.know-value__photo {
  margin: 0;
  overflow: hidden;
  background: #e8e6e2;
}
.know-value__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.know-value__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
}
.know-value__index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
}
.know-value__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.know-value__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.know-awards {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.know-awards__visual {
  margin: 1.75rem 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper);
}
.know-awards__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.know-awards__groups {
  display: grid;
  gap: 1.35rem;
}
.know-award-group {
  background: var(--paper);
  border: 1px solid rgba(20, 18, 15, 0.08);
  padding: 1.35rem 1.4rem 1.45rem;
}
.know-award-group h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--red);
}
.know-award-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.know-award-group li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.know-award-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.know-film {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.know-film__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.know-film .eyebrow { color: rgba(255, 255, 255, 0.55); }
.know-film__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.4rem + 1.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
.know-film__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 38ch;
}
.know-film__player {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 60px -36px rgba(0, 0, 0, 0.65);
}
.know-film__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.know-social__banner {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.know-social__banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.know-social__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 100%),
    rgba(0, 0, 0, 0.2);
}
.know-social__banner-copy {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  color: #fff;
}
.know-social__banner-copy .eyebrow { color: #ff6b73; }
.know-social__quote {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.2rem + 1.3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.know-social__body {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.know-social__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.know-social__list li {
  padding: 1.15rem 1.25rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.know-social__list li:nth-child(odd) {
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
}
.know-social__list li:nth-child(even) {
  padding-left: 1.5rem;
}

@media (max-width: 980px) {
  .know-block__grid,
  .know-block__grid--flip,
  .know-awards,
  .know-film__grid,
  .know-values {
    grid-template-columns: 1fr;
  }
  .know-value {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (max-width: 640px) {
  .know-value {
    grid-template-columns: 1fr;
  }
  .know-value__photo { aspect-ratio: 16 / 10; }
  .know-social__list {
    grid-template-columns: 1fr;
  }
  .know-social__list li:nth-child(odd),
  .know-social__list li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
}
.footer-atmosphere { position: absolute; inset: 0; pointer-events: none; }
.footer-atmosphere::before,
.footer-atmosphere::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer-atmosphere::before {
  width: min(68vmax, 920px);
  height: min(68vmax, 920px);
  top: -38vmax;
  right: -18vmax;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-atmosphere::after {
  width: min(42vmax, 560px);
  height: min(42vmax, 560px);
  left: -14vmax;
  bottom: -22vmax;
  border: 1px solid rgba(227, 6, 19, 0.14);
}
.footer-inner { position: relative; z-index: 2; }

.footer-shell {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-panel {
  position: relative;
  padding-right: clamp(1rem, 2.5vw, 2rem);
}
.footer-brand-panel::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: min(100%, 420px);
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14) 20%, rgba(255, 255, 255, 0.14) 80%, transparent);
}
.footer-logo-link { display: block; line-height: 0; }
.footer-logo-full {
  height: clamp(110px, 12vw, 160px);
  width: auto;
  display: block;
}
.footer-logo-full .logo-word,
.footer-logo-full .logo-legs,
.footer-logo-full .logo-dot { fill: var(--paper); }

.footer-menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer-menu-col { display: flex; flex-direction: column; gap: 1.65rem; }
.footer-menu-group .footer-menu-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}
.footer-menu-group .footer-menu-title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.footer-menu-group .footer-menu-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-menu-group .footer-menu-title a:hover { color: rgba(255, 255, 255, 0.75); }
.footer-menu-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.footer-menu-group li {
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}
.footer-menu-group li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  padding: 0.18rem 0;
  transition: color 0.2s ease;
}
.footer-menu-group li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  margin-top: 0.48em;
}
.footer-menu-group li a:hover { color: var(--paper); }
.footer-menu-group li a:hover::before { background: var(--red); }
.footer-menu-group li span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-menu-group li span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  margin-top: 0.48em;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-social.social-row { margin-top: 0; }
.lang-toggle-footer { color: var(--paper); border-color: rgba(255, 255, 255, 0.35); }
.lang-toggle-footer:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16,0.8,0.24,1), transform 0.7s cubic-bezier(0.16,0.8,0.24,1);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   MOUSE-FOLLOW SPOTLIGHT (cards + hero glow)
   ========================================================================== */
.pillar-item, .sustain-pillar, .sustain-goal, .stats-cell, .stats-feature {
  position: relative;
  isolation: isolate;
}
.pillar-item::after, .sustain-pillar::after, .sustain-goal::after, .stats-cell::after, .stats-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(227, 6, 19, 0.12), transparent 72%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.pillar-item:hover::after, .sustain-pillar:hover::after, .sustain-goal:hover::after, .stats-cell:hover::after, .stats-feature:hover::after {
  opacity: 1;
}
.sustain-goal::after { background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(227, 6, 19, 0.22), transparent 72%); }

.hero-glow {
  position: absolute;
  width: min(560px, 55vw);
  height: min(560px, 55vw);
  border-radius: 50%;
  left: var(--gx, 72%);
  top: var(--gy, 22%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(227, 6, 19, 0.45), transparent 70%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transition: left 0.7s cubic-bezier(0.16,0.8,0.24,1), top 0.7s cubic-bezier(0.16,0.8,0.24,1);
  pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .stats-split { grid-template-columns: 1fr; }
  .sustain-layout { grid-template-columns: 1fr; }
  .sustain-aside { max-width: min(560px, 100%); margin-inline: auto; width: 100%; }
  .sustain-visual-frame { min-height: clamp(320px, 48vw, 420px); }
  .sustain-visual-stack { min-height: clamp(360px, 52vw, 460px); }
  .sustain-goal { left: 1rem; top: 1rem; right: auto; margin: 0; }
  .contact-grid, .careers-grid { grid-template-columns: 1fr; }
  .careers-visual { max-width: 560px; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-brand-panel { padding-right: 0; padding-bottom: 1.5rem; }
  .footer-brand-panel::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: none;
    background: rgba(255, 255, 255, 0.12);
  }
  .footer-logo-full { height: 100px; }
  .footer-menus { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .header-utils { gap: 0.75rem; }
  .menu-toggle-label { display: none; }
}

@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
  .footer-menus { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .sustain-pillars { grid-template-columns: 1fr; }
  .sustain-visual-frame { min-height: clamp(220px, 52vw, 300px); }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
}

/* ==========================================================================
   SUSTAINABILITY PAGE
   ========================================================================== */
.sustain-intro {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.sustain-intro__copy {
  max-width: 42rem;
}
.sustain-intro__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.25rem + 1.5vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
}
.sustain-intro__text {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.sustain-axis-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid rgba(20, 18, 15, 0.08);
  box-shadow: 0 10px 30px -24px rgba(20, 18, 15, 0.45);
}
.sustain-axis {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}
.sustain-axis__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.7rem 1rem;
  text-decoration: none;
  color: var(--ink);
  border-top: 2px solid rgba(20, 18, 15, 0.12);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
}
.sustain-axis__item:hover,
.sustain-axis__item.is-active {
  border-top-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.sustain-axis__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.55;
}
.sustain-axis__label {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.sustain-axis__bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  pointer-events: none;
}
.sustain-axis__bar i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--red);
  transform: translateX(0);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
}

.sustain-page-pillar {
  --sustain-accent: #3d7eb8;
  --sustain-tint: #e8f1f8;
  position: relative;
  background: var(--paper);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: clip;
  scroll-margin-top: calc(var(--header-h) + 5.5rem);
}
.sustain-page-pillar--blue { --sustain-accent: #3d7eb8; --sustain-tint: #e4f0f8; }
.sustain-page-pillar--pink {
  --sustain-accent: #c45b8c;
  --sustain-tint: #f7e8ef;
  background: linear-gradient(180deg, #fbf7f9 0%, #fff 55%);
}
.sustain-page-pillar--green { --sustain-accent: #5a9a6a; --sustain-tint: #e8f3ea; }
.sustain-page-pillar--orange {
  --sustain-accent: #c47a3b;
  --sustain-tint: #f7eee4;
  background: linear-gradient(180deg, #fbf8f4 0%, #fff 55%);
}
.sustain-page-pillar__frame {
  position: relative;
}
.sustain-page-pillar__watermark {
  position: absolute;
  top: -0.35em;
  right: -0.05em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 4rem + 12vw, 14rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: color-mix(in srgb, var(--sustain-accent) 12%, transparent);
  pointer-events: none;
  user-select: none;
  transform: translate3d(0, 24px, 0);
  opacity: 0;
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sustain-page-pillar--flip .sustain-page-pillar__watermark {
  right: auto;
  left: -0.05em;
}
.sustain-page-pillar.is-inview .sustain-page-pillar__watermark {
  opacity: 1;
  transform: none;
}
.sustain-page-pillar__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.sustain-page-pillar--flip .sustain-page-pillar__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.sustain-page-pillar--flip .sustain-page-pillar__visual { order: 2; }
.sustain-page-pillar--flip .sustain-page-pillar__copy { order: 1; }
.sustain-page-pillar__visual {
  position: relative;
  margin: 0;
}
.sustain-page-pillar__stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
  padding: 8%;
}
.sustain-page-pillar__blob {
  position: absolute;
  inset: 10% 6% 6% 10%;
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  background:
    radial-gradient(circle at 30% 28%, color-mix(in srgb, var(--sustain-accent) 18%, #fff), transparent 55%),
    var(--sustain-tint);
  transform: scale(0.86) rotate(-6deg);
  opacity: 0;
  transition: transform 1.05s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
}
.sustain-page-pillar.is-inview .sustain-page-pillar__blob {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: sustainBlob 9s ease-in-out infinite alternate;
}
.sustain-page-pillar__orbit {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--sustain-accent) 40%, transparent);
  opacity: 0;
  transform: scale(0.9) rotate(0deg);
  transition: opacity 0.6s ease 0.2s;
}
.sustain-page-pillar__orbit::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--sustain-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sustain-accent) 20%, transparent);
}
.sustain-page-pillar.is-inview .sustain-page-pillar__orbit {
  opacity: 1;
  animation: sustainOrbit 18s linear infinite;
}
.sustain-page-pillar__stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  filter: drop-shadow(0 24px 40px rgba(20, 18, 15, 0.16));
  transform: translate3d(0, var(--float-y, 18px), 0) scale(0.92);
  opacity: 0;
  transition: opacity 0.7s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sustain-page-pillar.is-inview .sustain-page-pillar__stage img {
  opacity: 1;
  transform: translate3d(0, var(--float-y, 0px), 0) scale(1);
  animation: sustainFloat 5.8s ease-in-out 1s infinite;
}
.sustain-page-pillar__copy {
  position: relative;
  padding-left: 1.15rem;
  border-left: 2px solid color-mix(in srgb, var(--sustain-accent) 55%, transparent);
  transform: translate3d(0, 28px, 0);
  opacity: 0;
  transition: opacity 0.75s ease 0.12s, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s;
}
.sustain-page-pillar--flip .sustain-page-pillar__copy {
  padding-left: 0;
  padding-right: 1.15rem;
  border-left: 0;
  border-right: 2px solid color-mix(in srgb, var(--sustain-accent) 55%, transparent);
  text-align: right;
}
.sustain-page-pillar.is-inview .sustain-page-pillar__copy {
  opacity: 1;
  transform: none;
}
.sustain-page-pillar__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sustain-accent);
}
.sustain-page-pillar--flip .sustain-page-pillar__kicker {
  flex-direction: row-reverse;
}
.sustain-page-pillar__kicker span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--sustain-accent);
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}
.sustain-page-pillar__copy h2 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.3rem + 1.7vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  max-width: 14ch;
}
.sustain-page-pillar--flip .sustain-page-pillar__copy h2 {
  margin-left: auto;
}
.sustain-page-pillar__lead,
.sustain-page-pillar__tail {
  display: block;
}
.sustain-page-pillar__accent {
  display: inline;
  color: var(--sustain-accent);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(transparent 72%, color-mix(in srgb, var(--sustain-accent) 22%, transparent) 72%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.sustain-page-pillar__copy > p:last-child {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.sustain-page-pillar--flip .sustain-page-pillar__copy > p:last-child {
  margin-left: auto;
}

@keyframes sustainBlob {
  from { border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%; }
  to { border-radius: 58% 42% 52% 48% / 45% 55% 45% 55%; }
}
@keyframes sustainOrbit {
  to { transform: rotate(360deg); }
}
@keyframes sustainFloat {
  0%, 100% { transform: translate3d(0, var(--float-y, 0px), 0) scale(1); }
  50% { transform: translate3d(0, calc(var(--float-y, 0px) - 10px), 0) scale(1); }
}

.sustain-reports {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  color: var(--ink);
}
.sustain-reports__bg {
  position: absolute;
  inset: -8% 0;
}
.sustain-reports__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.08) translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
.sustain-reports__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.9) 0%, rgba(248, 246, 242, 0.95) 55%, rgba(248, 246, 242, 0.98) 100%);
}
.sustain-reports__inner { position: relative; z-index: 1; }
.sustain-reports__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.sustain-reports__brand {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sustain-reports__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sustain-reports__head h2 strong {
  color: var(--red);
  font-weight: 700;
}
.sustain-reports__sub {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--ink-soft);
}
.sustain-reports__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}
.sustain-report-card {
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sustain-report-card.is-visible {
  transition-delay: calc(var(--i, 0) * 90ms);
}
.sustain-report-card:hover {
  transform: translateY(-8px);
}
.sustain-report-card__art {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eceae6;
  border: 1px solid rgba(20, 18, 15, 0.08);
  margin-bottom: 0.85rem;
  box-shadow: 0 18px 40px -28px rgba(20, 18, 15, 0.45);
}
.sustain-report-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sustain-report-card:hover .sustain-report-card__art img {
  transform: scale(1.05);
}
.sustain-report-card__year {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #2f6fad;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}
.sustain-report-card__btn {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.sustain-report-card__btn:hover {
  background: var(--red-dark, #c10512);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(227, 6, 19, 0.8);
}
.sustain-report-card__caption {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .sustain-page-pillar.is-inview .sustain-page-pillar__stage img,
  .sustain-page-pillar.is-inview .sustain-page-pillar__orbit,
  .sustain-page-pillar.is-inview .sustain-page-pillar__blob {
    animation: none !important;
  }
  .sustain-page-pillar__watermark,
  .sustain-page-pillar__copy,
  .sustain-page-pillar__stage img,
  .sustain-page-pillar__blob {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sustain-reports__bg img {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .sustain-page-pillar__grid,
  .sustain-page-pillar--flip .sustain-page-pillar__grid {
    grid-template-columns: 1fr;
  }
  .sustain-page-pillar--flip .sustain-page-pillar__visual,
  .sustain-page-pillar--flip .sustain-page-pillar__copy {
    order: initial;
  }
  .sustain-page-pillar__visual { order: -1; }
  .sustain-page-pillar__copy,
  .sustain-page-pillar--flip .sustain-page-pillar__copy {
    padding: 0;
    border: 0;
    text-align: left;
  }
  .sustain-page-pillar--flip .sustain-page-pillar__kicker {
    flex-direction: row;
  }
  .sustain-page-pillar--flip .sustain-page-pillar__copy h2,
  .sustain-page-pillar--flip .sustain-page-pillar__copy > p:last-child {
    margin-left: 0;
  }
  .sustain-page-pillar__watermark {
    font-size: clamp(5.5rem, 18vw, 8rem);
    top: auto;
    bottom: -0.15em;
    opacity: 0.55;
  }
  .sustain-reports__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .sustain-axis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sustain-axis__bar { display: none; }
  .sustain-axis__item { padding: 0.7rem 0.45rem 0.85rem; }
  .sustain-axis__label { font-size: 0.78rem; }
}

/* ==========================================================================
   CAREERS / İNCİ'Lİ OLMAK PAGE
   ========================================================================== */
.corp-hero--careers .corp-hero__content { max-width: none; }
.corp-hero--careers .corp-hero__title {
  font-size: clamp(2.6rem, 1.6rem + 3vw, 4.6rem);
  max-width: 12ch;
}
.corp-hero--careers .corp-hero__sub { max-width: 26ch; }

.careers-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 22rem;
  margin-left: auto;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.careers-hero-panel__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.careers-hero-index {
  list-style: none;
  margin: 0;
  padding: 0;
}
.careers-hero-index li {
  opacity: 0;
  transform: translateX(12px);
  animation: sustainHeroIn 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.07s);
}
.careers-hero-index a {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.85rem 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease, padding-left 0.3s ease;
}
.careers-hero-index li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.careers-hero-index a:hover {
  color: #fff;
  padding-left: 0.35rem;
}
.careers-hero-index__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}
.careers-hero-index a:hover .careers-hero-index__num { color: var(--red); }
.careers-hero-index__name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.careers-hero-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
  width: fit-content;
  opacity: 0;
  transform: translateX(12px);
  animation: sustainHeroIn 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.07s);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.careers-hero-cta:hover {
  color: #fff;
  border-bottom-color: var(--red);
}

.careers-intro {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.careers-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.careers-intro__hashtag {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--red);
}
.careers-intro__text {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.careers-intro__visual {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.careers-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.careers-intro__visual:hover img { transform: scale(1.04); }

.careers-studio {
  background: var(--paper);
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.careers-studio__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.careers-studio__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 7.25rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid rgba(20, 18, 15, 0.12);
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-studio__tab:hover {
  border-color: rgba(20, 18, 15, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -22px rgba(20, 18, 15, 0.45);
}
.careers-studio__tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 18px 36px -20px rgba(227, 6, 19, 0.55);
  transform: translateY(-2px);
}
.careers-studio__tab-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
}
.careers-studio__tab.is-active .careers-studio__tab-num { color: rgba(255, 255, 255, 0.82); }
.careers-studio__tab-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.careers-studio__tab-title {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
}
.careers-studio__tab.is-active .careers-studio__tab-title {
  color: rgba(255, 255, 255, 0.82);
}
.careers-studio__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(20, 18, 15, 0.1);
  overflow: hidden;
}
.careers-studio__panel {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  flex: 1;
  opacity: 0;
  transform: translateY(12px);
}
.careers-studio__panel.is-active {
  display: grid;
  animation: careersPanelIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.careers-studio__media {
  margin: 0;
  min-height: 100%;
  background: #1c1c1c;
  overflow: hidden;
}
.careers-studio__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.careers-studio__panel.is-active .careers-studio__media img {
  transform: scale(1);
}
.careers-studio__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
}
.careers-studio__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.careers-studio__kicker span {
  display: inline-grid;
  place-items: center;
  min-width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.careers-studio__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.25rem + 1vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.careers-studio__prose p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.careers-studio__prose p:last-child { margin-bottom: 0; }
.careers-studio__controls {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.25rem;
  border-top: 1px solid rgba(20, 18, 15, 0.08);
  background: #fff;
}
.careers-studio__nav {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(20, 18, 15, 0.14);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.25s ease;
}
.careers-studio__nav svg { width: 1.05rem; height: 1.05rem; }
.careers-studio__nav:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
}
.careers-studio__progress {
  height: 2px;
  background: rgba(20, 18, 15, 0.1);
  overflow: hidden;
}
.careers-studio__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform-origin: left center;
  transform: scaleX(0);
}
.careers-studio.is-playing .careers-studio__progress i {
  animation: careersProgress linear forwards;
  animation-duration: var(--careers-auto, 7s);
}
.careers-studio__count {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  white-space: nowrap;
}

@keyframes careersPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes careersProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.careers-ops {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--paper);
}
.careers-ops__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.careers-ops__card {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  border: 1px solid rgba(20, 18, 15, 0.1);
  background: #fff;
}
.careers-ops__card--accent {
  background: linear-gradient(165deg, #fff 0%, #fff5f5 100%);
  border-color: color-mix(in srgb, var(--red) 22%, rgba(20, 18, 15, 0.08));
}
.careers-ops__card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.2rem + 0.9vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.careers-ops__card > p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.careers-ops__note {
  margin: -0.4rem 0 1.25rem !important;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink) !important;
}
.careers-ops__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (prefers-reduced-motion: reduce) {
  .careers-hero-index li,
  .careers-hero-cta,
  .careers-studio__panel.is-active,
  .careers-studio__progress i {
    animation: none !important;
  }
  .careers-studio__panel.is-active {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .careers-intro__grid,
  .careers-ops__grid {
    grid-template-columns: 1fr;
  }
  .careers-intro__visual {
    max-height: 380px;
    aspect-ratio: 16 / 10;
  }
  .careers-hero-panel {
    max-width: none;
    margin-left: 0;
    padding-left: 1rem;
  }
  .careers-studio__panel.is-active,
  .careers-studio__panel {
    grid-template-columns: 1fr;
  }
  .careers-studio__media img { min-height: 180px; }
  .careers-studio__tab {
    min-height: 0;
    padding: 0.9rem 0.85rem 1rem;
  }
  .careers-studio__tab-title { display: none; }
}
@media (max-width: 640px) {
  .careers-studio__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .careers-studio__controls {
    grid-template-columns: auto 1fr auto;
  }
  .careers-studio__count { display: none; }
}
