:root {
  --white: #ffffff;
  --black: #000000;
  --charcoal: #1a1a1a;
  --light-gray: #f2f2f2;
  --mid-gray: #d9d9d9;
  --menu-start: 40vw;
  --brand-logo-size: 52px;
  --brand-accent: #1f5eff;
  --brand-accent-hover: #1548cc;
  --brand-surface: #f2f2f2;
  --brand-line: #d9d9d9;
  --brand-muted: #666666;
  --brand-subtle: #8b8b8b;
  --brand-copy: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.95s ease;
}

body.scrolled .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--light-gray);
}

body.scrolled .nav__links > .nav__item > a {
  color: var(--black) !important;
}

body.scrolled .burger span {
  background: var(--black) !important;
}

body.scrolled .nav__brand .logo--light {
  opacity: 0;
}

body.scrolled .nav__brand .logo--dark {
  opacity: 1;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px 60px;
  gap: 32px;
  position: relative;
}

.nav__brand {
  position: relative;
  width: 170px;
  height: var(--brand-logo-size);
}

body.header-minimal .site-header {
  display: none;
}

.nav__brand .logo {
  position: absolute;
  top: 0;
  left: 30px;
  height: var(--brand-logo-size);
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav__brand .logo--dark {
  opacity: 0;
}

.site-header.mega-open .nav__brand .logo--light {
  opacity: 0;
}

.site-header.mega-open .nav__brand .logo--dark {
  opacity: 1;
}

.nav__links {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  align-items: center;
  margin-left: calc(var(--menu-start) - 110px);
}

.nav__links > .nav__item > a {
  position: relative;
  padding-bottom: 4px;
}

.nav__item {
  position: relative;
}

.mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 32px 60px 20px;
  display: none;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: stretch;
  z-index: 20;
}

.mega__section {
  display: none;
  gap: 48px;
  grid-template-columns: var(--menu-start) 1fr;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.mega__section--professional {
  display: grid;
}

.mega__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
  padding-right: 20px;
}

.mega__intro p {
  color: #8b8b8b;
}

.mega__tiles {
  display: flex;
  gap: 16px;
  height: 260px;
  width: 100%;
  max-width: 100%;
  margin-left: 50px;
  justify-content: flex-start;
  min-width: 0;
}

.mega__tile {
  flex: 1 1 0%;
  min-width: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: #cfcfcf;
  transition: flex-grow 0.35s ease, filter 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mega__tile-label {
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
  display: block;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  position: relative;
  z-index: 1;
}

.mega__tiles:hover .mega__tile {
  flex-grow: 0.7;
}

.mega__tiles .mega__tile:hover {
  flex-grow: 1.6;
}

.mega__tile--blur {
}

.mega__tiles .mega__tile--blur:hover {
}

.mega__tile-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1);
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
  z-index: 0;
  display: block;
}

.mega__tiles .mega__tile:hover .mega__tile-media {
  filter: grayscale(0);
  transform: scale(1.02);
}

.mega__tile-media--overview-leisure {
  background-position: calc(50% - 50px) center;
}

.mega__tile-media--volster-f {
  background-position: calc(50% - 20px) center;
}

.mega__tile-media--volster-e {
  transform: scale(1.5);
}

.mega__tiles .mega__tile:hover .mega__tile-media--volster-e {
  transform: scale(1.55);
}
.mega__tile--foiling .mega__tile-media {
  background-position: center;
  background-size: cover;
}

.mega__tiles .mega__tile--foiling:hover .mega__tile-media {
  background-position: center;
  transform: scale(1.02);
}

.mega__tile-media--blur {
  filter: grayscale(1) blur(2px);
}

.mega__tiles .mega__tile:hover .mega__tile-media--blur {
  filter: grayscale(0) blur(2px);
  transition: filter 0.35s ease;
}

.mega__tiles:hover .mega__tile:not(:hover) .mega__tile-label {
  font-size: clamp(10px, calc(7.5px + 0.130208vw), 12.5px);
}

.mega__tiles .mega__tile:hover .mega__tile-label {
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
}

.mega__tiles .mega__tile:nth-child(1) { background: #7f8c8d; }
.mega__tiles .mega__tile:nth-child(2) { background: #95a5a6; }
.mega__tiles .mega__tile:nth-child(3) { background: #8e9eab; }
.mega__tiles .mega__tile:nth-child(4) { background: #b0b7bd; }

.mega__menu {
  display: grid;
  gap: 10px;
  text-align: right;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  justify-self: end;
}

.mega__menu a {
  color: var(--black);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  justify-self: end;
  background-image: linear-gradient(var(--black), var(--black));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.mega__menu a:hover {
  background-size: 100% 1px;
}

.mega__bottom {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
}

.mega__socials {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
}

.mega__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mega__socials svg {
  width: 20px;
  height: 20px;
  fill: #777;
}

.nav__burger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch {
  position: relative;
}

.lang-switch__toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
}

.lang-switch__toggle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.lang-switch.is-open .lang-switch__toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.site-header:not(.mega-open) .lang-switch__toggle {
  color: var(--white);
}

.site-header.mega-open .lang-switch__toggle {
  color: var(--black);
}

body.scrolled .lang-switch__toggle {
  color: var(--black) !important;
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 96px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 30;
}

.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch__option {
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  text-align: left;
}

.lang-switch__option:hover {
  background: var(--light-gray);
}

.lang-switch__option.is-active {
  color: var(--brand-accent);
  font-weight: 600;
  cursor: default;
}

.burger {
  width: 54px;
  height: 32px;
  border: none;
  border-radius: 4px;
  background: transparent;
  display: grid;
  gap: 6px;
  padding: 8px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
}

.site-header.mega-open .burger span {
  opacity: 0;
}

.site-header.mega-open .burger::before {
  content: '×';
  display: grid;
  place-items: center;
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
  line-height: 1;
  transform: translateY(-4px);
}

.site-header:not(.mega-open) .nav__links > .nav__item > a {
  color: var(--white);
}

.site-header:not(.mega-open) .burger span {
  background: var(--white);
}

/* Default menu color (gray) — only once scrolled off the hero; the
   un-scrolled state stays white per .site-header:not(.mega-open) above. */
body.scrolled .site-header .nav__links > .nav__item > a {
  color: #8b8b8b !important;
}

/* Hover turns black */
.site-header .nav__links > .nav__item:hover > a {
  color: #000000 !important;
}

/* Active (current section) should be black, others gray */
body.scrolled .site-header[data-active="professional"] .nav__item--professional > a,
body.scrolled .site-header[data-active="leisure"] .nav__item--leisure > a,
body.scrolled .site-header[data-active="technology"] .nav__item--technology > a {
  color: #000000 !important;
}

/* Force inactive items gray based on active section */
body.scrolled .site-header[data-active="professional"] .nav__item:not(.nav__item--professional) > a,
body.scrolled .site-header[data-active="leisure"] .nav__item:not(.nav__item--leisure) > a,
body.scrolled .site-header[data-active="technology"] .nav__item:not(.nav__item--technology) > a {
  color: #8b8b8b !important;
}

.site-header.mega-open {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--light-gray);
}

.site-header.mega-open .mega {
  display: grid;
}

.site-header[data-active="professional"] .mega__section { display: none; }
.site-header[data-active="professional"] .mega__section--professional { display: grid; }
.site-header[data-active="leisure"] .mega__section { display: none; }
.site-header[data-active="leisure"] .mega__section--leisure { display: grid; }
.site-header[data-active="technology"] .mega__section { display: none; }
.site-header[data-active="technology"] .mega__section--technology { display: grid; }

.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  pointer-events: none;
}

.hero__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Source file has ~11% black letterbox bars baked in top/bottom
     (measured via canvas pixel sampling: 119px of 1080px each side).
     Scale up to crop them out of the visible frame. */
  transform: scale(1.29);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 55%);
  z-index: 1;
}

.hero__content {
  position: relative;
  max-width: 820px;
  padding: 0 24px;
  z-index: 2;
  transform: translate(350px, 200px);
  text-align: left;
  color: #ffffff;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero h1 {
  font-size: clamp(36.48px, max(min(4.56vw, 61.56px), calc(46.17px + 0.801562vw)), 76.95px);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -3px;
}

.hero p {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  margin-bottom: 24px;
  color: #ffffff;
}

.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
}

.hero__subtitle--plain {
  display: block;
}

.hero__subtitle--match {
  font-size: clamp(36.48px, max(min(4.56vw, 61.56px), calc(46.17px + 0.801562vw)), 76.95px) !important;
  font-weight: 500;
  margin-top: 0px;
  line-height: 1;
}

.hero__stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
}

body.volster-hero .hero__content {
  transform: translate(350px, 150px);
}

body.volster-hero .hero h1 {
  line-height: 0.3;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__stat-text {
  display: grid;
  line-height: 1.1;
}

.hero__stat-title {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__stat-value {
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  font-weight: 500;
}

.hero__icon {
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  flex: 0 0 54px;
  background-color: rgba(255, 255, 255, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
}

.hero__icon--speed {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 3a9 9 0 0 0-9 9h2a7 7 0 1 1 14 0h2a9 9 0 0 0-9-9z'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M13.7 10.3l4.2-4.2-1.4-1.4-4.2 4.2z'/%3E%3C/svg%3E");
}

.hero__icon--people {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zM4 20a8 8 0 0 1 16 0z'/%3E%3C/svg%3E");
}

.hero__icon--fuel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 3h8a2 2 0 0 1 2 2v16H5V5a2 2 0 0 1 2-2zm8 4V5H9v2h6zm3 6h2v6a2 2 0 0 1-2 2h-1v-2h1z'/%3E%3Cpath d='M10 9h4v7h-4z'/%3E%3C/svg%3E");
}

.hero__subtitle img {
  width: 18px;
  height: 12px;
  display: block;
}

body.hero-hidden .hero__content {
  opacity: 0;
  transform: translate(350px, 130px);
  pointer-events: none;
}

.tech-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.tech-benefits__item {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
  transition: background-size 0.5s ease;
}

.tech-benefits__item:hover {
  background-size: 112%;
}

/* Six-image overview grid stays completely static on pointer hover. */
.tech-benefits:not(.tech-benefits--wide) .tech-benefits__item {
  transition: none;
}

.tech-benefits:not(.tech-benefits--wide) .tech-benefits__item:hover {
  background-size: cover;
}

.tech-benefits__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}

.tech-benefits__label {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
  line-height: 1.25;
  font-weight: 500;
}

.tech-benefits--wide {
  display: flex;
  width: auto;
  margin-left: 0;
  padding: 0 clamp(32px, 4vw, 80px);
  gap: 16px;
}

.tech-benefits--wide .tech-benefits__item {
  flex: 1 1 0%;
  min-width: 0;
  height: max(280px, min(32svh, 22vw));
  background-size: cover;
  border-radius: 2px;
  transition: flex-grow 0.5s ease;
}

.tech-benefits--wide:hover .tech-benefits__item {
  flex-grow: 1;
}

.tech-benefits--wide .tech-benefits__item:hover {
  flex-grow: 1.5;
  background-size: cover;
}

.tech-benefits--wide .tech-benefits__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%) scale(0.8);
  border: 1.5px solid #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.tech-benefits--wide .tech-benefits__item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tech-benefits--wide .tech-benefits__label {
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-weight: 500;
  top: 24px;
  left: 24px;
}

@media (max-width: 900px) {
  .tech-benefits {
    grid-template-columns: 1fr;
  }

  .tech-benefits__item {
    height: 220px;
  }

  .tech-benefits--wide {
    flex-direction: column;
    padding: 0 20px;
  }

  .tech-benefits--wide .tech-benefits__item {
    height: 220px;
    flex-grow: 1 !important;
  }
}

.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 60px 20px;
}

.post-hero__left {
  min-height: 240px;
}

.post-hero__right {
  margin-left: -20px;
  margin-top: 110px;
  max-width: 820px;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  line-height: 1;
  color: #000000;
}

.post-hero__title {
  font-size: clamp(38.4px, calc(28.8px + 0.5vw), 48px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.post-hero__right p {
  margin-bottom: 32px;
}

.post-hero__link {
  display: inline-block;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.post-hero__link:hover {
  color: #8b8b8b;
}

.solarvess-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 160px 60px 80px;
}

.solarvess-gallery__item {
  transform: scaleX(0.99);
  overflow: hidden;
  height: 520px;
}

.solarvess-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;  object-position: top;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.solarvess-gallery__item:hover img {
  transform: scale(1.1);
}

.solarvess-captions {
  margin-top: -65px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
  gap: 15px;
  padding: 0px 60px 80px;
}

.solarvess-caption {
  display: contents;
}

.solarvess-caption h3 {
  font-size: clamp(26.4px, calc(19.8px + 0.34375vw), 33px);
  margin-bottom: 12px;
  color: #000000;
  margin-left: 10px;
}

.solarvess-caption__body {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
}

.solarvess-caption p {
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  line-height: 1.6;
  color: #000000;
  max-width: 400px;
  margin-bottom: 32px;
}

.solarvess-caption__link {
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.solarvess-caption__link:hover {
  color: #ffffff;
}

.solarvess-spotlight {
  padding: 0px 60px;
}

.solarvess-spotlight--volster {
  margin-top: 0px;
}

.solarvess-spotlight + .solarvess-spotlight {
  margin-top: 15px;
}

.solarvess-spotlight__media {
  position: relative;
  overflow: hidden;
  height: 760px;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
}

.solarvess-spotlight__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;  object-position: top center;
}

.solarvess-spotlight__content {
  position: absolute;
  left: 870px;
  top: 50%;
  transform: translateY(calc(-50% - 250px));
  color: #ffffff;
  max-width: 420px;
  text-align: left;
}

.solarvess-spotlight--solarvess .solarvess-spotlight__content {
  transform: translateY(calc(-50% - 250px));
}

.solarvess-spotlight--volster .solarvess-spotlight__content {
  transform: translateY(calc(-50% - 250px));
}

.solarvess-spotlight--volster-e .solarvess-spotlight__content {
  left: 870px;
  transform: translateY(calc(-50% - 250px));
}

.solarvess-spotlight__content h3 {
  font-size: clamp(56px, calc(42px + 0.729167vw), 70px);
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1;
}

.solarvess-spotlight__content p {
  font-size: clamp(32px, calc(24px + 0.416667vw), 40px);
  margin-bottom: 20px;
  line-height: 1;
  white-space: nowrap;
}

.solarvess-spotlight--volster-e .solarvess-spotlight__content h3 {
  color: #5f5f5f !important;
}

.solarvess-spotlight--volster-e .solarvess-spotlight__content p {
  color: #000000 !important;
}

.solarvess-spotlight--volster-e .solarvess-spotlight__actions .btn--outline-dark {
  color: #000000 !important;
  border-color: #000000 !important;
  background: transparent;
}

.solarvess-spotlight__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.founder-block {
  background: #f2f2f2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 120px;
  padding: 0;
}

.founder-block__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  min-height: 720px;
  padding: 0 60px;
  gap: 40px;
}

.founder-block__image {
  width: 100%;
  max-width: 680px;
  height: auto;
  justify-self: start;
  align-self: end;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.founder-block__content {
  color: #000000;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  line-height: 1.6;
  width: 80%;
  margin-left: 60px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  position: relative;
}

.founder-block__content p {
  font-size: clamp(24.8px, calc(18.6px + 0.322917vw), 31px);
  line-height: 1.2;
}

.founder-block__quote {
  position: absolute;
  left: -156px;
  top: -32px;
  font-size: clamp(220px, calc(165px + 2.864583vw), 275px);
  color: #1f5eff;
  line-height: 1;
}

.founder-block__name {
  margin-top: 24px;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.founder-block__title {
  margin-top: 6px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  color: #777;
}

.founder-block__inner.is-visible .founder-block__image,
.founder-block__inner.is-visible .founder-block__content {
  opacity: 1;
  transform: translateX(0);
}

.btn--blue {
  background: #1f5eff;
  border: 1px solid #1f5eff;
  color: #ffffff;
}

.btn--blue:hover {
  color: #000000;
}

.btn--outline-light {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn--outline-light:hover {
  color: #000000;
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}

.video-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.video-shell > iframe,
.video-shell > video {
  display: block;
  width: 100%;
  height: 100%;
}

.video-offline {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  text-align: center;
  z-index: 5;
  padding: 24px;
}

.video-offline.is-visible {
  display: flex;
}

.video-offline__content {
  max-width: 520px;
}

.video-offline__title {
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-weight: 600;
  margin-bottom: 8px;
}

.video-offline__text {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  line-height: 1.4;
  margin-bottom: 16px;
}

.video-offline__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mission {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.mission p {
  max-width: 640px;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  color: #000000;
}

.z-grid {
  display: grid;
  gap: 80px;
  padding: 40px 60px -15px;
}

.z-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  align-items: center;
}

.latest {
  padding: 100px 60px 120px;
}

.latest__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.latest__title {
  font-size: clamp(33.6px, calc(25.2px + 0.4375vw), 42px);
  color: #8b8b8b;
  font-weight: 400;
}

.latest__view-all {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.latest__card {
  display: block;
  color: inherit;
}

.latest__image {
  width: 100%;
  height: 300px;
  background: #e6e6e6;
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  margin-bottom: 16px;
}

.latest__card h3 {
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  margin-bottom: 8px;
  color: #000000;
}

.latest__card p {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #000000;
  margin-bottom: 12px;
}

.latest__link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
}

.tech-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
}

.tech-hero__media {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.tech-hero__content {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 70px;
  transform: translate(-50%, 0);
  color: #ffffff;
  max-width: 520px;
  text-align: center;
}

.tech-hero__label {
  font-size: clamp(34px, calc(25.5px + 0.442708vw), 42.5px);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tech-hero__content h2 {
  font-size: clamp(34px, calc(25.5px + 0.442708vw), 42.5px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #cfcfcf;
}

.blog-latest {
  padding: 80px 60px 120px;
}

.blog-latest__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.blog-latest__title {
  font-size: clamp(33.6px, calc(25.2px + 0.4375vw), 42px);
  color: #8b8b8b;
  font-weight: 400;
}

.blog-latest__view-all {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-latest__card {
  display: block;
  color: inherit;
}

.blog-latest__image {
  width: 100%;
  height: 280px;
  background: #e6e6e6;
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  margin-bottom: 16px;
}

.blog-latest__date {
  font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
  color: #000000;
  margin-bottom: 8px;
}

.blog-latest__text {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #000000;
  margin-bottom: 12px;
}

.blog-latest__link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
}

.newsletter-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e6e6e6;
  margin-top: 100px;
  padding: 120px 0;
}

.newsletter-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.newsletter-band__title {
  font-size: clamp(43.7px, calc(32.775px + 0.56901vw), 54.625px);
  color: #555555;
  margin-bottom: 20px;
}

.newsletter-band__success {
  color: #000000;
  font-size: clamp(20.8px, calc(15.6px + 0.270833vw), 26px);
  margin-bottom: 20px;
}

.newsletter-form {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-form__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
}

.newsletter-form__row--inline {
  grid-template-columns: 1fr;
}

.newsletter-form__field {
  display: grid;
  gap: 6px;
}

.newsletter-form__field--submit {
  position: relative;
  margin-bottom: 26px;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 12px 14px;
  font-family: inherit;
  font-size: clamp(18.2px, calc(13.65px + 0.236979vw), 22.75px);
  color: #000000;
  border-radius: 6px;
}

.newsletter-form__field--submit input {
  padding-right: 140px;
}

.newsletter-form__field--submit .btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 18px;
}

.newsletter-form input::placeholder {
  color: #9b9b9b;
}

.newsletter-form__error {
  color: #d62828;
  font-size: clamp(15.6px, calc(11.7px + 0.203125vw), 19.5px);
  display: none;
}

.newsletter-form__error.is-visible {
  display: block;
}

.newsletter-form__error--center {
  text-align: center;
}

.newsletter-form__field--submit .newsletter-form__error {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  width: 100%;
  text-align: center;
}

.newsletter-form__extra .newsletter-form__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-form__row--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-form__row--country {
  margin-top: 12px;
  grid-template-columns: 1fr;
}

.newsletter-form__field--country {
  grid-column: 1 / -1;
}

.newsletter-form__consent {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: clamp(15.6px, calc(11.7px + 0.203125vw), 19.5px);
  color: #000000;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: 10px;
}

.newsletter-form__consent span {
  display: block;
  max-width: 100%;
}

.newsletter-form__consent input[type='checkbox'] {
  width: 40px;
  height: 40px;
}

.newsletter-form__consent a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-form__recaptcha {
  font-size: clamp(15.6px, calc(11.7px + 0.203125vw), 19.5px);
  color: #666666;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.newsletter-form__recaptcha a {
  color: #000000;
  text-decoration: none;
}

.newsletter-form__recaptcha a:hover {
  text-decoration: underline;
}

.mega-static {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 60px 0 80px;
}

.mega-static__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  margin-left: 0;
  margin-right: 0;
  padding: 0 60px;
}

.mega-static__brand {
  display: inline-flex;
  align-items: center;
  margin-left: 40px;
}

.mega-static__brand img {
  height: var(--brand-logo-size);
  width: auto;
  display: block;
}

.mega-static__tabs {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-left: calc(var(--menu-start) - 15px);
}

.mega-static__tab {
  background: transparent;
  border: none;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  text-transform: none;
  letter-spacing: 1px;
  color: #8b8b8b;
  cursor: pointer;
}

.mega-static__tab.is-active {
  color: #ffffff;
}

.mega-static--dark {
  background: #000000;
  padding-bottom: 0;
}

.mega-static--dark .mega {
  position: static;
  transform: none;
  width: 100%;
  display: grid;
  background: #000000;
  border-color: #222222;
}

.mega-static--dark .mega__intro p,
.mega-static--dark .mega__copy,
.mega-static--dark .mega__menu a,
.mega-static--dark .mega__tile-label,
.mega-static--dark .mega__socials svg {
  color: #ffffff;
  fill: #ffffff;
}

.mega-static--dark .mega__intro p {
  color: #bfbfbf;
}

.mega-static--dark .mega__menu a {
  background-image: linear-gradient(#ffffff, #ffffff);
}

.mega-static--dark .mega__bottom {
  border-top: 1px solid #222222;
}

/* White-background footer variant — same mega-static layout, recolored
   for contact.html's footer where the section background is Navarc's
   white (#ffffff) instead of black. */
.mega-static--light {
  background: #ffffff;
  padding-bottom: 0;
}

.mega-static--light .mega {
  position: static;
  transform: none;
  width: 100%;
  display: grid;
  background: #ffffff;
  border-color: #d9d9d9;
}

.mega-static--light .mega-static__tab {
  color: #8b8b8b;
}

.mega-static--light .mega-static__tab.is-active {
  color: #000000;
}

.mega-static--light .mega__intro p,
.mega-static--light .mega__copy,
.mega-static--light .mega__menu a,
.mega-static--light .mega__tile-label,
.mega-static--light .mega__socials svg {
  color: #000000;
  fill: #000000;
}

.mega-static--light .mega__intro p {
  color: #4c4c4c;
}

.mega-static--light .mega__menu a {
  background-image: linear-gradient(#000000, #000000);
}

.mega-static--light .mega__bottom {
  border-top: 1px solid #d9d9d9;
}

.mega-static .mega__section--professional,
.mega-static .mega__section--leisure,
.mega-static .mega__section--technology {
  display: none;
}

.mega-static[data-active="professional"] .mega__section--professional,
.mega-static[data-active="leisure"] .mega__section--leisure,
.mega-static[data-active="technology"] .mega__section--technology {
  display: grid;
}

.policy {
  padding: 140px 60px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.policy h1 {
  font-size: clamp(34px, calc(25.5px + 0.442708vw), 42.5px);
  margin-bottom: 20px;
}

.policy h2 {
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy p {
  margin-bottom: 14px;
  color: #222222;
  line-height: 1.6;
}

.policy-link {
  color: #000000;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

.faq-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 60px 0;
}

.faq-hero {
  margin-bottom: 40px;
}

.faq-page--embedded {
  padding-top: 80px;
}

/* "Questions?" block embedded on contact.html — mirrors Tulkas's
   kariyer/iletisim FAQ block (centered hero, pill CTA, numbered rows)
   on the page's actual white surface. Scoped to .faq-page--embedded so
   faq.html's own light-theme numbered layout is untouched. */
.faq-page--embedded.faq-page--numbered .faq-hero {
  text-align: center;
}

.faq-page--embedded.faq-page--numbered .faq-hero__eyebrow {
  text-transform: none;
  letter-spacing: normal;
  font-size: clamp(40px, calc(30px + 0.520833vw), 50px);
  color: #8a8a8a;
  margin-bottom: 6px;
}

.faq-page--embedded.faq-page--numbered .faq-hero h1 {
  font-size: clamp(40px, calc(30px + 0.520833vw), 50px);
  font-weight: 500;
  color: #000000;
}

.faq-page--embedded.faq-page--numbered .faq-hero__cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 32px;
  border: 1px solid #000000;
  border-radius: 999px;
  color: #000000;
  text-decoration: none;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  transition: background-color 0.2s, color 0.2s;
}

.faq-page--embedded.faq-page--numbered .faq-hero__cta:hover {
  background-color: #000000;
  color: #ffffff;
}

.faq-page--embedded.faq-page--numbered .faq-list {
  border-top-color: #e3e3e3;
}

.faq-page--embedded.faq-page--numbered .faq-item {
  border-bottom-color: #e3e3e3;
}

.faq-page--embedded.faq-page--numbered .faq-item__number {
  color: #8a8a8a;
}

.faq-page--embedded.faq-page--numbered .faq-item__text {
  color: #000000;
}

.faq-page--embedded.faq-page--numbered .faq-item.is-open .faq-item__text {
  color: #000000;
}

.faq-page--embedded.faq-page--numbered .faq-item__icon {
  color: #000000;
}

.faq-page--embedded.faq-page--numbered .faq-item__answer-content,
.faq-page--embedded.faq-page--numbered .faq-item__answer-content * {
  color: #4c4c4c;
}

.faq-hero h1 {
  font-size: clamp(48px, calc(36px + 0.625vw), 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 14px;
}

.faq-hero p {
  max-width: 760px;
  color: #4c4c4c;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
}

.faq-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.faq-filter {
  border: 1px solid #d2d2d2;
  background: #ffffff;
  color: #666666;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-filter:hover,
.faq-filter.is-active {
  color: #111111;
  border-color: #111111;
}

.faq-list {
  border-top: 1px solid #e3e3e3;
}

.faq-item {
  display: none;
  border-bottom: 1px solid #e3e3e3;
}

.faq-item.is-visible {
  display: block;
}

.faq-item__question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
  color: #111111;
  padding: 22px 0;
  cursor: pointer;
}

.faq-item__icon {
  font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
  color: #8a8a8a;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer p {
  color: #3d3d3d;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.55;
  max-width: 920px;
  padding: 0 0 22px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 520px;
  width: min(520px, 90vw);
  background: #ffffff;
  padding: 24px;
  border: 1px solid #dddddd;
  z-index: 1001;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.cookie-banner__title {
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  font-weight: 600;
  margin-bottom: 6px;
  color: #000000;
}

.cookie-banner__subtitle {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
}

.cookie-banner p {
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  color: #000000;
  line-height: 1.4;
  margin-bottom: 14px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  filter: grayscale(1);
  z-index: 1000;
  pointer-events: all;
}

body.cookie-open .cookie-overlay {
  display: block;
}

body.cookie-open main,
body.cookie-open header,
body.cookie-open footer {
  pointer-events: none;
  filter: grayscale(1);
}

body.cookie-open .cookie-banner {
  pointer-events: auto;
  filter: none;
}

.z-item.reverse {
  direction: rtl;
}

.z-item.reverse .z-item__text,
.z-item.reverse .z-item__media {
  direction: ltr;
}

.z-item__media {
  background: var(--light-gray);
  height: 360px;
  border-radius: 8px;
}

.z-item__text h2 {
  font-size: clamp(28px, calc(21px + 0.364583vw), 35px);
  margin-bottom: 12px;
}

.link {
  display: inline-block;
  margin-top: 32px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--light-gray);
  padding: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__grid h4 {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  margin-bottom: 32px;
}

.footer__grid a {
  display: block;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  margin-bottom: 8px;
  color: #000000;
}

.newsletter {
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
}

.footer__bottom {
  font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
  color: #666;
  text-align: center;
}

.page {
  padding: 120px 60px 80px;
}

.page--split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.page__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  filter: grayscale(1);
}

.page__content h1 {
  font-size: clamp(38.4px, calc(28.8px + 0.5vw), 48px);
  margin-bottom: 12px;
}

.page__content p {
  margin-bottom: 24px;
  color: #555;
}

.form {
  display: grid;
  gap: 15px;
}

.form input,
.form textarea {
  padding: 12px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  font-family: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.btn--outline {
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
}

.btn--solid {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn--solid:hover {
  color: #000000;
}

.lang {
  background: transparent;
  border: 1px solid var(--mid-gray);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
}

.phone-link {
  pointer-events: none;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 24px;
  }

  .nav__links {
    display: none;
  }

  .z-item {
    grid-template-columns: 1fr;
  }

  .z-item.reverse {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .phone-link {
    pointer-events: auto;
  }

  /* === Candela-style mobile polish (mobile-only, desktop untouched) === */
  .hero {
    height: 100vh;
    height: 100dvh;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .nav {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .burger {
    min-width: 44px;
    min-height: 44px;
  }

  .lang-switch__toggle {
    min-height: 44px;
  }

  h1, .hero__content h1 {
    letter-spacing: -0.01em;
  }

  section {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .hero, .hero__content {
    padding-left: 0;
    padding-right: 0;
  }

  .post-hero__title,
  .latest__title,
  .blog-latest__title,
  section h2 {
    font-size: clamp(28px, max(min(8vw, 40px), calc(30px + 0.520833vw)), 50px);
    line-height: 1.12;
  }

  .mega__bottom {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    flex-direction: column;
  }
}
.site-header.mega-open .nav__links > .nav__item:hover > a {  color: #000000;}
.mega__menu a:hover {  color: #000000;  background-size: 100% 1px;}
body.scrolled .nav__links > .nav__item:hover > a {  color: #000000 !important;}
body.scrolled .site-header .nav__links > .nav__item > a {  color: #8b8b8b !important;}
body.scrolled .site-header .nav__links > .nav__item:hover > a {  color: #000000 !important;}

/* Force gray menu text while scrolled */
body.scrolled .site-header .nav__links > .nav__item > a,
body.scrolled .site-header[data-active="professional"] .nav__item--professional > a,
body.scrolled .site-header[data-active="leisure"] .nav__item--leisure > a,
body.scrolled .site-header[data-active="technology"] .nav__item--technology > a {
  color: #8b8b8b !important;
}

body.scrolled .site-header .nav__links > .nav__item:hover > a {
  color: #000000 !important;
}

.spotlight--volster { object-position: top; }
.solarvess-spotlight__content,.solarvess-spotlight__content h3,.solarvess-spotlight__content p,.solarvess-spotlight__actions .btn,.solarvess-spotlight__actions .btn--blue,.solarvess-spotlight__actions .btn--outline-light {  color: #ffffff !important;}

.post-hero__title--gray { color: #8b8b8b !important; }

.post-hero__title--gray { color: #8b8b8b !important; }
.post-hero__link {  text-decoration: underline;}.post-hero__link:hover {  color: #8b8b8b;}

/* Global responsive layer */
@media (max-width: 1200px) {
  :root {
    --menu-start: 44vw;
  }

  .hero__content {
    left: 220px;
  }

  .post-hero {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
  }

  .solarvess-spotlight__content {
    right: 60px;
  }
}

@media (max-width: 992px) {
  :root {
    --menu-start: 38vw;
    --brand-logo-size: 42px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    backdrop-filter: saturate(120%) blur(4px);
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav__brand {
    width: 140px;
  }

  .nav__links {
    gap: 16px;
    margin-left: 12px;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    justify-content: flex-start;
  }

  .site-header .mega,
  .site-header.mega-open .mega {
    display: none !important;
  }

  .hero__content {
    position: absolute;
    left: 30px;
    right: 24px;
    top: auto;
    bottom: 22vh;
    transform: none;
    max-width: 680px;
  }

  .hero__content h1 {
    font-size: clamp(36px, max(min(9vw, 54px), calc(40.5px + 0.703125vw)), 67.5px);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  .hero__subtitle {
    margin-top: 10px;
    font-size: clamp(14px, max(min(2.6vw, 22px), calc(16.5px + 0.286458vw)), 27.5px);
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 420px;
  }

  .post-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 56px 20px 10px;
  }

  .post-hero__right {
    margin-left: 0;
    max-width: 100%;
  }

  .solarvess-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 40px 12px 40px;
  }

  .solarvess-gallery__item {
    transform: none;
  }

  .solarvess-captions {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 14px;
    padding: 0 12px 40px;
  }

  .solarvess-caption__body {
    grid-template-columns: 1fr;
  }

  .solarvess-spotlight,
  .solarvess-spotlight--volster,
  .solarvess-spotlight + .solarvess-spotlight {
    margin-top: 20px;
  }

  .solarvess-spotlight__media {
    min-height: 540px;
  }

  .solarvess-spotlight__content,
  .solarvess-spotlight--solarvess .solarvess-spotlight__content,
  .solarvess-spotlight--volster .solarvess-spotlight__content,
  .solarvess-spotlight--volster-e .solarvess-spotlight__content {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 30px;
    transform: none;
    max-width: 90%;
  }

  .solarvess-spotlight__content h3 {
    font-size: clamp(26px, max(min(7vw, 42px), calc(31.5px + 0.546875vw)), 52.5px);
  }

  .solarvess-spotlight__content p {
    font-size: clamp(16px, max(min(2.4vw, 22px), calc(16.5px + 0.286458vw)), 27.5px);
    white-space: normal;
  }

  .solarvess-spotlight__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .founder-block {
    margin-top: 70px;
    min-height: auto;
    padding: 32px 0;
  }

  .founder-block__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .founder-block__image {
    width: min(100%, 420px);
    justify-self: center;
  }

  .founder-block__content {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .founder-block__quote {
    /* Was still position:absolute (inherited from the desktop rule) at
       a size/offset that overlapped the first line of the paragraph on
       real phone widths. Switched to static/in-flow so it sits on its
       own line above the text instead of overlapping it. */
    position: static;
    display: block;
    left: auto;
    top: auto;
    font-size: clamp(56px, calc(42px + 0.729167vw), 70px);
    line-height: 1;
    margin-bottom: 4px;
  }

  .latest {
    padding: 56px 20px 64px;
  }

  .latest__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .latest__image {
    height: 220px;
  }

  .tech-hero {
    min-height: 68vh;
  }

  .tech-hero__content {
    left: 20px;
    right: 20px;
    bottom: 36px;
    transform: none;
    max-width: none;
  }

  .blog-latest {
    padding: 70px 20px 0;
  }

  .blog-latest__grid {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    gap: 28px !important;
  }

  .blog-latest__card > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .newsletter-band {
    margin-top: 70px;
    min-height: auto;
    padding: 40px 0;
  }

  .newsletter-band__inner {
    max-width: 92%;
    padding: 0 4px;
  }

  .newsletter-form__row,
  .newsletter-form__row--inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form__field--submit .btn {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .newsletter-form__field--submit input {
    padding-right: 16px;
  }

  .newsletter-form__consent {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .mega-static {
    padding-top: 40px;
  }

  .mega-static__nav {
    padding: 0 20px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .mega-static__brand {
    margin-left: 0;
  }

  .mega-static__tabs {
    margin-left: 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .mega-static__tab {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  }

  .mega-static--dark .mega {
    padding: 14px 20px 0;
  }

  .mega-static .mega__section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-static .mega__tiles {
    min-height: 300px;
  }

  .mega-static .mega__menu {
    justify-self: stretch;
    text-align: left;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-static .mega__bottom {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-page {
    padding: 110px 20px 0;
  }

  .faq-hero h1 {
    font-size: clamp(36px, calc(27px + 0.46875vw), 45px);
  }

  .faq-item__question {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .hero__content {
    bottom: 18vh;
  }

  .hero__subtitle {
    line-height: 1.15;
  }

  .blog-latest__grid {
    grid-template-columns: 1fr;
  }

  /* Base .solarvess-spotlight has padding:0 60px (desktop) which was
     never reduced for phone widths, eating 120px total and leaving the
     image narrow with big side margins. New mobile-only override —
     the base/desktop rule itself is untouched. */
  .solarvess-spotlight {
    padding: 0 12px;
  }

  .solarvess-spotlight__media {
    min-height: 460px;
  }

  .solarvess-spotlight__content {
    left: 16px;
    right: 16px;
    bottom: 22px;
  }

  .faq-filter {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    padding: 8px 12px;
  }

  .faq-item__question {
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
    padding: 16px 0;
  }

  .faq-item__answer p {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    padding-bottom: 16px;
  }
}

/* ===== Imported: newsroom / blog / careers / media / content page styles (ported from Tulkas template, Navarc palette) ===== */

.blog-latest {
  padding: 80px 60px 120px;
}

.blog-latest__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.blog-latest__title {
  font-size: clamp(33.6px, calc(25.2px + 0.4375vw), 42px);
  color: #8b8b8b;
  font-weight: 400;
}

.blog-latest__view-all {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-latest__card {
  display: block;
  color: inherit;
}

.blog-latest__image-wrapper {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 0px;
}

.blog-latest__image {
  width: 100%;
  height: 280px;
  background: #e6e6e6;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.blog-latest__card:hover .blog-latest__image {
  transform: scale(1.05);
}

.blog-latest__date {
  font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
  color: #000000;
  margin-bottom: 8px;
}

.blog-latest__text {
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #000000;
  margin-bottom: 12px;
}

.blog-latest__link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
}

.faq-hero {
  margin-bottom: 40px;
}

.faq-hero h1 {
  font-size: clamp(48px, calc(36px + 0.625vw), 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 14px;
}

.faq-hero p {
  max-width: 760px;
  color: #4c4c4c;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
}

.faq-filter {
  border: 1px solid #d2d2d2;
  background: #ffffff;
  color: #666666;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-filter:hover,
.faq-filter.is-active {
  color: #111111;
  border-color: #111111;
}



@media (max-width: 992px) {
.blog-latest {
    padding: 70px 20px 0;
  }
.blog-latest__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
.faq-hero h1 {
    font-size: clamp(36px, calc(27px + 0.46875vw), 45px);
  }
}



@media (max-width: 640px) {
.blog-latest__grid {
    grid-template-columns: 1fr;
  }
.faq-filter {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    padding: 8px 12px;
  }
}

.blog-latest__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #111111;
}

.blog-page,
.hub-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  color: #f3f3f3;
}

.hub-card,
.blog-post-card {
  background: #0f0f10;
  border: 1px solid #242424;
}

.blog-post-card__meta {
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #9d9d9d;
  margin-bottom: 12px;
}

.faq-hero h1 {
  color: #ffffff;
}

.hub-card p,
.faq-hero p,
.blog-post-card p {
  color: #cfcfcf;
}

.media-card__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  border: 1px solid #242424;
}

.media-card__image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.media-card--logo .media-card__image {
  background-color: #000000;
  background-size: 50%;
}

.hub-card h2,
.blog-post-card h2 {
  color: #ffffff;
  font-size: clamp(28px, calc(21px + 0.364583vw), 35px);
  margin-bottom: 18px;
}

.blog-post-grid,
.hub-grid,
.media-grid {
  display: grid;
  gap: 16px;
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-post-card,
.hub-card,
.media-card {
  padding: 22px;
}

.blog-post-card h2 a,
.media-card h2 {
  color: #ffffff;
}

.blog-post-card__link {
  color: #bdbdbd;
}

.blog-post-card,
.media-card {
  display: none;
}

.blog-post-card.is-visible,
.media-card {
  display: block;
}

.hub-card--wide {
  grid-column: 1 / -1;
}

.media-card {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.media-card__image {
  position: relative;
}

.media-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 14px;
  color: #ffffff;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  font-weight: 500;
  line-height: 1.3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.blog-post-card p {
  line-height: 1.6;
}

.blog-listing {
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 40px 0;
}

.blog-listing__title {
  margin-bottom: 64px;
}

.blog-listing__title h1 {
  font-size: clamp(56px, calc(42px + 0.729167vw), 70px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
}

.blog-listing__title p {
  max-width: 640px;
  color: #b0b0b0;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  line-height: 1.6;
}

.blog-featured {
  margin-bottom: 76px;
}

.blog-featured__media {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  margin-bottom: 36px;
  background: #111111;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-featured__media:hover img {
  transform: scale(1.03);
}

.blog-featured__grid {
  display: block;
  text-align: center;
}

.blog-featured__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.blog-featured__date {
  color: #8b8b8b;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  margin-bottom: 14px;
}

.blog-featured__content h2 {
  font-size: clamp(32px, calc(24px + 0.416667vw), 40px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.blog-featured__content h2 a {
  color: #ffffff;
}

.blog-featured__content h2 a:hover {
  color: var(--brand-accent);
}

.blog-featured__content p {
  color: #c2c2c2;
  line-height: 1.65;
  margin-bottom: 24px;
}

.blog-featured__link {
  display: inline-block;
  color: var(--brand-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-featured__link:hover {
  color: var(--brand-accent-hover);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px 24px;
  margin-bottom: 60px;
}

.blog-card {
  display: none;
}

.blog-card.is-visible {
  display: block;
}

.blog-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 18px;
  background: #111111;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__date {
  color: #8b8b8b;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  margin-bottom: 8px;
}

.blog-card__title {
  color: #ffffff;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  font-weight: 500;
  line-height: 1.35;
}

.blog-card:hover .blog-card__title {
  color: var(--brand-accent);
}

.blog-loadmore {
  text-align: center;
  margin-bottom: 90px;
}

.blog-loadmore button {
  background: transparent;
  border: 1px solid #3a3a3a;
  color: #c2c2c2;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.blog-loadmore button:hover {
  border-color: var(--brand-accent);
  color: #ffffff;
}

.blog-loadmore button[hidden] {
  display: none;
}



@media (max-width: 992px) {
.blog-listing {
    padding: 110px 24px 0;
  }
.blog-listing__title h1 {
    font-size: clamp(40px, calc(30px + 0.520833vw), 50px);
  }
.blog-featured__media {
    aspect-ratio: 16 / 9;
  }
.blog-featured__grid {
    grid-template-columns: 1fr;
  }
.blog-featured__content {
    grid-column: 1;
    max-width: none;
  }
.blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 560px) {
.blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-article {
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 60px 100px;
}

.blog-article__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #242424;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  transition: color 0.2s ease;
}

.blog-article__back:hover {
  color: #ffffff;
}

.blog-article__back svg {
  flex: none;
}

.blog-article__meta {
  color: var(--brand-accent);
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.blog-article__date {
  color: #8b8b8b;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  margin-bottom: 14px;
}

.blog-article__title {
  font-size: clamp(44px, calc(33px + 0.572917vw), 55px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #ffffff;
}

.blog-article__hero {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 56px;
  background: #111111;
}

.blog-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article__lead {
  max-width: 760px;
  margin: 0 auto 40px;
}

.blog-article__lead p {
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
  line-height: 1.5;
  color: #e6e6e6;
}

.blog-article__body {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__body p {
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.75;
  color: #c2c2c2;
  margin-bottom: 22px;
}

.blog-article__cta {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-article__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-article__btn--solid {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.blog-article__btn--solid:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #ffffff;
}

.blog-article__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #3a3a3a;
}

.blog-article__btn--outline:hover {
  border-color: #ffffff;
}



@media (max-width: 992px) {
.blog-article {
    padding: 110px 24px 70px;
  }
.blog-article__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
.blog-article__title {
    font-size: clamp(34px, calc(25.5px + 0.442708vw), 42.5px);
  }
.blog-article__hero {
    aspect-ratio: 16 / 9;
  }
.blog-article__lead p {
    font-size: clamp(19px, calc(14.25px + 0.247396vw), 23.75px);
  }
}

.media-page-body {
  padding-top: 96px;
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
}



@media (max-width: 640px) {
.media-page-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.media-hero {
  position: relative;
  margin: 0 0 48px;
  border-radius: 4px;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.media-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.85) 100%);
}

.media-hero__content {
  position: relative;
  padding: 40px 24px;
  max-width: 760px;
}

.media-hero__content h1 {
  color: #ffffff;
  font-size: clamp(32px, max(min(4vw, 48px), calc(36px + 0.625vw)), 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.media-hero__content p {
  margin-top: 14px;
  color: #e2e2e2;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.5;
}

.media-landing {
  margin-bottom: 8px;
  margin-left: 24px;
  margin-right: 24px;
}

.media-landing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.media-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #141415;
  text-decoration: none;
}

.media-tile__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.media-tile--logo .media-tile__image {
  background-color: #000000;
  background-size: 42%;
}

.media-tile__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: rgba(0, 0, 0, 0.55);
  transition: background-color 180ms ease;
}

.media-tile:hover .media-tile__scrim,
.media-tile:focus-visible .media-tile__scrim {
  background: rgba(0, 0, 0, 0.72);
}

.media-tile__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #ffffff;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  font-weight: 400;
  line-height: 1.3;
}

.media-tile__caption::before {
  content: '';
  flex: none;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.media-tile:hover .media-tile__caption,
.media-tile:focus-visible .media-tile__caption {
  color: var(--brand-accent);
}

.media-tile:hover .media-tile__caption::before,
.media-tile:focus-visible .media-tile__caption::before {
  background-color: var(--brand-accent);
}

.media-page-body--browser {
  background: #181818;
  padding-top: 32px;
  padding-bottom: 40px;
  border-radius: 4px;
}

.media-landing--browser {
  margin-bottom: 0;
}

.media-landing__grid--browser {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.media-landing__grid--browser .media-tile {
  width: auto;
  aspect-ratio: 4 / 3.4;
  border-radius: 2px;
}

.media-browser-note {
  margin: 24px 0 0;
  text-align: right;
  color: #6b6b6b;
  font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
}

.media-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
  color: #6b6b6b;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
}

.media-breadcrumb__home {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  transition: color 180ms ease;
}

.media-breadcrumb__home svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.media-breadcrumb__home:hover {
  color: var(--brand-accent);
}

.media-breadcrumb__label {
  color: #ffffff;
  font-weight: 500;
}



@media (max-width: 900px) {
.media-hero {
    margin: 0 0 36px;
    min-height: 280px;
  }
.media-landing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 560px) {
.media-hero {
    min-height: 220px;
  }
.media-landing__grid {
    grid-template-columns: 1fr;
  }
}

.media-folders {
  display: grid;
  gap: 64px;
  margin: 56px 0;
}

.media-folder {
  scroll-margin-top: 120px;
  padding-top: 32px;
  border-top: 1px solid #2d2d2d;
}

.media-folder__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.media-folder__eyebrow {
  margin: 0 0 10px;
  color: var(--brand-accent);
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.media-folder__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, max(min(3vw, 44px), calc(33px + 0.572917vw)), 55px);
  font-weight: 400;
  line-height: 1.05;
}

.media-folder__header > p:last-child {
  margin: 14px 0 0;
  color: #bdbdbd;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.5;
}

.media-folder .media-card {
  border: 1px solid #242424;
  background: #0f0f10;
  transition: border-color 180ms ease, transform 180ms ease;
}

.media-folder .media-card:hover,
.media-folder .media-card:focus-visible {
  border-color: #4a4a4a;
  transform: translateY(-3px);
}

.blog-page .content-home-page__faq .faq-hero h1 {
  color: #ffffff;
}

.hub-page .content-home-page__faq .faq-hero h1 {
  color: #ffffff;
}

.contact-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  width: 100vw;
  margin-top: -120px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.contact-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.contact-hero__content {
  position: absolute;
  right: calc(20% - 220px);
  bottom: 18%;
  z-index: 2;
  color: #ffffff;
  text-align: left;
  max-width: 980px;
}

.contact-hero__content h1 {
  font-size: clamp(43.2px, max(min(5.4vw, 73.8px), calc(55.35px + 0.960937vw)), 92.25px);
  line-height: 0.95;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-hero__line {
  font-size: clamp(43.2px, max(min(5.4vw, 73.8px), calc(55.35px + 0.960937vw)), 92.25px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.contact-hero__made {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(17.6px, calc(13.2px + 0.229167vw), 22px);
  color: #ffffff;
}

.contact-hero__made img {
  width: 20px;
  height: auto;
}

/* Desktop contact split section — mirrors Tulkas .contact-split-section
   exactly (content.html / contact.html both already reference these
   classes; only the CSS backing them was missing). */
.contact-split-section {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e5e5e5;
  min-height: 500px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (min-width: 900px) {
  .contact-split-section {
    flex-direction: row;
  }
}

.contact-split-left {
  flex: 1;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.contact-split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-split-map {
  flex: 1;
  min-height: 400px;
}

#contact-map {
  width: 100%;
  height: 100%;
  background-color: #e5e3df;
  z-index: 1;
}

.custom-contact-marker {
  background-color: #000;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.38);
}

.custom-contact-marker svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-block {
  max-width: 400px;
  margin: 0 auto;
}

.contact-info-block h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.contact-info-block p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 0.2rem;
  line-height: 1.5;
}

.contact-socials {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  transition: background-color 0.3s;
}

.contact-socials a:hover {
  background-color: #444;
}

.contact-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form-section {
  background-color: #ffffff;
  color: #000000;
  padding: 6rem 20px;
  border-top: 1px solid #e5e5e5;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.contact-form-container p.subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact-form-container .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 1.2rem;
  background-color: transparent;
  border: 1px solid #cccccc;
  color: #000000;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
  outline: none;
  border-color: #000000;
}

.contact-form-container textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-container button {
  width: 100%;
  padding: 1.2rem;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form-container button:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

.contact-form-container button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Desktop careers/connect-apply.html ("profile" form) and
   careers/basvuru-durumu.html (status lookup) — mirrors Tulkas's
   kariyer/connect/profil and kariyer/basvuru-durumu desktop layout.
   New, non-overlapping class names; scoped .form-group under
   .profile-content so it never touches unrelated forms. */
.profile-wrapper {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 7.5rem 2rem 4rem;
}

.profile-content {
  width: 100%;
  max-width: 520px;
}

.profile-back {
  display: inline-block;
  color: #666666;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.profile-back:hover {
  color: #000000;
}

.profile-content h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.profile-content .profile-subtitle {
  color: #666666;
  font-size: 1rem;
  margin: 0 0 2rem;
}

.profile-dept-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f2f2f2;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 2rem;
}

.profile-dept-chip span.label {
  color: #666666;
}

.profile-content .form-group {
  margin-bottom: 1.25rem;
}

.profile-content .form-group label {
  display: block;
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.profile-content .form-group input,
.profile-content .form-group textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: #000000;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.profile-content .form-group input:focus,
.profile-content .form-group textarea:focus {
  outline: none;
  border-color: #000000;
}

.profile-content .form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.profile-submit {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  margin-top: 0.5rem;
}

.profile-submit:hover {
  background-color: #333333;
  color: #000000;
  transform: translateY(-1px);
}

.status-wrapper {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 7.5rem 2rem 4rem;
}

.status-content {
  width: 100%;
  max-width: 560px;
}

.status-back {
  display: inline-block;
  color: #666666;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.status-back:hover {
  color: #000000;
}

.status-content h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.status-content .status-subtitle {
  color: #666666;
  font-size: 1rem;
  margin: 0 0 2rem;
}

.status-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.status-form input {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: #000000;
  font-family: inherit;
  box-sizing: border-box;
}

.status-form input:focus {
  outline: none;
  border-color: #000000;
}

.status-form button {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.status-form button:hover {
  color: #000000;
  background-color: #cccccc;
}

@media (max-width: 992px) {
.hub-grid,
.blog-post-grid,
.media-grid {
    grid-template-columns: 1fr;
  }
.blog-page,
.hub-page {
    padding: 120px 20px 60px;
  }
.contact-hero__content {
    left: 20px;
    right: 20px;
    bottom: 36px;
    text-align: left;
  }
}

.faq-section--embedded {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px var(--faq-gutter) 80px;
}

.faq-section .faq-hero h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(48px, calc(36px + 0.625vw), 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.faq-section > .faq-hero {
  text-align: center;
}

.faq-section > .faq-hero p {
  margin-left: auto;
  margin-right: auto;
}

.faq-section .faq-filter:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}

.faq-section .faq-filter:focus-visible {
  outline-color: var(--brand-accent);
  outline-offset: 2px;
}



@media (max-width: 992px) {
.faq-section--embedded {
    padding: 72px var(--faq-gutter) 60px;
  }
.faq-section .faq-hero h2 {
    font-size: clamp(36px, calc(27px + 0.46875vw), 45px);
  }
}



@media (max-width: 640px) {
.faq-section--embedded {
    padding-top: 56px;
  }
}



@media (prefers-reduced-motion: reduce) {
.faq-section .faq-filter {
    transition-duration: 0.01ms;
  }
}

.newsroom {
  --nr-page: #050608;
  --nr-surface: #0b0e13;
  --nr-accent: var(--brand-accent);
  --nr-line: #28292b;
  --nr-muted: #969797;
  --nr-text: #d5d7da;
  --nr-gap: clamp(8px, 0.84vw, 16px);
  --nr-gutter: clamp(24px, 4.2vw, 80px);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 122px;
  overflow-x: hidden;
  overflow-x: clip;
  color: #f5f7fb;
  background: var(--nr-page);
}

.newsroom-eyebrow {
  margin: 0;
  color: var(--nr-accent);
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.newsroom-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  padding: 72px var(--nr-gutter) 40px;
  border-bottom: 1px solid var(--nr-line);
}

.newsroom-hero__main {
  min-width: 0;
  grid-column: 2;
}

.newsroom-hero__title {
  max-width: none;
  margin: 0;
  color: #f5f7fb;
  font-size: clamp(22px, max(min(2.25vw, 36px), calc(27px + 0.46875vw)), 45px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.newsroom-hero__text {
  max-width: none;
  margin: 24px 0 0;
  color: var(--nr-muted);
  font-size: clamp(22px, max(min(1.8vw, 25px), calc(18.75px + 0.325521vw)), 31.25px);
  font-weight: 400;
  line-height: 1;
}

.newsroom-slider {
  position: relative;
  padding: 124px var(--nr-gutter) 148px;
  border-bottom: 1px solid var(--nr-line);
  background: var(--nr-page);
}

.newsroom-slider--releases {
  background: var(--black);
}

.newsroom-slider--related {
  background: var(--nr-surface);
}

.newsroom-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.newsroom-slider__head h2 {
  margin: 0;
  color: #f5f7fb;
  font-size: clamp(40px, max(min(3.15vw, 62px), calc(46.5px + 0.807292vw)), 77.5px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.newsroom-slider__nav {
  position: absolute;
  z-index: 3;
  top: var(--nr-arrow-y, 50%);
  right: max(8px, calc(var(--nr-gutter) - 29px));
  left: max(8px, calc(var(--nr-gutter) - 29px));
  display: flex;
  justify-content: space-between;
  flex: none;
  gap: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.newsroom-slider.is-static .newsroom-slider__nav {
  visibility: hidden;
  pointer-events: none;
}

.newsroom-arrow {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(74, 91, 98, 0.08);
  border-radius: 50%;
  background: #dce8ec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #526167;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.newsroom-arrow span {
  position: relative;
  width: 27px;
  height: 20px;
  display: block;
  flex: none;
  overflow: hidden;
  font-size: 0;
}

.newsroom-arrow span::before {
  content: '';
  position: absolute;
  top: 9.25px;
  right: 3px;
  left: 1px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.newsroom-arrow span::after {
  content: '';
  position: absolute;
  top: 3.75px;
  right: 4px;
  width: 12.5px;
  height: 12.5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.newsroom-arrow[data-slider-prev] span {
  transform: rotate(180deg);
}

.newsroom-arrow:hover:not(:disabled) {
  color: #354247;
  background: #eef5f7;
  border-color: rgba(74, 91, 98, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.newsroom-arrow:disabled {
  opacity: 0.55;
  cursor: default;
}

.newsroom-arrow:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.newsroom-arrow:focus-visible,
.newsroom-slider__track:focus-visible,
.newsroom-card:focus-visible,
.newsroom-link-btn:focus-visible,
.newsroom-back:focus-visible {
  outline: 2px solid var(--nr-accent);
  outline-offset: 4px;
}

.newsroom-slider__track {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max(320px, calc((100% - var(--nr-gap)) / 2));
  column-gap: var(--nr-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.newsroom-slider__track::-webkit-scrollbar {
  display: none;
}

.newsroom-card {
  min-width: 0;
  display: block;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
}

.newsroom-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #15181d;
  background-color: #111419;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 180ms ease, transform 240ms ease, border-color 180ms ease;
}

.newsroom-card__body {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--nr-gap);
  padding-top: 24px;
}

.newsroom-card__meta {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0;
  font-size: clamp(16px, max(min(1.05vw, 20px), calc(15px + 0.260417vw)), 25px);
  font-weight: 400;
  line-height: 1.2;
}

.newsroom-card__category {
  color: var(--nr-accent);
}

.newsroom-card__label {
  color: var(--nr-muted);
}

.newsroom-card__title {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #f5f7fb;
  font-size: clamp(16px, max(min(1.05vw, 20px), calc(15px + 0.260417vw)), 25px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.newsroom-card:hover .newsroom-card__media,
.newsroom-card:focus-visible .newsroom-card__media {
  opacity: 0.82;
  transform: scale(0.995);
  border-color: #3f434a;
}

.newsroom-card:hover .newsroom-card__title,
.newsroom-card:focus-visible .newsroom-card__title {
  color: #bdc9dd;
}

.newsroom:not(.newsroom--article) > .newsroom-hero,
.newsroom:not(.newsroom--article) > .newsroom-slider,
.newsroom:not(.newsroom--article) > .newsroom-press,
.newsroom:not(.newsroom--article) > .faq-section--embedded {
  background: var(--black);
}

.newsroom:not(.newsroom--article) > .newsroom-slider {
  padding: 32px var(--nr-gutter);
}

.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__head {
  margin-bottom: 24px;
}

.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__head h2 {
  font-size: clamp(36px, max(min(2.7vw, 52px), calc(39px + 0.677083vw)), 65px);
}

.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__track {
  grid-auto-columns: max(360px, 42.5%);
}

.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-card__body {
  padding-top: 16px;
}

.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-card__meta,
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-card__title {
  font-size: clamp(14px, max(min(0.9vw, 17px), calc(12.75px + 0.221354vw)), 21.25px);
  line-height: 1.2;
}

.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-arrow {
  width: 50px;
  height: 50px;
}

.newsroom-press {
  min-height: clamp(300px, 18vw, 340px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  padding: clamp(36px, 3vw, 48px) var(--nr-gutter);
  border-bottom: 1px solid var(--nr-line);
  background: var(--nr-page);
}

.newsroom-press__main {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(24px, 4vw, 72px);
}

.newsroom-press__main .newsroom-eyebrow {
  color: #73777d;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  letter-spacing: 2px;
}

.newsroom-press__title {
  max-width: none;
  margin: 18px 0 0;
  color: #f5f7fb;
  font-size: clamp(32px, max(min(2.15vw, 40px), calc(30px + 0.520833vw)), 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.newsroom-press__title a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.newsroom-press__title a:hover {
  color: var(--nr-accent);
}

.newsroom-press__text {
  max-width: none;
  margin: 18px 0 0;
  color: var(--nr-muted);
  font-size: clamp(15px, max(min(0.95vw, 18px), calc(13.5px + 0.234375vw)), 22.5px);
  line-height: 1.35;
}

.newsroom-press__actions {
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  justify-self: stretch;
  gap: clamp(20px, 2.2vw, 40px);
  padding-top: 0;
  box-sizing: border-box;
}

.newsroom-link-btn {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border: 1px solid var(--nr-accent);
  border-radius: 999px;
  color: #f5f7fb;
  background: var(--nr-accent);
  text-align: center;
  text-decoration: none;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-weight: 500;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.newsroom-link-btn:hover {
  color: #ffffff;
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
}

.newsroom-press__actions .newsroom-link-btn {
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 62px;
  padding: 16px 32px;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
}

.newsroom .faq-section--embedded {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.newsroom--article {
  background: var(--nr-page);
}

.newsroom-article__head {
  min-height: 510px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
  padding: 110px var(--nr-gutter) 86px;
  border-bottom: 1px solid var(--nr-line);
}

.newsroom-article__meta,
.newsroom-article__heading {
  min-width: 0;
}

.newsroom-article__heading {
  display: grid;
  gap: 18px;
}

.newsroom-back {
  display: inline-block;
  color: var(--nr-muted);
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.newsroom-back:hover {
  color: #f5f7fb;
}

.newsroom-article__date {
  margin: 0;
  color: var(--nr-muted);
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
}

.newsroom-article__title {
  max-width: 960px;
  margin: 10px 0 0;
  color: #f5f7fb;
  font-size: clamp(48px, max(min(5.4vw, 104px), calc(78px + 1.354167vw)), 130px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.newsroom-article__media {
  width: calc(100% - 2 * var(--nr-gutter));
  min-height: max(50vh, 685px);
  margin: 0 var(--nr-gutter);
  overflow: hidden;
  border: 1px solid var(--nr-line);
  background: #111419;
}

.newsroom-article__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.newsroom-article__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding: 104px var(--nr-gutter) 132px;
  border-bottom: 1px solid var(--nr-line);
}

.newsroom-article__content {
  grid-column: 2;
  max-width: 820px;
  display: grid;
  justify-items: start;
  gap: 26px;
}

.newsroom-article__content p {
  margin: 0;
  color: var(--nr-text);
  font-size: clamp(17px, max(min(1vw, 20px), calc(15px + 0.260417vw)), 25px);
  line-height: 1.72;
}

.newsroom-article__content .newsroom-article__lead {
  margin-bottom: 16px;
  color: #f5f7fb;
  font-size: clamp(28px, max(min(2.1vw, 42px), calc(31.5px + 0.546875vw)), 52.5px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.newsroom-article__content .newsroom-link-btn {
  min-width: 280px;
  margin-top: 24px;
}



@media (max-width: 1024px) {
.newsroom {
    padding-top: 104px;
  }
.newsroom-hero,
.newsroom-article__head,
.newsroom-article__body {
    grid-template-columns: 1fr;
  }
.newsroom-hero {
    min-height: auto;
    gap: 42px;
    padding-top: 76px;
    padding-bottom: 74px;
  }
.newsroom-hero__text {
    margin-top: 30px;
  }
.newsroom-hero__main {
    grid-column: 1;
  }
.newsroom-slider {
    padding-top: 84px;
    padding-bottom: 96px;
  }
.newsroom:not(.newsroom--article) > .newsroom-slider {
    padding-top: 28px;
    padding-bottom: 28px;
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__head {
    margin-bottom: 20px;
  }
.newsroom-press {
    min-height: 300px;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
.newsroom-press__main {
    min-height: 0;
    padding-right: 0;
  }
.newsroom-press__actions {
    width: 100%;
    min-height: 0;
    align-items: flex-end;
    justify-self: stretch;
    gap: 32px;
    padding-top: 0;
  }
.newsroom-press__actions .newsroom-link-btn {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }
.newsroom-article__head {
    min-height: auto;
    gap: 46px;
    padding-top: 88px;
    padding-bottom: 74px;
  }
.newsroom-article__media {
    min-height: min(50vh, 466px);
  }
.newsroom-article__body {
    padding-top: 76px;
    padding-bottom: 96px;
  }
.newsroom-article__content {
    grid-column: 1;
    max-width: 820px;
  }
}



@media (max-width: 640px) {
.newsroom {
    padding-top: 88px;
  }
.newsroom-eyebrow {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    letter-spacing: 1.8px;
  }
.newsroom-hero {
    gap: 30px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
.newsroom-hero__text {
    margin-top: 23px;
  }
.newsroom-slider {
    padding-top: 64px;
    padding-bottom: 76px;
  }
.newsroom:not(.newsroom--article) > .newsroom-slider {
    padding-top: 24px;
    padding-bottom: 24px;
  }
.newsroom-slider__head {
    align-items: flex-end;
    margin-bottom: 36px;
  }
.newsroom-slider__head h2 {
    font-size: clamp(34px, max(min(10vw, 42px), calc(31.5px + 0.546875vw)), 52.5px);
  }
.newsroom-arrow {
    width: 48px;
    height: 48px;
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__head {
    margin-bottom: 18px;
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__head h2 {
    font-size: clamp(28px, max(min(8.5vw, 36px), calc(27px + 0.46875vw)), 45px);
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-slider__track {
    grid-auto-columns: min(82vw, 360px);
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-card__body {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 13px;
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-card__meta,
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-card__title {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  }
.newsroom:not(.newsroom--article) > .newsroom-slider .newsroom-arrow {
    width: 44px;
    height: 44px;
  }
.newsroom-press {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
.newsroom-press__main .newsroom-eyebrow {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  }
.newsroom-press__title {
    margin-top: 14px;
    font-size: clamp(28px, max(min(8vw, 32px), calc(24px + 0.416667vw)), 40px);
  }
.newsroom-press__text {
    margin-top: 16px;
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  }
.newsroom-press__actions,
.newsroom-link-btn {
    width: 100%;
  }
.newsroom-press__actions {
    align-items: stretch;
    gap: 12px;
  }
.newsroom-link-btn {
    min-height: 60px;
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  }
.newsroom-press__actions .newsroom-link-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 12px 20px;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  }
.newsroom-article__head {
    gap: 38px;
    padding-top: 66px;
    padding-bottom: 62px;
  }
.newsroom-article__title {
    font-size: clamp(42px, max(min(12vw, 56px), calc(42px + 0.729167vw)), 70px);
  }
.newsroom-article__media {
    width: calc(100% - 2 * var(--nr-gutter));
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
.newsroom-article__media img {
    min-height: 0;
    aspect-ratio: inherit;
  }
.newsroom-article__body {
    padding-top: 60px;
    padding-bottom: 76px;
  }
.newsroom-article__content .newsroom-article__lead {
    font-size: clamp(28px, calc(21px + 0.364583vw), 35px);
  }
}



@media (prefers-reduced-motion: reduce) {
.newsroom-card__media,
.newsroom-card__title,
.newsroom-arrow,
.newsroom-link-btn {
    transition: none;
  }
}

.career-body {
  background: #000000;
  color: #ffffff;
}

.career-connect-body {
  background: #ffffff;
}

.career-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item > a,
.career-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item:hover > a {
  color: #ffffff !important;
}

.career-body:not(.scrolled) .site-header:not(.mega-open) .burger span {
  background: #ffffff !important;
}

.career-page {
  --career-ink: #ffffff;
  --career-muted: #b8b8b8;
  --career-surface: #000000;
  --career-dark: #000000;
  --career-line: #292929;
  --career-gutter: 20px;
  overflow: hidden;
  background: #000000;
  color: var(--career-ink);
}

.career-page h1,
.career-page h2,
.career-page h3,
.career-page p {
  margin: 0;
}

.career-shell {
  width: min(calc(100% - (var(--career-gutter) * 2)), 1065px);
  margin-inline: auto;
}

.career-shell--wide {
  width: min(calc(100% - (var(--career-gutter) * 2)), 1200px);
}

.career-section {
  padding: 80px 0;
}

.career-section__heading {
  margin-bottom: 48px;
}

.career-section__heading--center {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.career-section__heading h2,
.career-culture h2 {
  color: var(--career-ink);
  font-size: clamp(34px, max(min(3.15vw, 40px), calc(30px + 0.520833vw)), 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.career-section__heading p {
  margin-top: 22px;
  color: var(--career-muted);
  font-size: clamp(21px, calc(15.75px + 0.273437vw), 26.25px);
  line-height: 1.5;
}

.career-hero {
  position: relative;
  display: grid;
  min-height: max(700px, 100svh);
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.career-hero__media,
.career-hero__shade {
  position: absolute;
  inset: 0;
}

.career-hero__media {
  z-index: -2;
  background-image: url('../career-photos/photo-34.jpg');
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.career-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.04));
}

.career-hero__content {
  width: min(calc(100% - 40px), 1040px);
  padding: 126px 0 108px;
  text-align: center;
}

.career-hero h1 {
  max-width: 1040px;
  margin-inline: auto;
  color: #ffffff;
  font-size: clamp(56px, max(min(5.7vw, 72px), calc(54px + 0.9375vw)), 90px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.34);
}

.career-hero__actions {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6.25vw, 80px);
  margin-top: 38px;
}

.career-hero__lead {
  max-width: 640px;
  margin: 22px auto 0;
  color: #e6e6e6;
  font-size: clamp(19px, calc(14.25px + 0.247396vw), 23.75px);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.career-location-back {
  display: inline-block;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.career-location-back:hover {
  opacity: 1;
}

.career-location__all-jobs {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.career-pill {
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #000000;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.career-pill:hover {
  background: var(--brand-accent);
  color: #000000;
  transform: translateY(-2px);
}

.career-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #ffffff;
  transform: translateX(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.career-hero__scroll:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, 3px);
}

.career-hero__scroll svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  animation: career-scroll-bounce 1.8s ease-in-out infinite;
}



@media (prefers-reduced-motion: reduce) {
.career-hero__scroll svg {
    animation: none;
  }
}

.career-introduction {
  padding: 80px 0;
  background: #000000;
  scroll-margin-top: 0;
}

.career-introduction__inner {
  max-width: 690px;
  text-align: center;
}

.career-introduction p {
  color: var(--career-ink);
  font-size: clamp(32px, max(min(3.15vw, 40px), calc(30px + 0.520833vw)), 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.career-opportunities {
  padding-top: 40px;
  background: #000000;
}

.career-opportunity-grid {
  display: grid;
  max-width: 820px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.career-departments {
  background: var(--career-surface);
}

.career-department-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 60px;
}

.career-department-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--career-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  isolation: isolate;
}

.career-department-card img,
.career-department-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.career-department-card img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.career-department-card__shade {
  z-index: -1;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.84) 100%);
}

.career-department-card h3 {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #ffffff;
  font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.career-department-card:hover img {
  transform: scale(1.04);
}

.career-department-card.candela-style {
  background: var(--career-dark, #000000);
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.career-department-card.candela-style:hover {
  background: #101010;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.career-department-card.candela-style .career-department-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.career-department-card.candela-style img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.career-department-card.candela-style .career-department-card__content {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-department-card.candela-style h3 {
  position: static;
  color: #ffffff;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-weight: 500;
}

.career-department-card.candela-style p {
  color: #a0a0a0;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  margin: 0;
}

.career-culture {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    'copy gallery'
    'mosaic-first mosaic-second';
  background: var(--career-dark);
  color: #ffffff;
}

.career-culture__copy {
  display: grid;
  min-height: 620px;
  min-width: 0;
  grid-area: copy;
  place-items: center;
  padding: 80px 60px;
}

.career-culture__copy-inner {
  width: min(100%, 600px);
}

.career-culture h2 {
  color: #ffffff;
}

.career-culture__list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.career-culture__list p {
  color: #ffffff;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  line-height: 1.48;
}

.career-culture__gallery {
  position: relative;
  min-height: 620px;
  min-width: 0;
  grid-area: gallery;
  overflow: hidden;
  background: #111111;
  cursor: grab;
  touch-action: pan-y;
}

.career-culture__gallery.is-dragging {
  cursor: grabbing;
}

.career-culture__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.career-culture__slides.is-dragging {
  transition: none;
}

.career-culture__slide {
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  user-select: none;
}

.career-culture__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}

.career-culture__dots {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.career-culture__dots button {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.career-culture__dots button:hover {
  transform: scale(1.08);
}

.career-culture__dots button.is-active {
  border-color: #000000;
  background: #000000;
}

.career-culture__mosaic {
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #111111;
}

.career-culture__mosaic--first {
  grid-area: mosaic-first;
}

.career-culture__mosaic--second {
  grid-area: mosaic-second;
}

.career-culture__mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-location {
  display: grid;
  min-height: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--career-line);
  background: #000000;
  color: #ffffff;
}

.career-location__directions {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 72px var(--career-gutter);
}

.career-location__content {
  width: min(100%, 376px);
  text-align: center;
}

.career-location__city {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  line-height: 1.3;
  text-align: left;
}

.career-location__toggle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.career-location__toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

.career-location__toggle.is-open {
  transform: rotate(180deg);
}

.career-location__options {
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.career-location__options[hidden] {
  display: none;
}

.career-location__option {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #000000;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.career-location__options li:first-child .career-location__option {
  border-top: none;
}

.career-location__option:hover {
  background: #f2f2f2;
}

.career-location__option.is-active {
  font-weight: 600;
  color: var(--brand-accent);
}

.career-location address {
  margin-top: 30px;
  color: #ffffff;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
}

.career-location__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.career-location__links > a {
  display: inline-block;
  color: #ffffff;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: color 0.2s ease;
}

.career-location__links > a:hover {
  color: var(--brand-accent);
}

.career-location__map {
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  background: #dfe3e5;
}

.career-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.72) saturate(0.55) contrast(0.92);
}

.career-about {
  padding: 80px 0;
  border-top: 1px solid var(--career-line);
  background: #000000;
  color: #ffffff;
}

.career-about__inner {
  max-width: 650px;
  text-align: center;
}

.career-about h2 {
  color: #ffffff;
  font-size: clamp(34px, max(min(3.15vw, 40px), calc(30px + 0.520833vw)), 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.career-about__inner > p {
  margin-top: 24px;
  color: var(--career-muted);
  font-size: clamp(21px, calc(15.75px + 0.273437vw), 26.25px);
  line-height: 1.5;
}

.career-referral {
  padding: 80px 0;
  background-color: #ffffff;
}

.career-referral__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 1200px;
}

.career-referral__top-label {
  color: #ffffff;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
}

.career-referral__inner {
  max-width: 1200px;
  padding: 48px 40px;
  border-radius: 4px;
  background: radial-gradient(120% 160% at 50% 0%, #1c1c1c 0%, #0a0a0a 60%, #000000 100%);
  border: 1px solid var(--career-line);
  text-align: center;
}

.career-referral h2 {
  color: var(--career-ink);
  font-size: clamp(28px, max(min(2.6vw, 34px), calc(25.5px + 0.442708vw)), 42.5px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.career-referral p {
  margin-top: 18px;
  color: var(--career-muted);
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.5;
}

.career-referral .career-pill {
  margin-top: 32px;
}

.career-pill--light {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.career-pill--light:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #ffffff;
}

.career-about__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 42px;
}

.career-about__facts div {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  line-height: 1.4;
}

.career-about__facts dt {
  font-weight: 700;
}

.career-about__facts dd {
  margin: 0;
  color: #000000;
}

.career-page a:focus-visible,
.career-page button:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 4px;
}



@media (max-width: 1023px) {
.career-hero {
    min-height: 100svh;
  }
.career-hero h1 {
    font-size: clamp(56px, calc(42px + 0.729167vw), 70px);
  }
.career-department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
.career-culture {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      'copy'
      'gallery'
      'mosaic-first'
      'mosaic-second';
  }
.career-culture__copy {
    min-height: 0;
    padding: 80px var(--career-gutter);
  }
.career-culture__gallery {
    min-height: 540px;
  }
.career-location {
    grid-template-columns: 1fr;
  }
.career-location__directions {
    min-height: 440px;
  }
.career-location__map,
.career-location__map iframe {
    min-height: 450px;
  }
}



@media (max-width: 639px) {
.career-section,
.career-introduction,
.career-about,
.career-referral {
    padding-top: 64px;
    padding-bottom: 64px;
  }
.career-referral__inner {
    padding: 40px 24px;
    border-radius: 4px;
  }
.career-hero__content {
    width: calc(100% - 40px);
    padding-top: 112px;
  }
.career-hero h1 {
    font-size: clamp(40px, calc(30px + 0.520833vw), 50px);
    line-height: 1.12;
  }
.career-hero__actions {
    width: min(100%, 360px);
    flex-direction: column;
    gap: 12px;
    margin: 32px auto 0;
  }
.career-pill {
    width: 100%;
    min-width: 0;
  }
.career-hero__scroll {
    bottom: 22px;
  }
.career-introduction p {
    font-size: clamp(30px, calc(22.5px + 0.390625vw), 37.5px);
  }
.career-opportunities {
    padding-top: 24px;
  }
.career-section__heading {
    margin-bottom: 36px;
  }
.career-section__heading p {
    margin-top: 18px;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
.career-opportunity-grid,
.career-department-grid {
    grid-template-columns: 1fr;
  }
.career-department-grid {
    gap: 20px;
  }
.career-department-card h3 {
    right: 18px;
    bottom: 17px;
    left: 18px;
    font-size: clamp(21px, calc(15.75px + 0.273437vw), 26.25px);
  }
.career-culture__copy {
    padding-top: 64px;
    padding-bottom: 64px;
  }
.career-culture__list {
    gap: 14px;
    margin-top: 28px;
  }
.career-culture__list p {
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
.career-culture__gallery {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
.career-culture__dots {
    bottom: 22px;
  }
.career-culture__dots button {
    width: 17px;
    height: 17px;
  }
.career-culture__mosaic {
    aspect-ratio: 4 / 3;
  }
.career-location__directions {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }
.career-location__city {
    min-height: 62px;
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  }
.career-location address,
.career-location__links > a {
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
.career-location__map,
.career-location__map iframe {
    min-height: 340px;
  }
.career-about__inner > p {
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
.career-about__facts {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }
.career-about__facts div {
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
}



@media (prefers-reduced-motion: reduce) {
.career-pill,
.career-hero__scroll,
.career-department-card img,
.career-culture__slides,
.career-culture__dots button {
    transition: none;
  }
}

.candela-style-footer {
  background: var(--career-dark, #000000);
  color: #ffffff;
  padding: 80px 40px;
}

.candela-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.candela-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.candela-footer-col h4 {
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  font-weight: 400;
  margin-bottom: 8px;
  color: #ffffff;
}

.candela-footer-col a {
  color: var(--career-muted, #a0a0a0);
  text-decoration: none;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  transition: opacity 0.2s;
}

.candela-footer-col a:hover {
  opacity: 0.6;
}

.candela-footer-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.candela-main-link {
  color: #ffffff !important;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  margin-bottom: 12px;
}

.candela-socials {
  display: flex;
  gap: 16px;
}

.candela-socials svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.candela-bottom-referral {
  border-top: none;
  background: var(--career-dark);
}


@media (max-width: 768px) {
.candela-footer-grid {
    grid-template-columns: 1fr;
  }
.candela-footer-right {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
  }
}

.media-hero__brand-box {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.media-hero__brand-logo {
  background: #000000;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-hero__brand-logo img {
  height: 60px;
  width: auto;
}

.media-hero__brand-text {
  padding: 0 24px;
  color: #ffffff;
  font-size: clamp(40px, calc(30px + 0.520833vw), 50px);
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}


@media (max-width: 640px) {
.media-hero__brand-text {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    padding: 0 16px;
  }
.media-hero__brand-logo {
    padding: 12px 16px;
  }
.media-hero__brand-logo img {
    height: 32px;
  }
}

.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;
}

.faq-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  color: #8a8a8a;
  margin-bottom: 10px;
}
.faq-hero__cta {
  display: inline-block;
  margin-top: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-page--numbered .faq-item__question {
  display: grid;
  grid-template-columns: 50% minmax(0, 1fr) 24px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-item__number {
  color: #9d9d9d;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  text-align: left;
}

.faq-item__text {
  color: #111111;
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  padding-right: 20px;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item.is-open .faq-item__text {
  color: var(--brand-accent);
}

.faq-page--numbered .faq-item__icon {
  color: var(--brand-accent);
  justify-self: end;
  font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
  line-height: 1;
}

.faq-item__answer-content {
  padding-left: 50%;
  padding-right: 24px;
  padding-bottom: 22px;
  text-align: left;
}

.faq-item__answer-content,
.faq-item__answer-content * {
  color: #3d3d3d;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .faq-page--numbered .faq-item__question {
    grid-template-columns: 40px minmax(0, 1fr) 24px;
  }
  .faq-item__answer-content {
    padding-left: 40px;
  }
}

/* ===== Newsroom light theme override (Candela reference) ===== */
.newsroom {
  --nr-page: var(--white);
  --nr-surface: var(--brand-surface);
  --nr-line: var(--brand-line);
  --nr-muted: var(--brand-muted);
  --nr-text: var(--brand-copy);
  background: var(--nr-page);
  color: #000000;
}
.newsroom-hero__title,
.newsroom-slider__head h2,
.newsroom-card__title,
.newsroom-press__title,
.newsroom-press__title a,
.newsroom-article__title {
  color: #000000;
}
.newsroom-card:hover .newsroom-card__title,
.newsroom-card:focus-visible .newsroom-card__title {
  color: var(--brand-accent);
}
.newsroom-card__media {
  border-color: var(--brand-line);
  background-color: var(--brand-surface);
}
.newsroom-arrow {
  border-color: var(--brand-line);
  color: #000000;
  background: #ffffff;
}
.newsroom-arrow:hover:not(:disabled) {
  color: #ffffff;
  border-color: var(--brand-accent);
  background: var(--brand-accent);
}
.newsroom-back {
  color: #000000;
}
.newsroom-back:hover {
  color: var(--brand-accent);
}
.newsroom-article__content .newsroom-article__lead {
  color: #000000;
}
.newsroom-article__body,
.newsroom-article__head {
  background: #ffffff;
}
.newsroom:not(.newsroom--article) > .newsroom-hero,
.newsroom:not(.newsroom--article) > .newsroom-slider,
.newsroom:not(.newsroom--article) > .newsroom-press,
.newsroom:not(.newsroom--article) > .faq-section--embedded {
  background: #ffffff;
}

/* ===== Career page: Navarc palette override (white/black/blue, photo sections stay dark-overlay) ===== */
.career-body,
.career-page {
  background: #ffffff;
  color: #000000;
}
.career-page {
  --career-ink: #000000;
  --career-muted: #5c5c5c;
  --career-surface: #ffffff;
  --career-dark: #ffffff;
  --career-line: #e5e5e5;
}

.career-introduction,
.career-opportunities {
  background: #ffffff;
}

.career-department-card.candela-style {
  background: #f7f7f7;
  border-color: #e5e5e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.career-department-card.candela-style:hover {
  background: #eeeeee;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.career-department-card.candela-style h3 {
  color: #000000;
}
.career-department-card.candela-style p {
  color: #6b6b6b;
}

.career-culture {
  background: #ffffff;
  color: #000000;
}
.career-culture h2,
.career-culture__list p {
  color: #000000;
}

.career-location {
  background: #ffffff;
  color: #000000;
}
.career-location-back {
  color: #000000;
}

.career-about {
  background: #ffffff;
  color: #000000;
}
.career-about h2 {
  color: #000000;
}

.career-referral__top-label {
  color: #000000;
}

/* ===== Blog page: Navarc palette + button convention override ===== */
.blog-listing__title h1 {
  color: #000000;
}
.blog-listing__title p {
  color: #555555;
}
.blog-featured__media,
.blog-card__media {
  background: #f0f0f0;
}
.blog-featured__date,
.blog-card__date {
  color: #666666;
}
.blog-featured__content h2 a {
  color: #000000;
}
.blog-featured__content p {
  color: #333333;
}
.blog-card__title {
  color: #000000;
}
.blog-loadmore button {
  border-radius: 4px;
  border: 1px solid var(--black);
  color: #000000;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-loadmore button:hover {
  background: var(--black);
  color: #ffffff;
  border-color: var(--black);
}

/* ===== Newsroom buttons: flat Navarc shape (no pill) ===== */
.newsroom-link-btn {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  font-weight: 600;
}

/* ===== Career page contrast fixes ===== */
.career-location address,
.career-location__links > a {
  color: #000000;
}
.career-location__links > a:hover {
  color: var(--brand-accent);
}
.career-referral__inner h2,
.career-referral__inner p {
  color: #ffffff;
}

/* ===== Careers page: smooth in-page scroll ===== */
html:has(.career-page) {
  scroll-behavior: smooth;
}
#career-opportunities {
  scroll-margin-top: 110px;
}

/* ===== Career connect page (Candela reference) ===== */
.career-connect {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 20px 80px;
  background: #ffffff;
}
.career-connect__card {
  width: 100%;
  max-width: 480px;
}
.career-connect__card h1 {
  margin-bottom: 24px;
  font-size: clamp(30px, calc(22.5px + 0.390625vw), 37.5px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}
.career-connect__list {
  margin-bottom: 24px;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
}
.career-connect__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  color: #111111;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  transition: background-color 0.15s ease;
}
.career-connect__option:last-child {
  border-bottom: none;
}
.career-connect__option:hover {
  background: #f7f7f7;
}
.career-connect__option input[type='radio'] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-accent);
}
.career-connect__submit {
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: none;
}
.career-connect__signin {
  margin-top: 20px;
  text-align: center;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #555555;
}
.career-connect__signin a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Career job detail page (Candela reference) ===== */
.career-job {
  background: #ffffff;
  color: #000000;
  padding-top: 130px;
  padding-bottom: 100px;
}
.career-job__inner {
  max-width: 760px;
}
.career-job__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #666666;
  margin-bottom: 12px;
}
.career-job h1 {
  font-size: clamp(36px, max(min(5vw, 56px), calc(42px + 0.729167vw)), 70px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.career-job__apply {
  display: inline-block;
  margin-bottom: 44px;
}
.career-job__intro {
  font-size: clamp(21px, calc(15.75px + 0.273437vw), 26.25px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}
.career-job__company,
.career-job__role-intro,
.career-job__closing,
.career-job__why {
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.7;
  color: #333333;
  margin-bottom: 22px;
}
.career-job h2 {
  font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
}
.career-job__list {
  margin: 0 0 8px;
  padding-left: 22px;
}
.career-job__list li {
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.7;
  color: #333333;
  margin-bottom: 10px;
}
.career-job__facts {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #f7f7f7;
}
.career-job__facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
}
.career-job__facts div:last-child {
  border-bottom: none;
}
.career-job__facts dt {
  color: #666666;
}
.career-job__facts dd {
  font-weight: 500;
  text-align: right;
}
.career-job__tags {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.career-job__tags-label {
  display: block;
  text-transform: uppercase;
  font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
  letter-spacing: 1px;
  color: #999999;
  margin-bottom: 4px;
}
.career-job__related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.career-job__related-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.career-job__related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.career-job__related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.career-job__related-title {
  padding: 14px 16px 2px;
  font-weight: 600;
  color: #000000;
}
.career-job__related-meta {
  padding: 0 16px 16px;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  color: #666666;
}
.career-job__back {
  display: inline-block;
  margin-top: 24px;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.career-job__back:hover {
  color: var(--brand-accent);
}
.career-job__about {
  margin-top: 60px;
  padding: 70px 0;
  background: #ffffff;
  color: #000000;
  text-align: center;
}
.career-job__about-inner {
  max-width: 640px;
}
.career-job__about h2 {
  color: #000000;
  margin-top: 0;
}
.career-job__about p {
  color: #444444;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ===== Career job page: hero banner ===== */
.career-job {
  padding-top: 0;
}
.career-job__hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.career-job__hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.72) 100%);
}
.career-job__hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 20px 48px;
}
.career-job__hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.career-job__eyebrow--light {
  color: rgba(255,255,255,0.85);
}
.career-job__hero-title {
  color: #ffffff;
  font-size: clamp(32px, max(min(4.5vw, 52px), calc(39px + 0.677083vw)), 65px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.career-job__inner {
  padding-top: 48px;
}

.career-job__hero {
  min-height: 100svh;
  align-items: flex-end;
}
.career-job__hero-content {
  padding-bottom: 96px;
}
.career-job__hero-scroll {
  bottom: 32px;
}
#career-job-content {
  scroll-margin-top: 0;
}

.career-job__hero {
  position: relative;
  overflow: hidden;
  background-image: none;
}
.career-job__hero-media {
  position: absolute;
  inset: -15% 0 0 0;
  height: 130%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.career-job__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.career-job__eyebrow--light {
  text-align: center;
}

/* ===== Career job: sticky Apply bar ===== */
.career-job__sticky-apply {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 12px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.career-job__sticky-apply.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.career-job__sticky-apply:hover {
  background: #ffffff;
  color: #000000;
}

/* ===== Career job: location blurb + image below map ===== */
.career-location__blurb {
  margin-top: 24px;
  max-width: 400px;
  color: #cccccc;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
  line-height: 1.6;
}
.career-location__map-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.career-location__map-col .career-location__map {
  min-height: 280px;
}
.career-location__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.career-location__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Career job: application form ===== */
.career-job__form-section {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 100px;
}
.career-job__form-inner {
  max-width: 640px;
  text-align: center;
}
.career-job__form-section .career-job__eyebrow {
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.career-job__form-title {
  font-size: clamp(28px, max(min(3.5vw, 40px), calc(30px + 0.520833vw)), 50px);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 40px;
}
.career-job__form {
  text-align: left;
}
.career-job__form-field {
  margin-bottom: 22px;
}
.career-job__form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  color: #dddddd;
}
.career-job__form-field input,
.career-job__form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  color: #000000;
  font-family: inherit;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  resize: vertical;
}
.career-job__form-field input[type='file'] {
  padding: 10px 14px;
}
.career-job__form-submit {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  border: none;
  text-align: center;
}

/* ===== Career job location: center + black text fix ===== */
.career-location__city {
  text-align: center;
  justify-content: center;
  font-weight: 700;
}
.career-location address {
  text-align: center;
}
.career-location__blurb {
  color: #000000;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Career job: footer menu + referral card ===== */
.career-job__footer-menu {
  background: #ffffff;
  color: #000000;
  padding: 80px 40px;
  border-top: 1px solid #e5e5e5;
}
.career-job__footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.career-job__footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-job__footer-col h4 {
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}
.career-job__footer-col a {
  color: #555555;
  text-decoration: none;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  transition: color 0.2s ease;
}
.career-job__footer-col a:hover {
  color: var(--brand-accent);
}
.career-job__footer-col--right {
  align-items: flex-end;
}
.career-job__footer-brand {
  color: #000000 !important;
  font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  margin-bottom: 12px;
}
.career-job__footer-socials {
  display: flex;
  gap: 16px;
}
.career-job__footer-socials svg {
  width: 22px;
  height: 22px;
  fill: #000000;
}
.career-job__referral {
  padding: 0 40px 80px;
}
.career-job__referral-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
  border-radius: 24px;
  background: #000000;
  color: #ffffff;
  text-align: center;
}
.career-job__referral-inner h2 {
  font-size: clamp(28px, max(min(3vw, 40px), calc(30px + 0.520833vw)), 50px);
  font-weight: 500;
  color: #ffffff;
}
.career-job__referral-inner p {
  margin-top: 14px;
  color: #cccccc;
  font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
}
.career-job__referral-inner .career-pill {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .career-job__footer-grid {
    grid-template-columns: 1fr;
  }
  .career-job__footer-col--right {
    align-items: flex-start;
  }
}

/* ===== Career job location: 2x2 aligned split ===== */
.career-location--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  min-height: 0;
}
.career-location--split .career-location__directions {
  grid-column: 1;
  grid-row: 1;
}
.career-location--split .career-location__map {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
}
.career-location__blurb-col {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px var(--career-gutter);
}
.career-location--split .career-location__image {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: auto;
  min-height: 380px;
  height: 100%;
}
.career-location__blurb {
  max-width: 380px;
  margin: 0;
}

/* ===== Career location detail page ===== */
.career-loc__hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.career-loc__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.7) 100%);
}
.career-loc__hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 140px 20px 64px;
  text-align: center;
  color: #ffffff;
}
.career-loc__hero-content h1 {
  font-size: clamp(40px, max(min(5vw, 64px), calc(48px + 0.833333vw)), 80px);
  font-weight: 500;
  margin-bottom: 20px;
}
.career-loc__hero-content p {
  font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.career-loc__jobs {
  background: #ffffff;
  color: #000000;
  padding: 80px 0;
}
.career-loc__jobs h2 {
  font-size: clamp(28px, calc(21px + 0.364583vw), 35px);
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}
.career-loc__map {
  border-top: 1px solid #e5e5e5;
}
.career-loc__map iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* ===== Career location: job rows + simple map row ===== */
.career-loc__jobs {
  background: #ffffff;
  padding: 60px 0 80px;
}
.career-loc__job-row {
  display: block;
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 20px;
  text-align: center;
  color: #000000;
  border-bottom: 1px solid #e5e5e5;
}
.career-loc__job-row:last-of-type {
  border-bottom: none;
}
.career-loc__job-row--alt {
  background: transparent;
}
.career-loc__job-title {
  display: inline-block;
  font-size: clamp(21px, calc(15.75px + 0.273437vw), 26.25px);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.career-loc__job-row:hover .career-loc__job-title {
  color: var(--brand-accent);
}
.career-loc__job-meta {
  display: block;
  margin-top: 8px;
  color: #666666;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
}
.career-loc__all-jobs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.career-loc__all-jobs-pill svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.career-location--simple {
  background: #000000;
}
.career-location--simple .career-location__city {
  background: transparent;
  color: #ffffff;
  font-size: clamp(28px, calc(21px + 0.364583vw), 35px);
  font-weight: 500;
  justify-content: center;
}
.career-location--simple address {
  color: #ffffff;
}
.career-location--simple .career-location__links > a {
  color: #ffffff;
}

/* ===== Media page hero ===== */
.media-page-hero {
  position: relative;
  width: auto;
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 28px;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 80px;
}

/* ===== Editorial detail pages ===== */
.blog-page-body,
.article-page-body,
.newsroom-page-body {
  background: #ffffff;
  color: #000000;
}

.blog-page-body .blog-listing__title h1,
.blog-page-body .blog-featured__content h2 a,
.blog-page-body .blog-card__title {
  color: #000000;
}

.blog-page-body .blog-listing__title p,
.blog-page-body .blog-featured__content p {
  color: var(--brand-copy);
}

.blog-page-body .blog-featured__date,
.blog-page-body .blog-card__date {
  color: var(--brand-subtle);
}

.blog-page-body .blog-featured__media,
.blog-page-body .blog-card__media {
  background: var(--brand-surface);
}

.blog-page-body .blog-loadmore button {
  min-height: 48px;
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.blog-page-body .blog-loadmore button:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #ffffff;
}

.blog-page-body .blog-featured__content h2 a:hover,
.blog-page-body .blog-card:hover .blog-card__title {
  color: var(--brand-accent);
}

.blog-page-body .site-header,
.article-page-body .site-header,
.newsroom-page-body .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--brand-line);
}

.blog-page-body .site-header .nav__brand .logo--light,
.article-page-body .site-header .nav__brand .logo--light,
.newsroom-page-body .site-header .nav__brand .logo--light {
  opacity: 0;
}

.blog-page-body .site-header .nav__brand .logo--dark,
.article-page-body .site-header .nav__brand .logo--dark,
.newsroom-page-body .site-header .nav__brand .logo--dark {
  opacity: 1;
}

.blog-page-body .site-header:not(.mega-open) .lang-toggle,
.article-page-body .site-header:not(.mega-open) .lang-toggle,
.newsroom-page-body .site-header:not(.mega-open) .lang-toggle {
  color: #000000;
}

.blog-page-body .site-header:not(.mega-open) .burger span,
.article-page-body .site-header:not(.mega-open) .burger span,
.newsroom-page-body .site-header:not(.mega-open) .burger span {
  background: #000000;
}

.blog-page-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item > a,
.article-page-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item > a,
.newsroom-page-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item > a {
  color: var(--brand-subtle) !important;
}

.blog-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="professional"] .nav__item--professional > a,
.blog-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="leisure"] .nav__item--leisure > a,
.blog-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="technology"] .nav__item--technology > a,
.article-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="professional"] .nav__item--professional > a,
.article-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="leisure"] .nav__item--leisure > a,
.article-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="technology"] .nav__item--technology > a,
.newsroom-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="professional"] .nav__item--professional > a,
.newsroom-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="leisure"] .nav__item--leisure > a,
.newsroom-page-body:not(.scrolled) .site-header:not(.mega-open)[data-active="technology"] .nav__item--technology > a {
  color: #000000 !important;
}

.article-detail {
  background: #ffffff;
  color: #000000;
}

.article-detail__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.article-detail__header {
  padding: 160px 0 64px;
}

.article-detail__header-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.article-detail__back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #000000;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.article-detail__back::before {
  content: '\2190';
  margin-right: 12px;
  font-size: clamp(19px, calc(14.25px + 0.247396vw), 23.75px);
  font-weight: 300;
}

.article-detail__back:hover {
  color: var(--brand-accent);
}

.article-detail__category,
.article-detail__date {
  display: inline-block;
  margin: 0 12px 20px 0;
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-detail__category {
  color: var(--brand-accent);
}

.article-detail__date {
  color: var(--brand-muted);
}

.article-detail__title {
  max-width: 760px;
  margin: 0;
  color: #000000;
  font-size: clamp(26px, max(min(1vw + 13px, 32px), calc(24px + 0.416667vw)), 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.article-detail__media {
  margin-bottom: 80px;
}

.article-detail__media img {
  width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.article-detail__summary {
  margin-bottom: 80px;
}

.article-detail__summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.article-detail__summary h2 {
  grid-column: 2;
  margin: 0;
  color: #000000;
  font-size: clamp(26px, max(min(1vw + 13px, 32px), calc(24px + 0.416667vw)), 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.article-detail__content {
  margin: 0 0 96px;
}

.article-detail__separator {
  width: 100%;
  height: 1px;
  margin: 64px 0 48px;
  border: 0;
  background: var(--brand-line);
}

.article-detail__separator:first-child {
  margin-top: 0;
}

.article-detail__row {
  display: grid;
  grid-template-columns: minmax(180px, 30%) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.article-detail__heading h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.article-detail__copy {
  max-width: 800px;
}

.article-detail__copy p {
  margin: 0 0 24px;
  color: var(--brand-copy);
  font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  line-height: 1.7;
}

.article-detail__copy p:last-child {
  margin-bottom: 0;
}

.article-detail__copy strong {
  color: #000000;
  font-weight: 600;
}

.article-detail__ctas {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 64px 0 96px;
  padding: 0 20px;
}

.article-detail__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--brand-accent);
  border-radius: 999px;
  color: var(--brand-accent);
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  font-weight: 500;
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.article-detail__button--primary {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #ffffff;
}

.article-detail__button:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #ffffff;
}

.article-detail__button--primary:hover {
  border-color: var(--brand-accent-hover);
  background: var(--brand-accent-hover);
  color: #ffffff;
}

.article-detail__back:focus-visible,
.article-detail__button:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 4px;
}

/* Keep footer logo and tabs on the same vertical rails as the header. */
@media (min-width: 993px) {
  .mega-static__nav {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .mega-static__brand {
    position: relative;
    width: 170px;
    height: var(--brand-logo-size);
    margin-left: 0;
  }

  .mega-static__brand img {
    position: absolute;
    top: 0;
    left: 30px;
  }

  .mega-static__tabs {
    gap: 32px;
    justify-content: flex-start;
    margin-left: calc(var(--menu-start) - 110px);
  }
}

@media (min-width: 641px) and (max-width: 992px) {
  .mega-static__nav {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .mega-static__brand {
    position: relative;
    width: 140px;
    height: var(--brand-logo-size);
    margin-left: 0;
  }

  .mega-static__brand img {
    position: absolute;
    top: 0;
    left: 30px;
  }

  .mega-static__tabs {
    gap: 16px;
    margin-left: 12px;
  }
}

@media (max-width: 767px) {
  .article-detail__container {
    padding: 0 20px;
  }

  .article-detail__header {
    padding: 120px 0 52px;
  }

  .article-detail__header-inner,
  .article-detail__summary-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-detail__summary h2 {
    grid-column: 1;
  }

  .article-detail__title,
  .article-detail__summary h2 {
    font-size: clamp(25px, max(min(7vw, 30px), calc(22.5px + 0.390625vw)), 37.5px);
  }

  .article-detail__media,
  .article-detail__summary {
    margin-bottom: 56px;
  }

  .article-detail__media img {
    min-height: 0;
  }

  .article-detail__content {
    margin-bottom: 72px;
  }

  .article-detail__separator {
    margin: 48px 0 32px;
  }

  .article-detail__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-detail__ctas {
    flex-direction: column;
    gap: 12px;
    margin: 48px 0 72px;
  }

  .article-detail__button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .mega-static__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .mega-static__brand {
    position: relative;
    width: 140px;
    height: var(--brand-logo-size);
    margin-left: 0;
  }

  .mega-static__brand img {
    position: absolute;
    top: 0;
    left: 30px;
  }

  .mega-static__tabs {
    margin-left: 0;
  }
}

/* ===== Compact desktop header mega menu ===== */
@media (min-width: 993px) {
  .site-header .nav {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 32px;
  }

  .site-header .nav__brand {
    height: 44px;
  }

  .site-header .nav__brand .logo {
    height: 44px;
  }

  .site-header .nav__links {
    gap: 32px;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
  }

  .mega-static__tabs .mega-static__tab {
    min-width: 0;
    justify-content: flex-start;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    letter-spacing: normal;
  }

  .site-header .nav__burger {
    gap: 12px;
  }

  .site-header .burger {
    width: 48px;
  }

  .site-header.mega-open .burger::before {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  }

  .site-header .lang-toggle {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    letter-spacing: 0.08em;
  }

  .site-header .mega {
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 24px;
    padding: 24px 60px 14px;
  }

  .site-header .mega__section {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }

  .site-header .mega__intro {
    gap: 12px;
    padding-right: 16px;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }

  .site-header .mega__intro .btn {
    padding: 8px 15px;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
  }

  .site-header .mega__tiles {
    width: 100%;
    max-width: 660px;
    height: 220px;
    gap: 12px;
    margin-left: 0;
  }

  .site-header .mega__tile {
    padding: 12px;
  }

  .site-header .mega__tile-label,
  .site-header .mega__tiles .mega__tile:hover .mega__tile-label {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    letter-spacing: 0.05em;
  }

  .site-header .mega__tiles:hover .mega__tile:not(:hover) .mega__tile-label {
    font-size: clamp(9px, calc(6.75px + 0.117188vw), 11.25px);
  }

  .site-header .mega__menu {
    gap: 8px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  }

  .site-header .mega__menu a {
    padding-bottom: 3px;
  }

  .site-header .mega__bottom {
    margin-top: 6px;
    padding-top: 12px;
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  }

  .site-header .mega__socials {
    gap: 8px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  }

  .site-header .mega__socials svg {
    width: 17px;
    height: 17px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  :root {
    --menu-start: calc(78.3vw - 460px);
  }
}

@media (min-width: 993px) and (max-width: 1065px) {
  .site-header .mega__tile {
    padding: 8px;
  }

  .site-header .mega__tile-label,
  .site-header .mega__tiles .mega__tile:hover .mega__tile-label {
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    letter-spacing: 0.03em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-detail__back,
  .article-detail__button {
    transition: none;
  }
}

/* ===== Global mobile hardening ===== */
html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body,
main,
section,
article,
nav {
  min-width: 0;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

body.scrolled .lang-toggle {
  color: #000000 !important;
}

.mega-static--dark .mega__menu a:hover {
  color: #ffffff;
}

.burger,
.lang-toggle,
.mega-static__tab,
.blog-featured__link {
  min-height: 44px;
}

.lang-toggle,
.mega-static__tab,
.blog-featured__link {
  display: inline-flex;
  align-items: center;
}

.lang-toggle,
.mega-static__tab {
  min-width: 44px;
  justify-content: center;
}

.burger {
  min-width: 44px;
  cursor: pointer;
}

.article-detail__title,
.article-detail__summary h2,
.article-detail__copy,
.newsroom-hero__title,
.newsroom-hero__text {
  overflow-wrap: anywhere;
}

@media (max-width: 992px) {
  .nav__brand {
    min-height: 44px;
  }

  .mega-static__brand {
    min-height: 44px;
  }

  .nav__burger {
    justify-self: end;
    gap: 10px;
  }

  .site-header.mega-open .mega {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 20px 18px calc(28px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: none;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
  }

  .site-header.mega-open .mega__section {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .site-header.mega-open .mega__intro {
    gap: 12px;
    padding-right: 0;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }

  .site-header.mega-open .mega__intro .btn {
    min-height: 44px;
  }

  .site-header.mega-open .mega__tiles {
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
  }

  .site-header.mega-open .mega__tile {
    min-height: 150px;
    padding: 12px;
  }

  .site-header.mega-open .mega__menu {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
    gap: 0 18px;
    text-align: left;
  }

  .site-header.mega-open .mega__menu a,
  .mega-static .mega__menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-header.mega-open .mega__bottom {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  body:has(.site-header.burger-open) {
    overflow: hidden;
  }

  .mega-static .mega {
    position: static;
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    transform: none;
  }

  .mega-static .mega__tiles {
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
  }

  .mega-static .mega__tile {
    min-height: 180px;
    padding: 12px;
  }

  .mega-static__tab {
    justify-content: center;
    padding: 8px 2px;
  }

  .mega-static .mega__socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header.burger-open .mega__section {
    display: grid !important;
  }

  .site-header.burger-open .mega__section + .mega__section {
    padding-top: 20px;
    border-top: 1px solid var(--brand-line);
  }
}

@media (max-width: 640px) {
  .blog-listing {
    padding-right: 18px;
    padding-left: 18px;
  }

  .blog-listing__title {
    margin-bottom: 44px;
  }

  .blog-listing__title h1 {
    font-size: clamp(34px, max(min(11vw, 40px), calc(30px + 0.520833vw)), 50px);
  }

  .blog-featured {
    margin-bottom: 56px;
  }

  .blog-featured__media {
    margin-bottom: 26px;
  }

  .blog-featured__content h2 {
    font-size: clamp(25px, max(min(8vw, 30px), calc(22.5px + 0.390625vw)), 37.5px);
  }

  .newsroom-hero__text {
    line-height: 1.3;
  }

  .mega-static .mega__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-static .mega__tile,
  .site-header.mega-open .mega__tile {
    min-height: 128px;
  }

  .mega-static .mega__tile-label,
  .site-header.mega-open .mega__tile-label {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    letter-spacing: 0.06em;
  }

  .mega-static .mega__menu,
  .site-header.mega-open .mega__menu {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* === Mega Nav (Vertical List Style) === */
.site-header .mega__section {
  display: none;
  grid-template-columns: var(--menu-start) 240px minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}
.site-header[data-active="professional"] .mega__section--professional,
.site-header[data-active="leisure"] .mega__section--leisure,
.site-header[data-active="technology"] .mega__section--technology {
  display: grid;
}

.mega-nav__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  max-width: 320px;
}
.mega-nav__intro p {
  font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  line-height: 1.3;
  color: #000;
  margin: 0;
  font-weight: 300;
}

.mega-nav__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-nav__link {
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  display: inline-block;
  width: fit-content;
}
.mega-nav__link:hover {
  border-bottom: 1px solid #000;
}

/* Show and style preview images */
.mega-nav__preview {
  display: block !important;
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.mega-nav__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mega-nav__preview:hover img {
  transform: scale(1.05);
}

/* Style the side menu (right column) */
.mega__side-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mega__side-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.mega__menu-item {
  font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mega__menu-item:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .site-header.mega-open .mega__section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mega-nav__preview {
    display: none !important;
  }
  .mega__side-menu {
    align-items: flex-start;
    text-align: left;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
  }
  .mega__side-content {
    text-align: left;
  }
}


/* ====================================================
   MOBILE ACCORDION NAV (Added for Max-Width 992px)
   ==================================================== */
.mega-mobile-accordion {
  display: none !important;
}

@media (max-width: 992px) {
  /* Hide desktop sections completely on mobile */
  .site-header .mega__section,
  .mega-static .mega__section,
  .mega-static__tabs {
    display: none !important;
  }

  /* Show the accordion container */
  .mega-mobile-accordion {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
    border-top: 1px solid var(--light-gray);
  }
  
  .mega-static .mega-mobile-accordion {
    border-top: 1px solid var(--brand-line);
  }

  .accordion-item {
    border-bottom: 1px solid var(--light-gray);
  }
  
  .mega-static .accordion-item {
    border-bottom: 1px solid var(--brand-line);
  }

  .accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .mega-static .accordion-header {
    color: var(--white);
  }

  .accordion-icon::before {
    content: '+';
    font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
    font-weight: 300;
  }

  .accordion-item.is-open .accordion-icon::before {
    content: '-';
  }

  .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
  }

  .accordion-item.is-open .accordion-content {
    grid-template-rows: 1fr;
  }

  .accordion-inner {
    overflow: hidden;
  }
  
  .accordion-item.is-open .accordion-inner {
    padding-bottom: 24px;
  }

  .mega-mobile-accordion .mega__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0;
    height: auto;
    width: 100%;
    margin-left: 0;
  }

  .mega-mobile-accordion .mega__tile {
    min-height: 120px;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    transform: none !important;
  }

  .mega-mobile-accordion .mega__intro {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .mega-static .mega-mobile-accordion .mega__intro {
    color: var(--white);
  }
}

/* ====================================================
   MOBILE ACCORDION v3 (Integrated into .nav__item)
   ==================================================== */
.mobile-accordion-toggle,
.mobile-accordion-content {
  display: none !important;
}

@media (max-width: 992px) {
  /* Restructure header for mobile to accommodate nav__links and mega as a flow */
  .site-header.mega-open {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: #fff;
  }
  
  .site-header.mega-open .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 0;
  }
  
  /* Show nav__links and span full width below logo/burger */
  .site-header.mega-open .nav__links {
    display: flex !important;
    grid-column: 1 / -1;
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .site-header.mega-open .mega {
    display: flex !important;
    position: static !important;
    flex-direction: column;
    padding: 0 20px 24px !important;
    border: none !important;
    gap: 20px !important;
  }

  /* Hide the desktop sections */
  .site-header .mega__section,
  .mega-static .mega__section {
    display: none !important;
  }

  /* Style the nav item as an accordion header */
  .site-header .nav__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
  }

  .site-header .nav__item > a {
    padding: 18px 0;
    flex-grow: 1;
    color: var(--black) !important;
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  }

  .mega-static__tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--brand-line);
    width: 100%;
  }

  .mega-static__tab {
    flex-grow: 1;
    text-align: left;
    padding: 16px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
  }

  .mobile-accordion-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 16px;
    cursor: pointer;
    color: var(--black);
  }
  
  .mega-static .mobile-accordion-toggle {
    color: var(--white);
  }

  .accordion-icon::before {
    content: '+';
    font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
    font-weight: 300;
  }
  .nav__item.is-open .accordion-icon::before {
    content: '-';
  }

  /* Accordion content grid animation */
  .mobile-accordion-content {
    display: grid !important;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
    width: 100%;
  }

  .nav__item.is-open .mobile-accordion-content {
    grid-template-rows: 1fr;
  }

  .accordion-inner {
    overflow: hidden;
  }
  
  .nav__item.is-open .accordion-inner {
    padding-bottom: 24px;
  }

  /* Tiles styling (Text inside image) */
  .mobile-accordion-content .mega__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0;
    height: auto;
    width: 100%;
    margin-left: 0;
  }

  .mobile-accordion-content .mega__tile {
    min-height: 140px;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    transform: none !important;
    position: relative;
    overflow: hidden;
  }
  
  .mobile-accordion-content .mega__tile-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: block;
  }
  
  /* Add a dark overlay so text is readable */
  .mobile-accordion-content .mega__tile-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  }

  .mobile-accordion-content .mega__tile-label {
    position: relative;
    z-index: 1;
    color: #fff !important;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }

  .mobile-accordion-content .mega__intro {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .mega-static .mobile-accordion-content .mega__intro {
    color: var(--white);
  }
}

/* ============================================================
   CANDELA-STYLE MOBILE MEGA NAV
   Only active on <= 992px. Desktop is 100% untouched.
   ============================================================ */

/* Hide completely on desktop */
.cnd-mobile-menu {
  display: none !important;
}

/* Also remove old injected accordion CSS from previous attempts */
.mobile-accordion-toggle,
.mobile-accordion-content {
  display: none !important;
}

@media (max-width: 992px) {

  /* ---- Header mobile overrides ---- */
  /* Make header a full-screen overlay when open */
  .site-header.mega-open {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
  }
  
  /* Compact the top nav bar */
  .site-header.mega-open .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* Hide the desktop mega panel and nav links in mobile menu */
  .site-header .mega {
    display: none !important;
  }

  .site-header.mega-open .mega {
    display: block !important;
  }

  .site-header.mega-open .mega .mega__section,
  .site-header.mega-open .mega .mega__menu,
  .site-header.mega-open .mega .mega__bottom {
    display: none !important;
  }

  .site-header.mega-open .nav__links {
    display: none !important;
  }

  /* Show our Candela-style menu */
  .site-header.mega-open .cnd-mobile-menu {
    display: block !important;
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 40px;
    box-sizing: border-box;
  }
  
  /* Also show the side menu (the Contact/Blog etc. links) */
  .site-header.mega-open .mega__side-menu {
    display: block;
    padding-top: 8px;
  }
  
  .site-header.mega-open .mega__side-content {
    display: flex;
    flex-direction: column;
  }

  .site-header.mega-open .mega__menu-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    color: #333;
    text-decoration: none;
    font-family: var(--font-body, sans-serif);
    letter-spacing: 0.02em;
  }
  
  /* Hide the mega__bottom copyright in the header (it overlaps), 
     we already have it elsewhere */
  .site-header.mega-open .mega__bottom {
    display: none;
  }

  /* ---- Candela-Style Mobile Categories ---- */
  .cnd-mobile-menu__cats {
    margin: 0;
    padding: 0;
  }

  .cnd-cat-item {
    border-bottom: 1px solid #e8e8e8;
  }

  .cnd-cat-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
    font-family: var(--font-body, sans-serif);
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.01em;
  }
  
  .cnd-cat-icon {
    font-size: clamp(24px, calc(18px + 0.3125vw), 30px);
    font-weight: 300;
    line-height: 1;
    color: #1a1a1a;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .cnd-cat-icon::before {
    content: '+';
  }
  
  .cnd-cat-item.is-open .cnd-cat-icon {
    transform: rotate(45deg);
  }
  
  /* Active category title gets colored  */
  .cnd-cat-item.is-open .cnd-cat-title {
    color: #2563eb;
  }

  /* Accordion slide animation */
  .cnd-cat-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  .cnd-cat-item.is-open .cnd-cat-body {
    grid-template-rows: 1fr;
  }

  .cnd-cat-body__inner {
    overflow: hidden;
  }
  
  .cnd-cat-item.is-open .cnd-cat-body__inner {
    padding-bottom: 20px;
  }

  /* ---- Horizontal Tiles (like Candela) ---- */
  .cnd-tiles {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin-bottom: 16px;
    /* hide scrollbar */
    scrollbar-width: none;
  }
  .cnd-tiles::-webkit-scrollbar {
    display: none;
  }

  .cnd-tile {
    position: relative;
    flex: 0 0 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
  }

  .cnd-tile__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    transition: filter 0.3s ease;
  }
  
  /* Gradient overlay so label text is readable */
  .cnd-tile__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  }

  .cnd-tile__label {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-family: var(--font-body, sans-serif);
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 6px 8px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }

  /* ---- Intro text + button ---- */
  .cnd-intro-text {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    font-family: var(--font-body, sans-serif);
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 16px 0;
    white-space: pre-line;
  }

  .cnd-cat-header {
    min-height: 48px;
  }

  .burger {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 992px) and (prefers-reduced-motion: reduce) {
  .cnd-cat-body {
    transition: none;
  }

  .cnd-cat-icon {
    transition: none;
  }

  .cnd-tile__img {
    transition: none;
  }
}

/* Final mobile mega-nav visibility fix (guaranteed last in cascade) */
@media (max-width: 992px) {
  .site-header.mega-open .mega {
    display: block !important;
  }

  .site-header.mega-open .mega .mega__section {
    display: none !important;
  }

  .site-header.mega-open .cnd-mobile-menu {
    display: block !important;
  }
}

/* Final mobile nav row fix: keep logo/burger row on top, mega content wraps below (guaranteed last) */
@media (max-width: 992px) {
  .site-header.mega-open .nav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    height: auto !important;
  }

  .site-header.mega-open .nav__brand,
  .site-header.mega-open .nav__burger {
    flex: 0 0 auto;
  }

  .site-header.mega-open .nav__links {
    display: none !important;
  }

  .site-header.mega-open .mega {
    flex: 0 0 100%;
    width: 100%;
    order: 10;
  }
}

/* Final: logo/burger/lang always black on mobile (guaranteed last).
   Tile rail stays horizontal-scroll (see .cnd-tiles above) — not a fixed grid. */
@media (max-width: 992px) {
  .cnd-tile {
    flex: 0 0 30%;
    min-width: 108px;
    height: 100px;
  }

  .nav__brand .logo--light {
    opacity: 0 !important;
  }

  .nav__brand .logo--dark {
    opacity: 1 !important;
  }

  .burger span {
    background: #000000 !important;
  }

  .lang-switch__toggle {
    color: #000000 !important;
  }
}

/* ====================================================
   DESKTOP FOOTER v2 — Candela-referenced polish.
   Scoped to min-width: 993px only. Mobile accordion
   footer (.accordion-item, max-width: 992px block above)
   is untouched by anything below.
   ==================================================== */

.mega-static__scroll-top {
  display: none;
}

@media (min-width: 993px) {
  .mega-static__nav {
    position: relative;
  }

  .mega-static__scroll-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: #ffffff;
    opacity: 0.75;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .mega-static__scroll-top:hover,
  .mega-static__scroll-top:focus-visible {
    opacity: 1;
  }

  .mega-static__scroll-top svg path {
    transition: transform 0.2s ease;
  }

  .mega-static__scroll-top:hover svg path,
  .mega-static__scroll-top:focus-visible svg path {
    transform: translateY(-2px);
  }

  .mega-static__tab {
    transition: color 0.22s ease;
  }

  /* Entrance animation replays automatically each time the browser
     flips these from display:none to their active display value —
     no JS timeline needed, so rapid tab switching can't desync state. */
  .mega-static[data-active] .mega__section {
    animation: megaSectionEnter 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mega-static .mega__section .mega__intro {
    animation: megaIntroEnter 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mega-static .mega__tiles .mega__tile {
    animation: megaTileEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mega-static .mega__tiles .mega__tile:nth-child(1) { animation-delay: 0ms; }
  .mega-static .mega__tiles .mega__tile:nth-child(2) { animation-delay: 45ms; }
  .mega-static .mega__tiles .mega__tile:nth-child(3) { animation-delay: 90ms; }
  .mega-static .mega__tiles .mega__tile:nth-child(4) { animation-delay: 135ms; }
}

@keyframes megaSectionEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes megaIntroEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes megaTileEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 993px) and (prefers-reduced-motion: reduce) {
  .mega-static .mega__section,
  .mega-static .mega__section .mega__intro,
  .mega-static .mega__tiles .mega__tile {
    animation: none !important;
  }
}

/* ====================================================
   MOBILE HERO VIDEO — Candela-referenced pause/play +
   load-fade. Scoped to max-width: 992px only (this repo's
   established mobile ceiling). Desktop .hero/.hero__video
   rules above are untouched; nothing here overrides them
   outside this query.
   ==================================================== */

.hero__video-toggle {
  display: none;
}

@media (max-width: 992px) {
  .hero__video-toggle {
    position: absolute;
    z-index: 3;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  }

  .hero__video-toggle.is-ready {
    opacity: 1;
    transform: scale(1);
  }

  .hero__video-toggle:active {
    background: rgba(0, 0, 0, 0.45);
  }

  .hero__video-toggle-icon--play {
    display: none;
  }

  .hero__video-toggle[data-state="paused"] .hero__video-toggle-icon--pause {
    display: none;
  }

  .hero__video-toggle[data-state="paused"] .hero__video-toggle-icon--play {
    display: block;
  }
}

@media (max-width: 992px) and (prefers-reduced-motion: reduce) {
  .hero__video,
  .hero__video-toggle {
    transition: none !important;
  }
}

/* ====================================================
   MOBILE TYPOGRAPHY SCALE — Candela-referenced tightening.
   Low-specificity tag fallbacks: any element with its own
   more specific rule elsewhere (e.g. .hero__content h1,
   .post-hero__title) keeps winning by specificity, this
   only tightens headings/body text that were falling back
   to the loose desktop-authored body{line-height:1.6}.
   Scoped to max-width: 992px only, desktop untouched.
   ==================================================== */

@media (max-width: 992px) {
  h1, h2, h3, h4 {
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  h5, h6 {
    line-height: 1.2;
  }

  p {
    line-height: 1.45;
  }

  .solarvess-caption p {
    line-height: 1.4;
  }
}

/* ====================================================
   TECHNOLOGY OVERVIEW — CANDELA-PROPORTION DESKTOP PASS
   Scoped to body.tech-overview-v2 + min-width:993px only.
   Mobile (this page and all others) untouched.
   ==================================================== */

@media (min-width: 993px) {
  body.tech-overview-v2 .tov2-hero {
    place-items: end start;
  }

  body.tech-overview-v2 .tov2-hero .hero__content {
    transform: none;
    max-width: min(46vw, 652px);
    padding: 0 0 88px 60px;
  }

  body.tech-overview-v2 .tov2-hero h1 {
    font-size: clamp(44px, max(min(4.4vw, 63px), calc(47.25px + 0.820312vw)), 78.75px) !important;
    letter-spacing: -1.2px;
    line-height: 1.02;
  }

  body.tech-overview-v2 .tov2-intro {
    padding: 140px 60px 96px !important;
  }

  body.tech-overview-v2 .tov2-intro > div {
    max-width: min(45.75%, 652px) !important;
  }

  body.tech-overview-v2 .tov2-intro h1 {
    font-size: clamp(30px, max(min(2.5vw, 36px), calc(27px + 0.46875vw)), 45px) !important;
    letter-spacing: -0.72px !important;
    margin-bottom: 20px !important;
  }

  body.tech-overview-v2 .tov2-intro p {
    font-size: clamp(19px, max(min(1.5vw, 22px), calc(16.5px + 0.286458vw)), 27.5px) !important;
    line-height: 1.3 !important;
  }

  body.tech-overview-v2 .tov2-grid .tech-benefits__label {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    top: 32px;
    left: 32px;
    right: 32px;
  }

  body.tech-overview-v2 .tov2-editorial {
    padding-top: 120px !important;
    padding-bottom: 100px !important;
    gap: 60px;
  }

  body.tech-overview-v2 .tov2-editorial .post-hero__title {
    font-size: clamp(30px, max(min(2.5vw, 36px), calc(27px + 0.46875vw)), 45px);
    line-height: 1.2;
  }

  body.tech-overview-v2 .tov2-editorial-img {
    padding: 0 60px !important;
  }

  body.tech-overview-v2 .tov2-editorial-img img {
    height: clamp(480px, 40vw, 723px) !important;
  }

  body.tech-overview-v2 .tov2-cards {
    padding: 60px 60px 40px !important;
    gap: 40px !important;
  }

  body.tech-overview-v2 .tov2-cards .blog-latest__image {
    height: clamp(400px, 33vw, 520px) !important;
    aspect-ratio: 4 / 3;
  }

  body.tech-overview-v2 .tov2-cards h3 {
    font-size: clamp(26px, calc(19.5px + 0.338542vw), 32.5px) !important;
  }

  body.tech-overview-v2 .tov2-cards .blog-latest__text {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px) !important;
  }
}

/* ====================================================
   TECHNOLOGY DETAIL PAGES — CANDELA ELECTRIC MOTOR PASS
   Fluid Analysis / Structural Analysis / Foiling System.
   Scoped to body.tech-detail-v2 + min-width:993px only.
   Mobile (these pages and all others) untouched.
   ==================================================== */

@media (min-width: 993px) {
  body.tech-detail-v2 .tdv2-hero {
    place-items: end start;
  }

  body.tech-detail-v2 .tdv2-hero .hero__content {
    transform: none;
    max-width: min(46vw, 652px);
    padding: 0 0 88px 60px;
  }

  body.tech-detail-v2 .tdv2-hero h1 {
    font-size: clamp(38px, max(min(3.8vw, 55px), calc(41.25px + 0.716146vw)), 68.75px) !important;
    letter-spacing: -1.1px;
    line-height: 1.08;
  }

  body.tech-detail-v2 .tdv2-intro {
    padding: 140px 60px 96px !important;
  }

  body.tech-detail-v2 .tdv2-intro > div {
    max-width: min(45.75%, 652px) !important;
  }

  body.tech-detail-v2 .tdv2-intro h1 {
    font-size: clamp(30px, max(min(2.5vw, 36px), calc(27px + 0.46875vw)), 45px) !important;
    letter-spacing: -0.72px !important;
    margin-bottom: 20px !important;
  }

  body.tech-detail-v2 .tdv2-intro p {
    font-size: clamp(19px, max(min(1.5vw, 22px), calc(16.5px + 0.286458vw)), 27.5px) !important;
    line-height: 1.3 !important;
  }

  body.tech-detail-v2 .tdv2-grid .tech-benefits__label {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    top: 32px;
    left: 32px;
    right: 32px;
  }

  body.tech-detail-v2 .tdv2-cards {
    padding: 60px 60px 40px !important;
    gap: 40px !important;
  }

  body.tech-detail-v2 .tdv2-cards .blog-latest__image {
    height: clamp(400px, 33vw, 483px) !important;
    aspect-ratio: 4 / 3;
  }

  body.tech-detail-v2 .tdv2-cards h3 {
    font-size: clamp(26px, calc(19.5px + 0.338542vw), 32.5px) !important;
    line-height: 1.15 !important;
  }

  body.tech-detail-v2 .tdv2-cards .blog-latest__text {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px) !important;
    line-height: 1.4 !important;
  }

  body.tech-detail-v2 .tdv2-editorial {
    padding-top: 120px !important;
    padding-bottom: 100px !important;
    gap: 60px;
  }

  body.tech-detail-v2 .tdv2-editorial .post-hero__title {
    font-size: clamp(30px, max(min(2.5vw, 36px), calc(27px + 0.46875vw)), 45px);
    line-height: 1.2;
  }

  body.tech-detail-v2 .tdv2-editorial .post-hero__right p {
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
    line-height: 1.5;
  }

  body.tech-detail-v2 .tdv2-large-img img {
    height: clamp(480px, 40vw, 723px) !important;
  }
}

/* Vertical rhythm between cards / large images / cross-link row / FAQ.
   New tdv2-only classes, applies at all viewports (no pre-existing rule to conflict with). */
body.tech-detail-v2 .tdv2-large-img {
  margin: 48px auto;
}

body.tech-detail-v2 .tech-benefits--wide {
  margin: 48px auto;
}

/* FAQ hero — eyebrow + headline + "view all" pill, matching the reference
   two-line composition. Scoped to the embedded FAQ block on these 3 pages only. */
body.tech-detail-v2 .faq-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

body.tech-detail-v2 .faq-hero__eyebrow {
  display: block;
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
  font-weight: 500;
  color: #8b8b8b;
}

body.tech-detail-v2 .faq-hero h1 {
  max-width: 640px;
  color: #111111 !important;
}

body.tech-detail-v2 .faq-hero__pill {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 24px;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  color: #111111;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body.tech-detail-v2 .faq-hero__pill:hover {
  background-color: #111111;
  color: #ffffff;
}

body.tech-overview-v2 .faq-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

body.tech-overview-v2 .faq-hero__eyebrow {
  display: block;
  font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
  font-weight: 500;
  color: #8b8b8b;
}

body.tech-overview-v2 .faq-hero h1 {
  max-width: 640px;
  color: #111111 !important;
}

body.tech-overview-v2 .faq-hero__pill {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 24px;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  color: #111111;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body.tech-overview-v2 .faq-hero__pill:hover {
  background-color: #111111;
  color: #ffffff;
}

/* FAQ list — full-bleed rows (dividers span the viewport), number always
   at the left, question/answer text/icon always black, gray fill on open.
   Scoped to the embedded FAQ block on these 4 pages only. */
body.tech-overview-v2 .faq-list,
body.tech-detail-v2 .faq-list {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

body.tech-overview-v2 .faq-item__question,
body.tech-detail-v2 .faq-item__question {
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

body.tech-overview-v2 .faq-item__answer-content,
body.tech-detail-v2 .faq-item__answer-content {
  padding-left: calc(50% + 60px);
  padding-right: 60px;
  box-sizing: border-box;
}

body.tech-overview-v2 .faq-item__number,
body.tech-detail-v2 .faq-item__number {
  color: #111111 !important;
}

body.tech-overview-v2 .faq-page--numbered .faq-item__icon,
body.tech-detail-v2 .faq-page--numbered .faq-item__icon {
  color: #111111 !important;
}

body.tech-overview-v2 .faq-item.is-open .faq-item__text,
body.tech-detail-v2 .faq-item.is-open .faq-item__text {
  color: #111111 !important;
}

body.tech-overview-v2 .faq-item.is-open,
body.tech-detail-v2 .faq-item.is-open {
  background-color: #f2f2f2;
}

@media (min-width: 993px) {
  body.tech-overview-v2 .faq-item__question,
  body.tech-detail-v2 .faq-item__question {
    padding-left: 80px;
    padding-right: 80px;
  }

  body.tech-overview-v2 .faq-item__answer-content,
  body.tech-detail-v2 .faq-item__answer-content {
    padding-left: calc(50% + 80px);
    padding-right: 80px;
  }
}

/* =====================================================================
   NAVARC MOBILE SHELL — Faz 1
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-* classes that do
   not exist anywhere else in this file — nothing here overrides
   .site-header / .nav / .mega / .btn / section / img or any other
   pre-existing selector, and desktop (min-width: 993px) is untouched.
   ===================================================================== */

/* Defined on :root (not [data-navarc-mobile-root]) because every Faz2+
   mobile content block (.navarc-mobile-detail, .navarc-mobile-blog-*,
   .navarc-mobile-career*, etc.) is inserted as its own sibling under
   <main> — NOT nested inside the [data-navarc-mobile-root] menu block —
   so a root-scoped definition is needed for these custom properties to
   actually cascade to them. This adds new custom-property declarations
   only; no pre-existing :root rule/value is modified or removed. */
:root {
  --nm-bg: #000000;
  --nm-surface: #111111;
  --nm-surface-alt: #1a1a1a;
  --nm-text: #ffffff;
  --nm-text-secondary: #d9d9d9;
  --nm-text-muted: #8b8b8b;
  --nm-panel-bg: #ffffff;
  --nm-panel-text: #111111;
  --nm-panel-line: #e6e6e6;
  --nm-surface-light: #f2f2f2;
  --nm-newsletter-surface: #e6e6e6;
  --nm-accent: var(--brand-accent, #1f5eff);
  --nm-accent-hover: var(--brand-accent-hover, #1548cc);
  --nm-line-dark: #28292b;
  --nm-header-height: 73px;
  --nm-gutter: 20px;
  --nm-header-gutter: 12px;
}

/* Everything in this module is display:none until the (max-width:640px)
   query below turns it on — this keeps it inert at every wider
   breakpoint, including the 641–992px tablet range which keeps using
   the site's existing header/menu behaviour untouched. */
.navarc-mobile-header,
.navarc-mobile-panel {
  display: none;
}

@media (max-width: 640px) {
  /* ---------- Hide legacy desktop header controls ----------
     .nav__burger / .lang-switch / .nav__brand are the ORIGINAL
     desktop nav's own controls. They were never hidden below
     640px (pre-existing CSS only hides .nav__links there), so
     they sat visually/interactively underneath the new
     .navarc-mobile-header, causing burger/lang taps to hit the
     wrong (old) control. This only hides them via a new rule in
     this new media block — the .nav__burger/.lang-switch/
     .nav__brand selectors' own base rules elsewhere are untouched. */
  .nav__burger,
  .lang-switch,
  .nav__brand {
    display: none !important;
  }

  /* ---------- Fixed header ---------- */
  .navarc-mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: calc(var(--nm-header-height) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    background: transparent;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Protective scrim behind the transparent (white-icon) header state so
     the burger/lang controls stay readable even if the hero photo/video
     hasn't loaded yet or is lighter than expected — independent of the
     hero's own content/media. */
  .navarc-mobile-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .navarc-mobile-header.is-solid::before {
    opacity: 0;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-header {
    transition: none;
  }

  .navarc-mobile-header.is-hidden {
    transform: translateY(-100%);
  }

  .navarc-mobile-header.is-solid {
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  .navarc-mobile-header__row {
    height: var(--nm-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--nm-header-gutter);
    padding-left: max(var(--nm-header-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--nm-header-gutter), env(safe-area-inset-right, 0px));
  }

  .navarc-mobile-header__brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .navarc-mobile-header__logo {
    height: 28px;
    width: auto;
    display: none;
  }

  .navarc-mobile-header__logo--light {
    display: inline-block;
  }

  .navarc-mobile-header.is-solid .navarc-mobile-header__logo--light {
    display: none;
  }

  .navarc-mobile-header.is-solid .navarc-mobile-header__logo--dark {
    display: inline-block;
  }

  .navarc-mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ---------- Language switch ---------- */
  .navarc-mobile-lang {
    position: relative;
  }

  .navarc-mobile-lang__toggle {
    min-width: 58px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    background: transparent;
    color: var(--nm-text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  .navarc-mobile-header.is-solid .navarc-mobile-lang__toggle {
    color: #111111;
    border-color: rgba(0, 0, 0, 0.2);
  }

  .navarc-mobile-lang__menu {
    display: none;
  }

  .navarc-mobile-lang__menu:not([hidden]) {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 96px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    padding: 6px;
    display: flex;
    flex-direction: column;
    z-index: 20;
  }

  .navarc-mobile-lang__option {
    display: block;
    min-height: 40px;
    line-height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    color: #111111;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  }

  .navarc-mobile-lang__option.is-active {
    color: var(--nm-text-muted);
  }

  @media (hover: hover) and (pointer: fine) {
    .navarc-mobile-lang__option:hover {
      background: var(--nm-surface-light);
    }
  }

  /* ---------- Burger ---------- */
  .navarc-mobile-burger {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .navarc-mobile-burger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nm-text);
    transition: background-color 0.3s ease;
  }

  .navarc-mobile-header.is-solid .navarc-mobile-burger__bar {
    background: #111111;
  }

  /* ---------- Full-screen panel ---------- */
  .navarc-mobile-panel:not([hidden]) {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 9500;
    height: 100dvh;
    background: var(--nm-panel-bg);
    color: var(--nm-panel-text);
  }

  .navarc-mobile-panel__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  }

  .navarc-mobile-panel__top {
    position: sticky;
    top: 0;
    background: var(--nm-panel-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nm-header-height);
    padding: 0 var(--nm-gutter);
    padding-top: env(safe-area-inset-top, 0px);
    border-bottom: 1px solid var(--nm-panel-line);
  }

  .navarc-mobile-panel__top .navarc-mobile-header__logo {
    height: 24px;
  }

  .navarc-mobile-panel__close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #111111;
    font-size: clamp(26px, calc(19.5px + 0.338542vw), 32.5px);
    line-height: 1;
    cursor: pointer;
  }

  /* ---------- Category accordion ---------- */
  .navarc-mobile-cats {
    padding: 8px var(--nm-gutter) 0;
  }

  .navarc-mobile-cat {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .navarc-mobile-cat__heading {
    margin: 0;
    font-weight: normal;
  }

  .navarc-mobile-cat__trigger {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 14px 2px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
    font-weight: 500;
    line-height: 1.15;
    color: #111111;
    text-align: left;
    cursor: pointer;
  }

  .navarc-mobile-cat__sign {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .navarc-mobile-cat__sign::before,
  .navarc-mobile-cat__sign::after {
    content: '';
    position: absolute;
    background: #111111;
    top: 50%;
    left: 50%;
  }

  .navarc-mobile-cat__sign::before {
    width: 16px;
    height: 1px;
    transform: translate(-50%, -50%);
  }

  .navarc-mobile-cat__sign::after {
    width: 1px;
    height: 16px;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-cat__sign::after {
    transition: none;
  }

  .navarc-mobile-cat.is-open .navarc-mobile-cat__sign::after {
    transform: translate(-50%, -50%) scaleY(0);
  }

  .navarc-mobile-cat__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }

  .navarc-mobile-cat.is-open .navarc-mobile-cat__panel {
    max-height: 2000px;
    opacity: 1;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-cat__panel {
    transition: none;
  }

  .navarc-mobile-cat__panel-inner {
    min-height: 0;
  }

  .navarc-mobile-cat__rail {
    display: flex;
    gap: 5px;
    margin: 16px 0 18px;
    padding: 0 0 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .navarc-mobile-cat__rail::-webkit-scrollbar {
    display: none;
  }

  .navarc-mobile-cat__card {
    position: relative;
    flex: 0 0 27%;
    min-width: 96px;
    scroll-snap-align: start;
    aspect-ratio: 0.78 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: #111111;
    display: block;
  }

  .navarc-mobile-cat__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0) 55%);
  }

  .navarc-mobile-cat__card-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }

  .navarc-mobile-cat__card-label {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    line-height: 1.25;
    font-weight: 500;
    text-transform: uppercase;
  }

  .navarc-mobile-cat__desc {
    max-width: 85%;
    margin: 0 0 16px;
    font-size: clamp(19px, calc(14.25px + 0.247396vw), 23.75px);
    line-height: 1.2;
    font-weight: 400;
    color: #111111;
  }

  .navarc-mobile-cat__cta {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 22px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--nm-accent);
    color: #ffffff;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  @media (hover: hover) and (pointer: fine) {
    .navarc-mobile-cat__cta:hover {
      background: var(--nm-accent-hover);
    }
  }

  /* ---------- Utility links ---------- */
  .navarc-mobile-utility {
    display: flex;
    flex-direction: column;
    padding: 4px var(--nm-gutter) 24px;
  }

  .navarc-mobile-utility a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: #555555;
  }

  .navarc-mobile-utility a:last-child {
    border-bottom: none;
  }

  /* ---------- Focus visibility ---------- */
  .navarc-mobile-header a:focus-visible,
  .navarc-mobile-header button:focus-visible,
  .navarc-mobile-panel a:focus-visible,
  .navarc-mobile-panel button:focus-visible {
    outline: 2px solid var(--nm-accent);
    outline-offset: 2px;
    overflow: visible;
  }
}

/* =====================================================================
   NAVARC MOBILE DETAIL PAGES — Faz 2
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-detail-* classes
   (plus the .navarc-mobile-hide utility) that do not exist anywhere
   else in this file. Nothing here overrides .site-header / .nav /
   .mega / .btn / section / img or any other pre-existing selector, and
   desktop (min-width: 993px) and the 641–992px tablet range are
   untouched. Reuses the --nm-* custom properties defined by Faz 1.
   ===================================================================== */

/* Utility: applied directly on an existing DESKTOP section element to
   suppress it only at the phone breakpoint, once its content has been
   duplicated into a .navarc-mobile-detail-* block below. The element
   itself is never removed from the DOM — only hidden by CSS, and only
   under (max-width: 640px). */
.navarc-mobile-hide {
  /* no-op above 640px */
}

.navarc-mobile-detail {
  display: none;
}

@media (max-width: 640px) {
  .navarc-mobile-hide {
    display: none !important;
  }

  .navarc-mobile-detail {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
  }

  /* ---------- Hero (video/photo slider) ---------- */
  .navarc-mobile-detail-hero {
    /* Full-bleed photo hero — keep light text regardless of the white
       theme now used by the rest of the page (title is already
       hardcoded #fff, but the eyebrow/subtitle use --nm-text-secondary
       which the root override turns dark; re-shadow it back to light
       here). */
    --nm-text-secondary: rgba(255, 255, 255, 0.85);

    position: relative;
    width: 100%;
  }

  .navarc-mobile-detail-hero__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .navarc-mobile-detail-hero__track::-webkit-scrollbar {
    display: none;
  }

  .navarc-mobile-detail-hero__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    height: 100svh;
    min-height: 480px;
  }

  .navarc-mobile-detail-hero__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .navarc-mobile-detail-hero__scrim {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
  }

  .navarc-mobile-detail-hero__caption {
    position: absolute;
    left: var(--nm-gutter);
    right: var(--nm-gutter);
    bottom: 28px;
    color: #ffffff;
  }

  .navarc-mobile-detail-hero__eyebrow {
    display: block;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-text-secondary);
    margin: 0 0 8px;
  }

  .navarc-mobile-detail-hero__title {
    font-size: clamp(28px, max(min(8vw, 38px), calc(28.5px + 0.494792vw)), 47.5px);
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 10px;
    color: #ffffff;
  }

  .navarc-mobile-detail-hero__text {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.5;
    color: var(--nm-text-secondary);
    margin: 0;
  }

  .navarc-mobile-detail-hero__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
  }

  .navarc-mobile-detail-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
  }

  .navarc-mobile-detail-hero__dot.is-active {
    background: #ffffff;
  }

  /* ---------- Stacked media + caption gallery ---------- */
  .navarc-mobile-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }

  .navarc-mobile-detail-gallery__item {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  .navarc-mobile-detail-gallery__media {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .navarc-mobile-detail-gallery__caption {
    padding: 24px var(--nm-gutter) 32px;
  }

  .navarc-mobile-detail-gallery__caption h2,
  .navarc-mobile-detail-gallery__caption h3 {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    line-height: 1.25;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 10px;
  }

  .navarc-mobile-detail-gallery__caption p {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0;
  }

  /* ---------- Full-bleed spotlight ---------- */
  .navarc-mobile-detail-spotlight {
    position: relative;
    display: block;
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    margin-bottom: 12px;
  }

  .navarc-mobile-detail-spotlight:last-of-type {
    margin-bottom: 0;
  }

  .navarc-mobile-detail-spotlight__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
  }

  .navarc-mobile-detail-spotlight__body {
    position: absolute;
    left: var(--nm-gutter);
    right: var(--nm-gutter);
    bottom: 26px;
  }

  .navarc-mobile-detail-spotlight__title {
    display: block;
    font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 6px;
  }

  .navarc-mobile-detail-spotlight__cta {
    display: inline-block;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ---------- CTA pair ---------- */
  .navarc-mobile-detail-ctapair {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px var(--nm-gutter) 36px;
    background: var(--nm-bg, #000000);
  }

  .navarc-mobile-detail-ctapair .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    line-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* ---------- FAQ accordion ---------- */
  .navarc-mobile-detail-faq {
    padding: 8px var(--nm-gutter) 36px;
    background: var(--nm-bg, #000000);
  }

  .navarc-mobile-detail-faq__intro {
    font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 24px 0 16px;
  }

  .navarc-mobile-detail-faq__item {
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-detail-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    font-weight: 500;
    color: var(--nm-text);
    padding: 12px 0;
  }

  .navarc-mobile-detail-faq__q-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    position: relative;
  }

  .navarc-mobile-detail-faq__q-icon::before,
  .navarc-mobile-detail-faq__q-icon::after {
    content: '';
    position: absolute;
    background: var(--nm-text);
    transition: transform 0.2s ease;
  }

  .navarc-mobile-detail-faq__q-icon::before {
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
  }

  .navarc-mobile-detail-faq__q-icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
  }

  .navarc-mobile-detail-faq__item.is-open .navarc-mobile-detail-faq__q-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .navarc-mobile-detail-faq__a {
    padding: 0 0 18px;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
  }
}

/* =====================================================================
   NAVARC MOBILE ABOUT — Faz 3
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-about-* classes
   that do not exist anywhere else in this file. Nothing here overrides
   .site-header / .nav / .mega / .btn / section / img or any other
   pre-existing selector, and desktop layout plus the 641–992px tablet
   range are untouched. Reuses the --nm-* custom properties defined by
   Faz 1.

   about.html's real content is a single short intro (h1 + p, no photo,
   no cards, no story copy, no CTAs) — so this block is intentionally
   just a large-type intro panel; every other block named in the Faz 3
   brief (value cards, story copy, wide image, vision, focus areas,
   interior photos, principles accordion) has no counterpart in the
   page and is skipped per the "use real content only" rule. */
.navarc-mobile-about {
  display: none;
}

@media (max-width: 640px) {
  .navarc-mobile-about {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
  }

  .navarc-mobile-about-hero {
    display: flex;
    align-items: center;
    min-height: 60svh;
    padding: calc(var(--nm-header-height) + 32px) var(--nm-gutter) 40px;
  }

  .navarc-mobile-about-hero__inner {
    width: 100%;
  }

  .navarc-mobile-about-hero__title {
    font-size: clamp(30px, max(min(9vw, 42px), calc(31.5px + 0.546875vw)), 52.5px);
    line-height: 1.12;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 14px;
  }

  .navarc-mobile-about-hero__text {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0;
    max-width: 30em;
  }
}

/* =====================================================================
   NAVARC MOBILE BLOG/NEWS — Faz 4
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-blog-* classes
   that do not exist anywhere else in this file (shared by both the
   blog.html/newsroom.html list pages and the article detail pages).
   Nothing here overrides .site-header / .nav / .mega / .btn / section /
   img or any other pre-existing selector, and desktop (min-width: 993px)
   plus the 641–992px tablet range are untouched. Reuses the --nm-*
   custom properties defined by Faz 1, and the .navarc-mobile-hide
   utility defined by Faz 2. */

.navarc-mobile-blog-list,
.navarc-mobile-blog-detail {
  display: none;
}

@media (max-width: 640px) {
  /* ---------- Shared list (blog.html / newsroom.html) ---------- */
  .navarc-mobile-blog-list {
    /* Local token override: white surface + dark text for blog/newsroom
       only. Every var(--nm-text)/var(--nm-bg) reference in this block's
       descendants inherits these instead of the site-wide dark-theme
       root values, without touching any other page's colors. */
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
    padding-top: calc(var(--nm-header-height) + 24px);
    padding-bottom: 8px;
  }

  .navarc-mobile-blog-list__head {
    padding: 0 var(--nm-gutter) 28px;
  }

  .navarc-mobile-blog-list__head h1 {
    font-size: clamp(30px, max(min(9vw, 40px), calc(30px + 0.520833vw)), 50px);
    line-height: 1.1;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 10px;
  }

  .navarc-mobile-blog-list__head p {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0;
    max-width: 34em;
  }

  .navarc-mobile-blog-list__featured {
    display: block;
    text-decoration: none;
    margin: 0 0 8px;
  }

  .navarc-mobile-blog-list__featured-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--nm-surface);
    background-size: cover;
    background-position: center;
  }

  .navarc-mobile-blog-list__featured-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .navarc-mobile-blog-list__featured-body {
    padding: 18px var(--nm-gutter) 28px;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-blog-list__badge {
    display: inline-block;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-accent);
    margin: 0 10px 8px 0;
  }

  .navarc-mobile-blog-list__date {
    display: inline-block;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    color: var(--nm-text-muted);
    letter-spacing: 0.02em;
    margin: 0 0 8px;
  }

  .navarc-mobile-blog-list__featured-title {
    font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
    line-height: 1.25;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 10px;
  }

  .navarc-mobile-blog-list__excerpt {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0 0 14px;
  }

  .navarc-mobile-blog-list__link {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .navarc-mobile-blog-list__grid {
    display: flex;
    flex-direction: column;
  }

  .navarc-mobile-blog-list__card {
    display: block;
    text-decoration: none;
    padding: 22px var(--nm-gutter);
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-blog-list__card.is-hidden {
    display: none;
  }

  .navarc-mobile-blog-list__card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--nm-surface);
    background-size: cover;
    background-position: center;
  }

  .navarc-mobile-blog-list__card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .navarc-mobile-blog-list__card-title {
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
    line-height: 1.3;
    font-weight: 500;
    color: var(--nm-text);
    margin: 6px 0 0;
  }

  .navarc-mobile-blog-list__loadmore {
    padding: 24px var(--nm-gutter) 8px;
  }

  .navarc-mobile-blog-list__loadmore button {
    display: block;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: transparent;
    color: var(--nm-text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 500;
    cursor: pointer;
  }

  .navarc-mobile-blog-list__loadmore[hidden] {
    display: none;
  }

  .navarc-mobile-blog-list__contact {
    margin-top: 12px;
    padding: 32px var(--nm-gutter) 40px;
    border-top: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-blog-list__eyebrow {
    margin: 0 0 10px;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nm-accent);
  }

  .navarc-mobile-blog-list__contact-text {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    line-height: 1.6;
    color: var(--nm-text);
    margin: 0 0 20px;
  }

  .navarc-mobile-blog-list__contact-text a {
    color: var(--nm-text);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .navarc-mobile-blog-list__contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .navarc-mobile-blog-list__contact-links a {
    display: block;
    min-height: 48px;
    line-height: 46px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--nm-text);
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    text-decoration: none;
  }

  /* ---------- Shared detail (blog/*.html / newsroom/*.html posts) ---------- */
  .navarc-mobile-blog-detail {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
  }

  .navarc-mobile-blog-detail__top {
    padding: calc(var(--nm-header-height) + 28px) var(--nm-gutter) 24px;
  }

  .navarc-mobile-blog-detail__back {
    display: inline-block;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-text-secondary);
    text-decoration: none;
    margin-bottom: 24px;
  }

  .navarc-mobile-blog-detail__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }

  .navarc-mobile-blog-detail__category {
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-accent);
  }

  .navarc-mobile-blog-detail__date {
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    color: var(--nm-text-muted);
  }

  .navarc-mobile-blog-detail__title {
    font-size: clamp(26px, max(min(8vw, 32px), calc(24px + 0.416667vw)), 40px);
    line-height: 1.15;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0;
  }

  .navarc-mobile-blog-detail__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .navarc-mobile-blog-detail__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .navarc-mobile-blog-detail__lead {
    padding: 28px var(--nm-gutter);
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-blog-detail__lead h2 {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0;
  }

  .navarc-mobile-blog-detail__body {
    padding: 0 var(--nm-gutter) 8px;
  }

  .navarc-mobile-blog-detail__row {
    padding: 20px 0;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-blog-detail__row:last-child {
    border-bottom: 0;
  }

  .navarc-mobile-blog-detail__row h3 {
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 10px;
  }

  .navarc-mobile-blog-detail__row p {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    line-height: 1.7;
    color: var(--nm-text-secondary);
    margin: 0 0 12px;
  }

  .navarc-mobile-blog-detail__row p:last-child {
    margin-bottom: 0;
  }

  .navarc-mobile-blog-detail__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px var(--nm-gutter) 40px;
  }

  .navarc-mobile-blog-detail__ctas .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    line-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navarc-mobile-blog-detail__ctas a:not(.btn) {
    display: block;
    min-height: 48px;
    line-height: 46px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--nm-text);
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    text-decoration: none;
  }
}

/* =====================================================================
   NAVARC MOBILE CAREERS — Faz 5
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-career-* classes
   (plus the pre-existing .navarc-mobile-hide utility) that do not exist
   anywhere else in this file. Nothing here overrides .site-header /
   .nav / .mega / .btn / section / img / :root / body or any other
   pre-existing selector, and desktop (min-width: 993px) and the
   641–992px tablet range are untouched. Reuses the --nm-* custom
   properties defined by Faz 1.
   ===================================================================== */

.navarc-mobile-career {
  display: none;
}

.navarc-mobile-career-sticky {
  display: none;
}

@media (max-width: 640px) {
  .navarc-mobile-career {
    /* White surface / dark text for the career section body. The
       full-bleed photo heroes below re-shadow --nm-text back to white
       for their own scope, since they need light text over a photo
       regardless of the surrounding section's theme. */
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
  }

  /* ---------- Hero ---------- */
  .navarc-mobile-career-hero {
    --nm-text: #ffffff;
    --nm-text-secondary: rgba(255, 255, 255, 0.85);

    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .navarc-mobile-career-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .navarc-mobile-career-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.88) 100%);
  }

  .navarc-mobile-career-hero__content {
    position: relative;
    padding: calc(var(--nm-header-height, 73px) + env(safe-area-inset-top, 0px) + 24px) var(--nm-gutter) 8px;
  }

  .navarc-mobile-career-hero__eyebrow {
    display: block;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-text-secondary);
    margin-bottom: 12px;
  }

  .navarc-mobile-career-hero__title {
    font-size: clamp(30px, max(min(10vw, 42px), calc(31.5px + 0.546875vw)), 52.5px);
    line-height: 1.12;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 22px;
  }

  .navarc-mobile-career-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
  }

  .navarc-mobile-career-hero__ctas a {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 50px;
    line-height: 50px;
    border-radius: 999px;
    text-decoration: none;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 600;
  }

  .navarc-mobile-career-hero__ctas a.is-solid {
    background: var(--nm-text);
    color: #000000;
  }

  .navarc-mobile-career-hero__ctas a.is-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--nm-text);
  }

  .navarc-mobile-career-hero__scroll {
    align-self: center;
    margin: 18px 0 26px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nm-text);
  }

  .navarc-mobile-career-hero__scroll svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

  /* ---------- Intro ---------- */
  .navarc-mobile-career-intro {
    padding: 28px var(--nm-gutter);
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-intro p {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0;
  }

  /* ---------- Open jobs list + filter ---------- */
  .navarc-mobile-career-jobs {
    padding: 28px var(--nm-gutter) 8px;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-jobs__heading {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 16px;
  }

  .navarc-mobile-career-jobs__filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
  }

  .navarc-mobile-career-jobs__search,
  .navarc-mobile-career-jobs__select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    background: var(--nm-surface);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--nm-text);
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
  }

  .navarc-mobile-career-jobs__search::placeholder {
    color: var(--nm-text-muted);
  }

  .navarc-mobile-career-jobs__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b8b8b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
  }

  .navarc-mobile-career-job-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--nm-line-dark);
    text-decoration: none;
  }

  .navarc-mobile-career-job-card:last-child {
    border-bottom: 0;
  }

  .navarc-mobile-career-job-card.is-filtered-out {
    display: none;
  }

  .navarc-mobile-career-job-card__img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex: none;
  }

  .navarc-mobile-career-job-card__title {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 4px;
  }

  .navarc-mobile-career-job-card__meta {
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    color: var(--nm-text-muted);
    margin: 0;
  }

  .navarc-mobile-career-jobs__empty {
    display: none;
    padding: 18px 0;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    color: var(--nm-text-muted);
  }

  .navarc-mobile-career-jobs__empty.is-visible {
    display: block;
  }

  /* ---------- Culture ---------- */
  .navarc-mobile-career-culture {
    padding: 28px 0;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-culture__heading {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 14px;
    padding: 0 var(--nm-gutter);
  }

  .navarc-mobile-career-culture__list {
    padding: 0 var(--nm-gutter);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .navarc-mobile-career-culture__list p {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0;
  }

  .navarc-mobile-career-culture__gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 var(--nm-gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .navarc-mobile-career-culture__gallery::-webkit-scrollbar {
    display: none;
  }

  .navarc-mobile-career-culture__gallery img {
    width: 78vw;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    flex: none;
    scroll-snap-align: start;
  }

  /* ---------- Location + map touch-guard ---------- */
  .navarc-mobile-career-location {
    padding: 28px var(--nm-gutter);
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-location__heading {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 14px;
  }

  .navarc-mobile-career-location__city {
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nm-accent);
    margin-bottom: 6px;
  }

  .navarc-mobile-career-location__address {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    color: var(--nm-text);
    margin: 0 0 8px;
  }

  .navarc-mobile-career-location__blurb {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0 0 14px;
  }

  .navarc-mobile-career-location__links {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }

  .navarc-mobile-career-location__links a {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text);
    text-decoration: underline;
  }

  .navarc-mobile-career-location__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    display: block;
  }

  .navarc-mobile-career-map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
  }

  .navarc-mobile-career-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
  }

  .navarc-mobile-career-map.is-active iframe {
    pointer-events: auto;
  }

  .navarc-mobile-career-map__veil {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    font-weight: 600;
    text-align: center;
    padding: 12px;
    border: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
  }

  .navarc-mobile-career-map.is-active .navarc-mobile-career-map__veil {
    display: none;
  }

  /* ---------- About Navarc ---------- */
  .navarc-mobile-career-about {
    padding: 28px var(--nm-gutter);
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-about h2 {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 10px;
  }

  .navarc-mobile-career-about p {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0 0 16px;
  }

  .navarc-mobile-career-about dl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 16px;
  }

  .navarc-mobile-career-about dt {
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nm-text-muted);
    margin-bottom: 2px;
  }

  .navarc-mobile-career-about dd {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    color: var(--nm-text-secondary);
    margin: 0;
  }

  .navarc-mobile-career-about a.btn {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 48px;
    line-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* ---------- Referral ---------- */
  .navarc-mobile-career-referral {
    padding: 32px var(--nm-gutter);
    text-align: center;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-referral h2 {
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 8px;
  }

  .navarc-mobile-career-referral p {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    color: var(--nm-text-secondary);
    margin: 0 0 16px;
  }

  .navarc-mobile-career-referral a {
    display: inline-block;
    padding: 0 26px;
    min-height: 46px;
    line-height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--nm-text);
    text-decoration: none;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
  }

  /* ---------- Career footer ---------- */
  .navarc-mobile-career-footer {
    padding: 28px var(--nm-gutter) 40px;
  }

  .navarc-mobile-career-footer__col {
    margin-bottom: 22px;
  }

  .navarc-mobile-career-footer__col h4 {
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nm-text-muted);
    margin: 0 0 10px;
  }

  .navarc-mobile-career-footer__col a {
    display: block;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    color: var(--nm-text-secondary);
    text-decoration: none;
    padding: 6px 0;
  }

  .navarc-mobile-career-footer__brand {
    display: block;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    color: var(--nm-text);
    text-decoration: none;
    margin-bottom: 12px;
  }

  .navarc-mobile-career-footer__socials {
    display: flex;
    gap: 16px;
  }

  .navarc-mobile-career-footer__socials a {
    padding: 0;
  }

  .navarc-mobile-career-footer__socials svg {
    width: 20px;
    height: 20px;
    fill: var(--nm-text-secondary);
  }

  /* ---------- Connect page (Tulkas kariyer/connect layout: light,
     two-panel-that-stacks-on-mobile, row-list with circle radios) ---------- */
  .career-connect-body .navarc-mobile-header {
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  .career-connect-body .navarc-mobile-header::before {
    opacity: 0;
  }

  .career-connect-body .navarc-mobile-header__logo--light {
    display: none;
  }

  .career-connect-body .navarc-mobile-header__logo--dark {
    display: inline-block;
  }

  .career-connect-body .navarc-mobile-lang__toggle {
    color: #111111;
    border-color: rgba(0, 0, 0, 0.2);
  }

  .career-connect-body .navarc-mobile-burger__bar {
    background: #111111;
  }

  .navarc-mobile-career-connect-page {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #666666;
    background: var(--nm-bg);
  }

  .navarc-mobile-career-connect-page__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--nm-header-height) + 20px) var(--nm-gutter) 8px;
  }

  .navarc-mobile-career-connect-page__home {
    position: absolute;
    left: var(--nm-gutter);
    top: 50%;
    transform: translateY(-50%);
    color: var(--nm-text);
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .navarc-mobile-career-connect-page__home svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .navarc-mobile-career-connect-page__logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--nm-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
    color: var(--nm-text);
  }

  .navarc-mobile-career-connect {
    padding: 20px var(--nm-gutter) 40px;
  }

  .navarc-mobile-career-connect h1 {
    font-size: clamp(24px, max(min(8vw, 30px), calc(22.5px + 0.390625vw)), 37.5px);
    font-weight: 600;
    color: var(--nm-text);
    margin: 0 0 20px;
    text-align: center;
  }

  .navarc-mobile-career-connect__list {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    max-height: 46vh;
    overflow-y: auto;
  }

  .navarc-mobile-career-connect__option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .navarc-mobile-career-connect__option:last-child {
    border-bottom: none;
  }

  .navarc-mobile-career-connect__option input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
  }

  .navarc-mobile-career-connect__option span {
    display: block;
    color: var(--nm-text);
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
  }

  .navarc-mobile-career-connect__option::after {
    content: '';
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #999999;
    box-sizing: border-box;
  }

  .navarc-mobile-career-connect__option:has(input:checked)::after {
    border-color: var(--nm-text);
    background: radial-gradient(circle, var(--nm-text) 0 5px, transparent 6px);
  }

  .navarc-mobile-career-connect__option input:focus-visible + span {
    outline: 2px solid var(--nm-accent);
    outline-offset: 2px;
  }

  .navarc-mobile-career-connect__submit {
    display: block;
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    border: 0;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    font-weight: 600;
    font-family: inherit;
  }

  .navarc-mobile-career-connect__signin {
    margin-top: 16px;
    text-align: center;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text-secondary);
  }

  .navarc-mobile-career-connect__signin a {
    color: var(--nm-text);
  }

  /* ---------- Connect page: feature list (stacks below the form) ---------- */
  .navarc-mobile-career-connect-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 8px var(--nm-gutter) 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .navarc-mobile-career-connect-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .navarc-mobile-career-connect-feature__icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    margin-top: 2px;
  }

  .navarc-mobile-career-connect-feature__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--nm-text);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .navarc-mobile-career-connect-feature h3 {
    margin: 0 0 4px;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    font-weight: 600;
    color: var(--nm-text);
  }

  .navarc-mobile-career-connect-feature p {
    margin: 0;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.5;
    color: var(--nm-text-secondary);
  }

  /* ---------- Job detail ---------- */
  .navarc-mobile-career-detail__hero {
    --nm-text: #ffffff;
    --nm-text-secondary: rgba(255, 255, 255, 0.85);

    position: relative;
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .navarc-mobile-career-detail__hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .navarc-mobile-career-detail__hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.9) 100%);
  }

  .navarc-mobile-career-detail__hero-content {
    position: relative;
    padding: calc(var(--nm-header-height, 73px) + env(safe-area-inset-top, 0px) + 24px) var(--nm-gutter) 28px;
  }

  .navarc-mobile-career-detail__eyebrow {
    display: block;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nm-text-secondary);
    margin-bottom: 12px;
  }

  .navarc-mobile-career-detail__title {
    font-size: clamp(26px, max(min(8vw, 34px), calc(25.5px + 0.442708vw)), 42.5px);
    line-height: 1.15;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 20px;
  }

  .navarc-mobile-career-detail__apply {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 50px;
    line-height: 50px;
    border-radius: 999px;
    background: var(--nm-text);
    color: #000000;
    text-decoration: none;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 600;
  }

  .navarc-mobile-career-detail__body {
    padding: 28px var(--nm-gutter) 8px;
  }

  .navarc-mobile-career-detail__intro {
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0 0 18px;
  }

  .navarc-mobile-career-detail__row {
    padding: 18px 0;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-detail__row h2 {
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 10px;
  }

  .navarc-mobile-career-detail__row ul {
    margin: 0;
    padding-left: 18px;
  }

  .navarc-mobile-career-detail__row li {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin-bottom: 8px;
  }

  .navarc-mobile-career-detail__row li:last-child {
    margin-bottom: 0;
  }

  .navarc-mobile-career-detail__row p {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
    margin: 0;
  }

  .navarc-mobile-career-detail__tags {
    display: flex;
    gap: 22px;
    padding: 18px 0;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-detail__tags div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .navarc-mobile-career-detail__tags-label {
    font-size: clamp(10px, calc(7.5px + 0.130208vw), 12.5px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nm-text-muted);
  }

  .navarc-mobile-career-detail__tags span:not(.navarc-mobile-career-detail__tags-label) {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text-secondary);
  }

  .navarc-mobile-career-detail__related {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 0 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .navarc-mobile-career-detail__related::-webkit-scrollbar {
    display: none;
  }

  .navarc-mobile-career-detail__related-card {
    flex: none;
    width: 62vw;
    max-width: 240px;
    text-decoration: none;
    scroll-snap-align: start;
  }

  .navarc-mobile-career-detail__related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .navarc-mobile-career-detail__related-title {
    display: block;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 500;
    color: var(--nm-text);
    margin-bottom: 3px;
  }

  .navarc-mobile-career-detail__related-meta {
    display: block;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    color: var(--nm-text-muted);
  }

  .navarc-mobile-career-detail__back {
    display: block;
    padding: 20px 0 4px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text-secondary);
    text-decoration: underline;
  }

  /* ---------- Application form ---------- */
  .navarc-mobile-career-form {
    padding: 28px var(--nm-gutter) 40px;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-career-form__eyebrow {
    display: block;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nm-text-muted);
    margin-bottom: 6px;
  }

  .navarc-mobile-career-form h2 {
    font-size: clamp(19px, calc(14.25px + 0.247396vw), 23.75px);
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 18px;
  }

  .navarc-mobile-career-form__field {
    margin-bottom: 16px;
  }

  .navarc-mobile-career-form__field label {
    display: block;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text-secondary);
    margin-bottom: 6px;
  }

  .navarc-mobile-career-form__field textarea,
  .navarc-mobile-career-form__field input[type="text"],
  .navarc-mobile-career-form__field input[type="file"] {
    width: 100%;
    background: var(--nm-surface);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--nm-text);
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    padding: 10px 12px;
    font-family: inherit;
    box-sizing: border-box;
  }

  .navarc-mobile-career-form__field input[type="file"] {
    padding: 8px 10px;
  }

  .navarc-mobile-career-form__submit {
    display: block;
    width: 100%;
    min-height: 50px;
    border-radius: 999px;
    background: var(--nm-text);
    color: #000000;
    border: 0;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 600;
    font-family: inherit;
    margin-top: 6px;
  }

  /* ---------- Sticky Apply CTA ---------- */
  .navarc-mobile-career-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 12px var(--nm-gutter) calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--nm-line-dark);
    transform: translateY(100%);
    transition: transform 0.25s ease;
  }

  .navarc-mobile-career-sticky.is-visible {
    transform: translateY(0);
  }

  .navarc-mobile-career-sticky a {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 48px;
    line-height: 48px;
    border-radius: 999px;
    background: var(--nm-accent);
    color: #ffffff;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 600;
    text-decoration: none;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-career-sticky {
    transition: none;
  }
}

/* =====================================================================
   NAVARC MOBILE FAQ — Faz 6
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-faq-* classes
   (plus the pre-existing .navarc-mobile-hide utility) that do not exist
   anywhere else in this file. Nothing here overrides .site-header /
   .nav / .mega / .btn / section / img / :root / body or any other
   pre-existing selector, and desktop (min-width: 993px) and the
   641–992px tablet range are untouched. Reuses the --nm-* custom
   properties defined by Faz 1.
   ===================================================================== */

.navarc-mobile-faq {
  display: none;
}

@media (max-width: 640px) {
  .navarc-mobile-faq {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
  }

  /* ---------- Hero ---------- */
  .navarc-mobile-faq__hero {
    padding: calc(var(--nm-header-height, 73px) + env(safe-area-inset-top, 0px) + 28px) var(--nm-gutter) 4px;
    text-align: center;
  }

  .navarc-mobile-faq__title {
    font-size: clamp(28px, max(min(9vw, 40px), calc(30px + 0.520833vw)), 50px);
    line-height: 1.15;
    font-weight: 500;
    color: var(--nm-text);
    margin: 0 0 12px;
  }

  .navarc-mobile-faq__desc {
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.55;
    color: var(--nm-text-secondary);
    max-width: 340px;
    margin: 0 auto;
  }

  /* ---------- Category filter panel ---------- */
  .navarc-mobile-faq__cats {
    padding: 22px var(--nm-gutter) 0;
  }

  .navarc-mobile-faq__cats-track {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--nm-surface);
    border-radius: 20px;
    padding: 6px;
  }

  .navarc-mobile-faq__cats-track::-webkit-scrollbar {
    display: none;
  }

  .navarc-mobile-faq__cat {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--nm-text-muted);
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    font-weight: 500;
    line-height: 36px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .navarc-mobile-faq__cat.is-active {
    background: #ffffff;
    color: #111111;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-faq__cat {
    transition: none;
  }

  /* ---------- Numbered single-open accordion ---------- */
  .navarc-mobile-faq__list {
    padding: 18px var(--nm-gutter) 28px;
  }

  .navarc-mobile-faq__item {
    display: none;
    border-bottom: 1px solid var(--nm-line-dark);
  }

  .navarc-mobile-faq__item.is-visible {
    display: block;
  }

  .navarc-mobile-faq__item-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: 0;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .navarc-mobile-faq__item-number {
    flex: none;
    padding-top: 2px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    font-weight: 500;
    color: var(--nm-text-muted);
  }

  .navarc-mobile-faq__item-text {
    flex: 1;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--nm-text);
  }

  .navarc-mobile-faq__item-icon {
    flex: none;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nm-accent);
    font-size: clamp(20px, calc(15px + 0.260417vw), 25px);
    font-weight: 400;
    line-height: 1;
    transition: transform 0.25s ease;
  }

  .navarc-mobile-faq__item.is-open .navarc-mobile-faq__item-icon {
    transform: rotate(45deg);
  }

  .navarc-mobile-faq__item-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navarc-mobile-faq__item-a-inner {
    padding: 0 0 18px 34px;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
  }

  .navarc-mobile-faq__item-a-inner p {
    margin: 0;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-faq__item-a,
  .navarc-mobile-reduce-motion .navarc-mobile-faq__item-icon {
    transition: none;
  }
}

/* =====================================================================
   NAVARC MOBILE CONTACT — Faz 7
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-contact-* classes
   (plus the pre-existing .navarc-mobile-hide utility). Nothing here
   overrides .site-header / .nav / .mega / .btn / section / img or any
   other pre-existing selector, and desktop (min-width: 993px) and the
   641–992px tablet range are untouched. Reuses the --nm-* custom
   properties defined by Faz 1.
   Pages: contact.html, content.html, meeting.html, test-drive.html
   (+ tr/ equivalents).
   ===================================================================== */

.navarc-mobile-contact-formpage,
.navarc-mobile-contact-page {
  display: none;
}

@media (max-width: 640px) {
  /* Remove the legacy desktop page inset only on contact pages. */
  body.navarc-contact-page .page {
    width: 100%;
    min-height: 100dvh;
    padding: 0;
  }

  /* ---------- Shared: simple form pages (contact/meeting/test-drive) --- */
  .navarc-mobile-contact-formpage {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
    color: var(--nm-text);
    padding: 32px var(--nm-gutter, 20px) 56px;
  }

  .navarc-mobile-contact-formpage__hero {
    margin-bottom: 28px;
  }

  .navarc-mobile-contact-formpage__title {
    font-size: clamp(32px, calc(24px + 0.416667vw), 40px);
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--nm-text, #ffffff);
  }

  .navarc-mobile-contact-formpage__desc {
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    line-height: 1.55;
    color: var(--nm-text-secondary, #d9d9d9);
    margin: 0;
  }

  .navarc-mobile-contact-formpage__form {
    display: grid;
    gap: 16px;
  }

  .navarc-mobile-contact-formpage__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .navarc-mobile-contact-formpage__label {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: var(--nm-text-secondary, #d9d9d9);
    letter-spacing: 0.02em;
  }

  .navarc-mobile-contact-formpage__field input,
  .navarc-mobile-contact-formpage__field textarea {
    min-height: 48px;
    padding: 12px 14px;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    font-family: inherit;
    background: var(--nm-panel-bg, #ffffff);
    color: var(--nm-panel-text, #111111);
    border: 1px solid var(--nm-line-dark, #28292b);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .navarc-mobile-contact-formpage__field textarea {
    min-height: 140px;
    resize: vertical;
  }

  .navarc-mobile-contact-formpage__field input:focus,
  .navarc-mobile-contact-formpage__field textarea:focus {
    outline: none;
    border-color: var(--nm-accent, #1f5eff);
  }

  .navarc-mobile-contact-formpage__submit {
    min-height: 48px;
    width: 100%;
    border: none;
    border-radius: 999px;
    background: var(--nm-text, #ffffff);
    color: var(--nm-bg, #000000);
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
  }

  /* ---------- Shared: touch-gated map (Leaflet or iframe embed) -------- */
  .navarc-mobile-contact-map {
    position: relative;
    width: 100%;
    height: 240px;
    margin: 20px 0 28px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--nm-surface-alt, #1a1a1a);
    touch-action: pan-y;
  }

  .navarc-mobile-contact-map iframe,
  .navarc-mobile-contact-map__canvas {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .navarc-mobile-contact-map.is-active {
    touch-action: auto;
  }

  .navarc-mobile-contact-map__gate {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    font-weight: 500;
    cursor: pointer;
  }

  .navarc-mobile-contact-map__gate-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: block;
  }

  .navarc-mobile-contact-map.is-active .navarc-mobile-contact-map__gate {
    display: none;
  }

  /* ---------- content.html / contact.html: rich contact page ---------- */
  .navarc-mobile-contact-page {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-surface-alt: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    width: 100%;
    min-height: 100dvh;
    overflow-x: clip;
    background: var(--nm-bg);
  }

  .navarc-mobile-contact-page__hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 32px var(--nm-gutter, 20px) 48px;
  }

  .navarc-mobile-contact-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
  }

  .navarc-mobile-contact-page__hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
  }

  .navarc-mobile-contact-page__hero-content h1 {
    font-size: clamp(43px, calc(32.25px + 0.559896vw), 53.75px);
    line-height: 0.95;
    font-weight: 400;
    margin: 0 0 8px;
  }

  .navarc-mobile-contact-page__hero-line {
    font-size: clamp(43px, calc(32.25px + 0.559896vw), 53.75px);
    line-height: 0.95;
    margin: 0 0 18px;
    color: #ffffff;
  }

  .navarc-mobile-contact-page__hero-made {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    color: #d9d9d9;
    margin: 0;
  }

  .navarc-mobile-contact-page__hero-made img {
    width: 20px;
    height: auto;
  }

  /* Mirrors desktop contact information spacing on the light theme. */
  .navarc-mobile-contact-page__info {
    background: var(--nm-bg);
    padding: 64px;
    text-align: left;
    color: var(--nm-text, #ffffff);
    border-top: 1px solid var(--nm-line-dark, #2a2a2a);
  }

  .navarc-mobile-contact-page__info h3 {
    font-size: clamp(35px, calc(26.25px + 0.455729vw), 43.75px);
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 500;
  }

  .navarc-mobile-contact-page__info p {
    font-size: clamp(17.6px, calc(13.2px + 0.229167vw), 22px);
    line-height: 1.5;
    color: var(--nm-text-secondary);
    margin: 0 0 3px;
  }

  .navarc-mobile-contact-page__info a {
    color: var(--nm-text, #ffffff);
    text-decoration: none;
  }

  .navarc-mobile-contact-page__info-email {
    margin-top: 24px !important;
  }

  .navarc-mobile-contact-page__socials {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 32px;
  }

  .navarc-mobile-contact-page__socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nm-surface);
    color: var(--nm-text);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navarc-mobile-contact-page__socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .navarc-mobile-contact-page .navarc-mobile-contact-map {
    margin-left: var(--nm-gutter, 20px);
    margin-right: var(--nm-gutter, 20px);
    width: calc(100% - (var(--nm-gutter, 20px) * 2));
  }

  .navarc-mobile-contact-page__form-section {
    padding: 96px 20px;
    border-top: 1px solid var(--nm-line-dark, #28292b);
  }

  .navarc-mobile-contact-page__form-section h2 {
    font-size: clamp(40px, calc(30px + 0.520833vw), 50px);
    color: var(--nm-text, #ffffff);
    margin: 0 0 16px;
    font-weight: 500;
    text-align: center;
  }

  .navarc-mobile-contact-page__form-subtitle {
    font-size: clamp(17.6px, calc(13.2px + 0.229167vw), 22px);
    color: var(--nm-text-muted);
    margin: 0 0 48px;
    text-align: center;
  }

  .navarc-mobile-contact-page__form {
    display: grid;
    gap: 24px;
  }

  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__field input,
  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__field textarea {
    background: transparent;
    color: var(--nm-text);
    border: 1px solid var(--nm-line-dark);
    padding: 19px;
  }

  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__field textarea {
    min-height: 150px;
  }

  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__field input::placeholder,
  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__field textarea::placeholder {
    color: var(--nm-text-muted);
  }

  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__submit {
    background: var(--nm-text);
    color: var(--nm-bg);
    padding: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .navarc-mobile-contact-page__form .navarc-mobile-contact-formpage__submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

  .navarc-mobile-contact-page__faq {
    padding: 40px 20px;
    border-top: 1px solid var(--nm-line-dark, #28292b);
  }

  .navarc-mobile-contact-page__faq-eyebrow {
    font-size: clamp(36px, calc(27px + 0.46875vw), 45px);
    line-height: 1.05;
    color: var(--nm-text-secondary);
    margin: 0 0 10px;
  }

  .navarc-mobile-contact-page__faq h2 {
    font-size: clamp(36px, calc(27px + 0.46875vw), 45px);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--nm-text, #ffffff);
    margin: 0 0 14px;
    font-weight: 500;
  }

  .navarc-mobile-contact-page__faq-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    margin-top: 24px;
    border: 1px solid var(--nm-text);
    border-radius: 999px;
    font-size: clamp(16px, calc(12px + 0.208333vw), 20px);
    color: var(--nm-text);
    text-decoration: none;
  }

  /* ---------- content.html: mini FAQ accordion -------------------------- */
  .navarc-mobile-contact-faq__item {
    border-top: 1px solid var(--nm-line-dark, #28292b);
  }

  .navarc-mobile-contact-faq__item:last-child {
    border-bottom: 1px solid var(--nm-line-dark, #28292b);
  }

  .navarc-mobile-contact-faq__item-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    background: none;
    border: none;
    color: var(--nm-text);
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
    text-align: left;
    cursor: pointer;
  }

  .navarc-mobile-contact-faq__item-icon {
    flex: none;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
    color: var(--nm-text-muted);
    transition: transform 0.2s ease;
  }

  .navarc-mobile-contact-faq__item.is-open .navarc-mobile-contact-faq__item-icon {
    transform: rotate(45deg);
  }

  .navarc-mobile-contact-faq__item-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navarc-mobile-contact-faq__item-a-inner {
    padding: 0 0 16px;
    font-size: clamp(15px, calc(11.25px + 0.195313vw), 18.75px);
    line-height: 1.6;
    color: var(--nm-text-secondary);
  }

  .navarc-mobile-contact-faq__item-a-inner p {
    margin: 0;
  }

  .navarc-mobile-reduce-motion .navarc-mobile-contact-faq__item-a,
  .navarc-mobile-reduce-motion .navarc-mobile-contact-faq__item-icon {
    transition: none;
  }
}

/* =====================================================================
   NAVARC MOBILE MEDIA CENTER — Faz 8
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-media-* classes
   (plus the pre-existing .navarc-mobile-hide utility). Nothing here
   overrides .site-header / .nav / .mega / .btn / section / img or any
   other pre-existing selector, and desktop (min-width: 993px) and the
   641–992px tablet range are untouched. Reuses the --nm-* custom
   properties defined by Faz 1.
   Pages: media.html, media/factory-and-people.html, media/leisure.html,
   media/logolar.html, media/pervane.html, media/professional.html,
   media/teknoloji.html, media/latest-news.html (+ tr/ equivalents).
   Grids use auto-fill/minmax so cards never force horizontal overflow
   on a 320px viewport — no fixed-pixel card widths anywhere below.
   ===================================================================== */

.navarc-mobile-media {
  display: none;
}

@media (max-width: 640px) {
  .navarc-mobile-media {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
    color: var(--nm-text);
    padding-bottom: 48px;
  }

  .navarc-mobile-media-hero {
    /* Full-bleed photo hero — keep light text regardless of the section
       theme, same as the career/job-detail heroes. */
    --nm-text: #ffffff;

    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--nm-gutter, 20px) 20px;
  }

  .navarc-mobile-media-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
  }

  .navarc-mobile-media-hero__brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .navarc-mobile-media-hero__logo img {
    display: block;
    height: 18px;
    width: auto;
  }

  .navarc-mobile-media-hero__text {
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    letter-spacing: 0.4px;
    color: var(--nm-text, #ffffff);
  }

  .navarc-mobile-media-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px var(--nm-gutter, 20px);
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    color: var(--nm-text-muted, #8b8b8b);
    flex-wrap: wrap;
  }

  .navarc-mobile-media-crumb a {
    color: var(--nm-text-muted, #8b8b8b);
    text-decoration: none;
  }

  .navarc-mobile-media-crumb span[aria-current] {
    color: var(--nm-text, #ffffff);
  }

  .navarc-mobile-media-section-title {
    padding: 4px var(--nm-gutter, 20px) 14px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--nm-text-muted, #8b8b8b);
  }

  /* Folder-card grid on the media hub page: auto-fill keeps two columns
     at 320px without any card ever taking a fixed pixel width. */
  .navarc-mobile-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    padding: 0 var(--nm-gutter, 20px);
  }

  .navarc-mobile-media-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--nm-surface-alt, #1a1a1a);
    text-decoration: none;
    min-width: 0;
  }

  .navarc-mobile-media-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--nm-surface, #111111);
  }

  .navarc-mobile-media-card--logo .navarc-mobile-media-card__img {
    background-color: #000000;
    background-size: 50%;
  }

  .navarc-mobile-media-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 8px 10px;
    font-size: clamp(12px, calc(9px + 0.15625vw), 15px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--nm-text, #ffffff);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  /* Item grid inside a folder page (photos): same overflow-safe pattern,
     slightly narrower minimum so three columns can appear on wider
     phones while still collapsing to two at 320px. */
  .navarc-mobile-media-itemgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 0 var(--nm-gutter, 20px);
  }

  .navarc-mobile-media-item {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--nm-surface-alt, #1a1a1a);
    text-decoration: none;
    min-width: 0;
  }

  .navarc-mobile-media-item__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--nm-surface, #111111);
  }

  .navarc-mobile-media-item--logo .navarc-mobile-media-item__img {
    background-color: #000000;
    background-size: 50%;
  }

  .navarc-mobile-media-item__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 8px 10px;
    font-size: clamp(11px, calc(8.25px + 0.143229vw), 13.75px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--nm-text, #ffffff);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .navarc-mobile-media-note {
    margin: 24px var(--nm-gutter, 20px) 0;
    padding: 16px;
    border: 1px solid var(--nm-surface-alt, #1a1a1a);
    border-radius: 10px;
    background: var(--nm-surface, #111111);
    color: var(--nm-text-secondary, #d9d9d9);
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    line-height: 1.6;
  }

  .navarc-mobile-media-note p {
    margin: 0;
  }
}

/* =====================================================================
   NAVARC MOBILE LEGAL — Faz 9
   Scope: phone breakpoint only, gated to (max-width: 640px).
   Namespace: every rule below targets .navarc-mobile-legal-* classes
   (plus the pre-existing .navarc-mobile-hide utility). Nothing here
   overrides .site-header / .nav / .mega / .btn / section / img or any
   other pre-existing selector, and desktop (min-width: 993px) and the
   641–992px tablet range are untouched. Reuses the --nm-* custom
   properties defined by Faz 1.
   Pages: privacy.html, cookies.html (+ tr/ equivalents).
   ===================================================================== */

.navarc-mobile-legal {
  display: none;
}

@media (max-width: 640px) {
  .navarc-mobile-legal {
    --nm-bg: #ffffff;
    --nm-text: #111111;
    --nm-text-secondary: #444444;
    --nm-text-muted: #767676;
    --nm-surface: #f2f2f2;
    --nm-line-dark: rgba(0, 0, 0, 0.12);

    display: block;
    background: var(--nm-bg);
    color: var(--nm-text);
    padding: 40px var(--nm-gutter, 20px) 48px;
  }

  .navarc-mobile-legal__title {
    margin: 0;
    font-size: clamp(38px, calc(28.5px + 0.494792vw), 47.5px);
    line-height: 1.15;
    font-weight: 500;
    color: var(--nm-text, #ffffff);
  }

  .navarc-mobile-legal__divider {
    height: 1px;
    margin: 24px 0 32px;
    background: var(--nm-surface-alt, #1a1a1a);
  }

  .navarc-mobile-legal__section {
    margin: 0 0 32px;
  }

  .navarc-mobile-legal__section:last-child {
    margin-bottom: 0;
  }

  .navarc-mobile-legal__section h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, calc(21px + 0.364583vw), 35px);
    line-height: 1.25;
    font-weight: 500;
    color: var(--nm-text, #ffffff);
  }

  .navarc-mobile-legal__section p {
    margin: 0 0 16px;
    font-size: clamp(17px, calc(12.75px + 0.221354vw), 21.25px);
    line-height: 28px;
    color: var(--nm-text-secondary, #d9d9d9);
  }

  .navarc-mobile-legal__section p:last-child {
    margin-bottom: 0;
  }

  .navarc-mobile-legal__section strong {
    color: var(--nm-text, #ffffff);
  }

  .navarc-mobile-legal__link {
    color: var(--nm-accent, #1f5eff);
    text-decoration: underline;
  }
}

/* Unified CTA hover treatment. */
@media (hover: hover) and (pointer: fine) {
  :is(
    .btn,
    .career-pill,
    .article-detail__button,
    .blog-article__btn,
    .navarc-mobile-career-hero__ctas a,
    [class*="__apply"],
    [class*="__submit"]
  ):hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
  }

  :is(
    .btn,
    .career-pill,
    .article-detail__button,
    .blog-article__btn,
    .navarc-mobile-career-hero__ctas a,
    [class*="__apply"],
    [class*="__submit"]
  ):hover :is(span, strong) {
    color: #000000 !important;
  }
}

/* Responsive category media: always fill the available card/preview area. */
.mega-nav__preview {
  width: 100%;
  height: 250px;
  aspect-ratio: auto;
  max-height: 250px;
  overflow: hidden;
}

.mega-nav__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

:is(.mega__tile-media, .cnd-tile__img, .navarc-mobile-cat__card-img) {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.mega__tile-media--volster-e {
  transform: none;
}

.mega__tiles .mega__tile:hover .mega__tile-media--volster-e {
  transform: scale(1.02);
}

/* Solarvess 14 stays intentionally blurred in every mega-nav variant. */
.mega-nav__preview img[src*="Solarvess-14"],
.mega__tile[href*="solarvess-14.html"] .mega__tile-media,
.cnd-tile[href*="solarvess-14.html"] .cnd-tile__img,
.navarc-mobile-cat__card[href*="solarvess-14.html"] .navarc-mobile-cat__card-img {
  filter: grayscale(1) blur(4px) !important;
  transform: scale(1.04);
}

.mega-nav__preview:hover img[src*="Solarvess-14"],
.mega__tile[href*="solarvess-14.html"]:hover .mega__tile-media,
.cnd-tile[href*="solarvess-14.html"]:hover .cnd-tile__img,
.navarc-mobile-cat__card[href*="solarvess-14.html"]:hover .navarc-mobile-cat__card-img {
  filter: grayscale(0) blur(4px) !important;
}

/* Desktop mega-nav content geometry mirrors the Tulkas reference. */
@media (min-width: 993px) {
  .site-header .nav {
    box-sizing: border-box;
    height: 76px;
    min-height: 76px;
  }

  .site-header .nav__links {
    gap: 48px;
    margin-left: calc(var(--menu-start) - 171px);
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }

  .site-header .mega {
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-rows: minmax(220px, 1fr) auto;
    row-gap: 18px;
    column-gap: 32px;
    height: 340px;
    min-height: 340px;
    max-height: 340px;
    padding: 20px 40px 16px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-header .mega__section {
    grid-template-columns: calc(var(--menu-start) + 31px) 220px 340px;
    gap: 28px;
    align-items: center;
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .site-header .mega-nav__left {
    max-width: none;
    gap: 0;
    justify-content: flex-start;
    align-self: start;
    margin-top: 41px;
    padding-right: clamp(16px, 2vw, 36px);
  }

  .site-header .mega-nav__intro {
    margin-bottom: 16px;
  }

  .site-header .mega-nav__intro p {
    max-width: 550px;
    color: #8b8b8b;
    font-size: clamp(22px, calc(16.5px + 0.286458vw), 27.5px);
    font-weight: 400;
    line-height: 1.6;
  }

  .site-header .mega-nav__list {
    gap: 0;
    width: 100%;
    height: 220px;
    border-top: 1px solid #d8d8d8;
    align-self: start;
    margin-top: 21px;
    justify-content: stretch;
  }

  .site-header .mega-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 0;
    width: 100%;
    min-height: 34px;
    padding: 5px 0;
    border-bottom: 1px solid #d8d8d8;
    box-sizing: border-box;
    font-size: clamp(15px, max(min(1.05vw, 18px), calc(13.5px + 0.234375vw)), 22.5px);
    line-height: 1.2;
    transition: color 180ms ease, padding-left 180ms ease;
  }

  .site-header .mega-nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--brand-accent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header .mega-nav__link:hover,
  .site-header .mega-nav__link:focus-visible {
    padding-left: 18px;
  }

  .site-header .mega-nav__link:hover::before,
  .site-header .mega-nav__link:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .site-header .mega-nav__preview {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    aspect-ratio: auto;
    align-self: start;
    margin-top: 21px;
  }

  .site-header .mega__side-menu {
    width: 100%;
    align-self: center;
  }

  .site-header .mega__side-content {
    gap: 10px;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
  }

  .site-header .mega__menu-item {
    padding-bottom: 4px;
    font-size: clamp(14px, calc(10.5px + 0.182292vw), 17.5px);
    line-height: 1.6;
  }

  .site-header .mega__bottom {
    margin-top: 6px;
    padding-top: 10px;
    font-size: clamp(13px, calc(9.75px + 0.169271vw), 16.25px);
    align-self: end;
  }
}

/* Mobile header must remain seamless over every page/hero state. */
@media (max-width: 992px) {
  .site-header,
  body.scrolled .site-header,
  .site-header.mega-open,
  .site-header.mega-open .nav,
  .navarc-mobile-header,
  .navarc-mobile-header.is-solid,
  .navarc-mobile-header__row {
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .site-header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .site-header .mega__section {
    grid-template-columns: minmax(0, 1fr) minmax(165px, 180px) minmax(240px, 280px);
    gap: 18px;
  }

  .site-header .mega-nav__preview {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    margin-top: 0;
    align-self: center;
  }

  .site-header .mega-nav__intro p {
    font-size: clamp(18px, max(min(1.8vw, 21px), calc(15.75px + 0.273437vw)), 26.25px);
  }

  .site-header .mega-nav__left,
  .site-header .mega-nav__list {
    margin-top: 0;
    align-self: center;
  }

  .site-header .mega-nav__list {
    height: 220px;
  }
}

/* Footer category tabs share the desktop header navigation rails. */
@media (min-width: 993px) {
  .mega-static__nav {
    grid-template-columns: 170px minmax(0, 1fr) auto;
    gap: 32px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .mega-static__brand {
    width: 170px;
    height: var(--brand-logo-size);
  }

  .mega-static__brand img {
    left: 30px;
    height: var(--brand-logo-size);
  }

  .mega-static__tabs {
    gap: 48px;
    margin-left: calc(var(--menu-start) - 171px);
  }

  .mega-static__tabs .mega-static__tab {
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
}

/* Candela-style hamburger morph: three real lines animate into an X. */
.site-header .burger {
  position: relative;
  display: block;
  width: 48px;
  height: 44px;
  min-width: 48px;
  min-height: 44px;
  padding: 0;
  overflow: visible;
}

.site-header .burger span {
  position: absolute;
  left: 4px;
  width: 40px;
  height: 2px;
  margin: 0;
  opacity: 1;
  transform-origin: center;
  transition: top 0.2s ease-in, transform 0.2s ease-in, opacity 0.15s ease-in;
}

.site-header .burger span:nth-child(1) {
  top: 12px;
}

.site-header .burger span:nth-child(2) {
  top: 21px;
}

.site-header .burger span:nth-child(3) {
  top: 30px;
}

.site-header.mega-open .burger::before {
  content: none !important;
}

.site-header.mega-open .burger span:nth-child(1) {
  top: 21px;
  opacity: 1;
  transform: rotate(45deg) scale(0.5);
}

.site-header.mega-open .burger span:nth-child(2) {
  top: 21px;
  opacity: 0;
  transform: scaleX(0);
}

.site-header.mega-open .burger span:nth-child(3) {
  top: 21px;
  opacity: 1;
  transform: rotate(-45deg) scale(0.5);
}

@media (prefers-reduced-motion: reduce) {
  .site-header .burger span {
    transition: none;
  }
}

/* Shared mega-nav tone and separators at every viewport. */
.site-header .mega-nav__intro p {
  color: #8b8b8b;
}

.site-header .mega-nav__list {
  border-top: 1px solid #d8d8d8;
}

.site-header .mega-nav__link {
  border-bottom-color: #d8d8d8;
}

/* ================================================================
   Monitor-adaptive foundation
   - 1920px remains the visual reference.
   - Existing tablet/mobile breakpoints keep their purpose-built layout.
   - Wider desktop/4K viewports scale the complete composition together,
     so type, imagery, spacing and controls preserve their proportions.
   ================================================================ */
html,
body {
  width: 100%;
  max-width: 100%;
}

picture,
img,
video,
canvas,
svg {
  max-inline-size: 100%;
}

img,
video {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
button,
label {
  overflow-wrap: break-word;
}

picture {
  width: 100%;
}

picture > img {
  width: 100%;
  height: auto;
}

:is([class*="__media"], [class*="__image"], [class*="gallery__item"]) > img:not([class*="logo"]):not([class*="icon"]) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Large editorial media follows both viewport axes on every desktop. */
@media (min-width: 993px) {
  :root {
    --large-media-gutter: clamp(32px, 4vw, 120px);
  }

  .solarvess-spotlight {
    padding-inline: var(--large-media-gutter);
  }

  .solarvess-spotlight__media {
    width: 100%;
    max-width: none;
    height: max(560px, min(74svh, 45vw));
  }

  .solarvess-spotlight__content,
  .solarvess-spotlight--solarvess .solarvess-spotlight__content,
  .solarvess-spotlight--volster .solarvess-spotlight__content,
  .solarvess-spotlight--volster-e .solarvess-spotlight__content {
    left: 60%;
    right: var(--large-media-gutter);
    top: clamp(48px, 7.4svh, 120px);
    max-width: none;
    transform: none;
  }

  .tech-benefits:not(.tech-benefits--wide) .tech-benefits__item {
    height: max(320px, min(52svh, 32vw));
  }

  .solarvess-gallery__item {
    height: max(420px, min(68svh, 46vw));
  }

  .founder-block__image {
    max-width: min(44vw, 92svh);
  }

  .latest__image {
    height: max(260px, min(42svh, 30vw));
  }

  .blog-latest__image {
    height: max(260px, min(42svh, 30vw));
  }

  .z-item__media,
  .media-hero {
    min-height: max(360px, min(58svh, 44vw));
  }

  .newsroom-article__head {
    min-height: max(510px, min(68svh, 52vw));
  }

  .career-culture__copy,
  .career-culture__gallery {
    min-height: max(540px, min(78svh, 55vw));
  }

  .career-job__hero {
    min-height: max(420px, min(72svh, 56vw));
  }

  .career-loc__map iframe {
    height: max(420px, min(64svh, 50vw));
  }

  body.tech-overview-v2 .tov2-editorial-img img {
    height: max(480px, min(72svh, 48vw)) !important;
  }

body.tech-overview-v2 .tov2-cards .blog-latest__image {
    height: max(400px, min(58svh, 42vw)) !important;
  }
}

/* Technology two-card media: fixed frame, image-only hover zoom. */
body.technology-page .blog-latest__image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: none !important;
  background-size: cover;
  background-position: center;
}

body.technology-page .blog-latest__image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: inherit;
  background-size: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.5s ease;
}

body.technology-page .blog-latest__card:hover .blog-latest__image {
  transform: none !important;
}

body.technology-page .blog-latest__card:hover .blog-latest__image::before {
  transform: scale(1.1);
}

/* Viewport-adaptive FAQ, newsletter and footer system. */
:root {
  --adaptive-section-gutter: clamp(20px, 4vw, 160px);
  --faq-gutter: var(--adaptive-section-gutter);
}

.faq-page,
.faq-section--embedded,
.newsletter-band,
.newsletter-band__inner,
.site-footer,
.mega-static,
.candela-style-footer,
.career-job__footer-menu {
  box-sizing: border-box;
}

@media (min-width: 993px) {
  .faq-page {
    width: 100%;
    max-width: none;
    padding-top: clamp(110px, 12svh, 240px);
    padding-right: var(--adaptive-section-gutter);
    padding-left: var(--adaptive-section-gutter);
  }

  .faq-page--embedded,
  .faq-section--embedded {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: clamp(80px, 10svh, 200px) var(--adaptive-section-gutter) clamp(64px, 8svh, 160px);
  }

  .faq-hero {
    width: min(54vw, 1600px);
    margin-right: auto;
    margin-bottom: clamp(36px, 4svh, 80px);
    margin-left: auto;
  }

  .faq-page--numbered .faq-item__question {
    grid-template-columns: minmax(80px, 50%) minmax(0, 1fr) clamp(24px, 1.6vw, 48px);
    padding-top: clamp(22px, 2svh, 44px);
    padding-bottom: clamp(22px, 2svh, 44px);
  }

  .faq-item__answer-content {
    padding-right: clamp(24px, 2vw, 64px);
    padding-bottom: clamp(22px, 2svh, 44px);
  }

  .faq-page--embedded.faq-page--numbered .faq-hero__cta {
    margin-top: clamp(24px, 2svh, 48px);
    padding: clamp(14px, 1vw, 24px) clamp(28px, 2.2vw, 56px);
  }

  .newsletter-band {
    padding: clamp(80px, 11svh, 220px) 0;
  }

  .newsletter-band__inner {
    width: min(80vw, 2400px);
    max-width: none;
    padding: 0 var(--adaptive-section-gutter);
  }

  .newsletter-form {
    width: min(48vw, 1400px);
    max-width: none;
    gap: clamp(16px, 1.2vw, 32px);
  }

  .newsletter-form input,
  .newsletter-form select {
    min-height: clamp(52px, 3.2vw, 76px);
    padding: clamp(12px, 0.9vw, 22px) clamp(16px, 1.2vw, 30px);
  }

  .newsletter-form__consent {
    gap: clamp(16px, 1.2vw, 32px);
  }

  .newsletter-form__consent input[type='checkbox'] {
    width: clamp(40px, 2.6vw, 64px);
    height: clamp(40px, 2.6vw, 64px);
  }

  .site-footer,
  .candela-style-footer,
  .career-job__footer-menu {
    padding: clamp(60px, 6svh, 120px) var(--adaptive-section-gutter);
  }

  .footer__grid,
  .candela-footer-grid,
  .career-job__footer-grid {
    width: 100%;
    max-width: none;
    gap: clamp(40px, 4vw, 120px);
  }

  .mega-static {
    padding-top: clamp(48px, 5svh, 100px);
    padding-bottom: 0;
  }

  .mega-static__nav {
    grid-template-columns: clamp(150px, 10vw, 280px) minmax(0, 1fr) auto;
    gap: clamp(24px, 2vw, 64px);
    padding-right: var(--adaptive-section-gutter);
    padding-left: var(--adaptive-section-gutter);
  }

  .mega-static__brand {
    width: clamp(150px, 10vw, 280px);
    height: clamp(52px, 3vw, 76px);
  }

  .mega-static__brand img {
    left: clamp(0px, 1.5vw, 44px);
    height: clamp(52px, 3vw, 76px);
  }

  .mega-static__tabs {
    gap: clamp(24px, 2vw, 64px);
    margin-left: clamp(0px, 14vw, 520px);
  }

  .mega-static .mega {
    grid-template-columns: minmax(0, 1fr) clamp(220px, 15vw, 440px);
    gap: clamp(32px, 3vw, 96px);
    padding: clamp(28px, 2.5vw, 72px) var(--adaptive-section-gutter) clamp(20px, 2vw, 56px);
  }

  .mega-static .mega__section {
    grid-template-columns: minmax(280px, 32vw) minmax(0, 1fr);
    gap: clamp(40px, 4vw, 128px);
  }

  .mega-static .mega__intro {
    gap: clamp(16px, 1.2vw, 32px);
  }

  .mega-static .mega__tiles {
    height: clamp(260px, 18svh, 520px);
    gap: clamp(16px, 1.2vw, 36px);
    margin-left: 0;
  }

  .mega-static .mega__tile {
    padding: clamp(16px, 1.2vw, 32px);
  }

  .mega-static .mega__menu {
    gap: clamp(10px, 0.9vw, 24px);
  }

  .mega-static .mega__bottom {
    margin-top: clamp(10px, 1vw, 24px);
    padding-top: clamp(16px, 1.2vw, 32px);
  }

  .mega-static .mega__socials {
    gap: clamp(10px, 0.8vw, 22px);
  }

  .mega-static .mega__socials svg,
  .candela-footer-grid svg,
  .career-job__footer-socials svg {
    width: clamp(20px, 1.25vw, 32px);
    height: clamp(20px, 1.25vw, 32px);
  }
}

@media (max-width: 992px) {
  :root {
    --adaptive-section-gutter: clamp(18px, 5vw, 40px);
  }

  .faq-page {
    width: 100%;
    max-width: none;
    padding-right: var(--adaptive-section-gutter);
    padding-left: var(--adaptive-section-gutter);
  }

  .faq-page--embedded,
  .faq-section--embedded {
    padding-right: var(--adaptive-section-gutter);
    padding-left: var(--adaptive-section-gutter);
  }

  .newsletter-band__inner,
  .newsletter-form {
    width: 100%;
    max-width: none;
  }

  .newsletter-band__inner {
    padding-right: var(--adaptive-section-gutter);
    padding-left: var(--adaptive-section-gutter);
  }

  .site-footer,
  .candela-style-footer,
  .career-job__footer-menu {
    padding-right: var(--adaptive-section-gutter);
    padding-left: var(--adaptive-section-gutter);
  }
}

/* Prevent the technology cards from forcing horizontal overflow on compact
   desktop/tablet landscape viewports next to the responsive FAQ/footer. */
@media (min-width: 993px) and (max-width: 1200px) {
  body.technology-page .blog-latest__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  body.technology-page .blog-latest__card {
    min-width: 0;
  }

  body.technology-page .blog-latest__card > div[style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Final desktop rail lock: footer tabs align exactly with header links. */
@media (max-width: 992px) {
  .site-header:has(.navarc-mobile-header) > .nav {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    border: 0 !important;
  }

  .navarc-mobile-header::before {
    content: none !important;
    display: none !important;
    background: none !important;
    opacity: 0 !important;
  }

  .navarc-mobile-header.is-solid::before {
    opacity: 0 !important;
  }
}

@media (min-width: 993px) {
  .mega-static {
    margin-right: 0;
    margin-left: 0;
  }

  .mega-static__nav {
    grid-template-columns: 170px minmax(0, 1fr) auto;
    gap: 32px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .mega-static__brand {
    width: 170px;
    height: var(--brand-logo-size);
  }

  .mega-static__brand img {
    left: 30px;
    height: var(--brand-logo-size);
  }

  .mega-static__tabs {
    gap: 48px;
    margin-left: calc(var(--menu-start) - 171px);
  }

  .mega-static__tabs .mega-static__tab {
    font-family: inherit;
    font-size: clamp(18px, calc(13.5px + 0.234375vw), 22.5px);
  }
}

/* Volster 535 F spotlight (home): the shared "__media > img" rule centres the
   cover crop, which sliced the top off the boat's T-top canopy on desktop.
   Biasing the crop upward drops the framing over the photo so the whole
   vessel — canopy included — sits inside the frame. Scoped to 535 F so the
   535 E spotlight, which shares .spotlight--volster, keeps its own framing. */
.solarvess-spotlight.solarvess-spotlight--volster
  .solarvess-spotlight__media
  > img.spotlight--volster {
  object-position: 50% 15%;
}


/* ================================================================
   ABOUT PAGE ("about-ref-*")
   Editorial dark About layout: full-bleed hero, a right-hand text
   column riding a 2-up grid, full-width media bands, a 3-up value
   grid, linked system cards, an inline FAQ and a closing CTA.
   The accent follows Navarc's --brand-accent rather than the
   reference layout's red.
   ================================================================ */

.about-page-body {
  background: #ffffff;
  color: #111111;
}

/* Header rides the dark hero until the page scrolls — same treatment
   the careers page uses. */
.about-page-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item > a,
.about-page-body:not(.scrolled) .site-header:not(.mega-open) .nav__links > .nav__item:hover > a {
  color: #ffffff !important;
}

.about-page-body:not(.scrolled) .site-header:not(.mega-open) .burger span {
  background: #ffffff !important;
}

.about-ref-page {
  background: #ffffff;
  color: #111111;
}

.about-ref-shell {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}

/* The shell splits into two equal columns with a 12px gutter; running
   copy sits in the right one. */
.about-ref-right {
  margin-left: calc(50% + 6px);
  width: calc(50% - 6px);
}

.about-ref-lead {
  font-size: clamp(28px, calc(14.286px + 1.7857vw), 40px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #8b8b8b;
  margin: 0;
}

.about-ref-statement {
  font-size: clamp(21px, calc(10.714px + 1.3393vw), 30px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #111111;
  margin: 26px 0 0;
}

.about-ref-body {
  font-size: clamp(15px, calc(12.714px + 0.2976vw), 17px);
  line-height: 1.5;
  color: #3d3d3d;
  margin: 0;
}

/* ---- buttons ---- */
.about-ref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.about-ref-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  background: transparent;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-ref-button:hover {
  background: #111111;
  color: #ffffff;
}

.about-ref-button--primary {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #ffffff;
}

.about-ref-button--primary:hover {
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
  color: #ffffff;
}

/* ---- hero ---- */
.about-ref-hero {
  position: relative;
  min-height: 100svh;
  background: #1b1b1b;
  overflow: hidden;
}

.about-ref-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.about-ref-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.16) 68%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.12) 100%);
}

.about-ref-hero__title {
  position: absolute;
  bottom: clamp(48px, 10svh, 92px);
  left: 50%;
  right: clamp(24px, 8.8vw, 140px);
}

.about-ref-hero__title h1 {
  margin: 0;
  font-size: clamp(44px, calc(5.143px + 5.0595vw), 78px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #ffffff;
}

/* Brand line stacked above the page name. */
.about-ref-hero__title h1 span {
  display: block;
  font-size: clamp(13px, calc(10.714px + 0.2976vw), 15px);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.about-ref-hero__title p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.about-ref-hero__title p img {
  width: 18px;
  height: 12px;
  display: block;
  flex: none;
}

/* ---- intro ---- */
.about-ref-intro {
  padding-block: clamp(72px, 10.1vw, 162px) clamp(70px, 9.4vw, 150px);
}

/* ---- values ---- */
.about-ref-values {
  padding-block: 10px clamp(70px, 9.4vw, 150px);
}

.about-ref-heading {
  display: block;
  margin: 0 0 56px;
}

.about-ref-heading p {
  margin: 10px 0 0;
  font-size: clamp(15px, calc(12.714px + 0.2976vw), 17px);
  color: #3d3d3d;
}

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

.about-ref-value {
  margin: 0;
}

.about-ref-value__media {
  aspect-ratio: 1.23 / 1;
  background: #dadada;
  overflow: hidden;
}

.about-ref-value__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-ref-value h3 {
  margin: 25px 0 0;
  font-size: clamp(21px, calc(14.143px + 0.8929vw), 27px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #8b8b8b;
}

.about-ref-value p {
  margin: 10px 0 0;
  max-width: 90%;
  font-size: 16px;
  line-height: 1.42;
  color: #111111;
}

/* ---- shared wide media band ---- */
.about-ref-wide-media {
  background: #d4d4d4;
  height: clamp(280px, 45.5vw, 720px);
  overflow: hidden;
}

.about-ref-wide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- story ---- */
.about-ref-story {
  padding-block: 54px clamp(74px, 9.9vw, 158px);
}

.about-ref-story .about-ref-wide-media {
  margin-top: 62px;
}

.about-ref-story__body {
  padding-top: 50px;
}

.about-ref-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-bottom: 4px;
  font-size: 15px;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about-ref-arrow-link:hover {
  color: var(--brand-accent);
  border-bottom-color: var(--brand-accent);
}

/* ---- horizon ---- */
.about-ref-horizon {
  padding-block: 0 clamp(76px, 10vw, 160px);
}

.about-ref-wide-media--horizon {
  height: clamp(260px, 41.7vw, 660px);
}

.about-ref-horizon__copy {
  padding-top: clamp(48px, 7vw, 112px);
}

.about-ref-label {
  margin: 0 0 8px;
  font-size: clamp(28px, calc(14.286px + 1.7857vw), 40px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #8b8b8b;
}

.about-ref-horizon__copy h2 {
  margin: 0;
  font-size: clamp(28px, calc(14.286px + 1.7857vw), 40px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #111111;
}

.about-ref-horizon__copy .about-ref-body {
  margin-top: 24px;
}

.about-ref-horizon__copy .about-ref-button {
  margin-top: 31px;
}

/* ---- systems ---- */
.about-ref-systems {
  padding-block: 26px clamp(74px, 9.9vw, 158px);
}

.about-ref-systems__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.about-ref-system {
  position: relative;
  display: block;
  min-height: 330px;
  background: #111111;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
}

.about-ref-system img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-ref-system:hover img {
  transform: scale(1.04);
}

.about-ref-system__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.02) 70%);
}

.about-ref-system__copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
}

.about-ref-system__copy small {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-ref-system__copy strong {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-ref-system__arrow {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 24px;
  line-height: 1.6;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.about-ref-system:hover .about-ref-system__arrow {
  transform: translate(3px, -3px);
}

/* ---- inside ---- */
.about-ref-inside {
  padding-block: 28px clamp(78px, 10.3vw, 165px);
}

.about-ref-inside__heading {
  display: block;
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-ref-inside__heading p {
  margin: 0 0 8px;
  font-size: 15px;
  color: #8b8b8b;
}

.about-ref-inside__heading h2 {
  margin: 0;
  font-size: clamp(30px, calc(12.857px + 2.2321vw), 45px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #111111;
}

.about-ref-inside__visual {
  position: relative;
  display: block;
  margin: 0;
  background: #111315;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
}

.about-ref-inside__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-ref-inside__visual--contained {
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin-inline: auto;
}

.about-ref-inside__visual--wide {
  height: clamp(280px, 46vw, 730px);
  margin-top: clamp(56px, 8vw, 128px);
}

.about-ref-inside__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 62%);
}

.about-ref-inside__caption {
  position: absolute;
  left: 30px;
  right: 66px;
  bottom: 28px;
  font-size: clamp(19px, calc(6.429px + 1.6369vw), 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.about-ref-inside__arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.about-ref-inside__visual--contained:hover .about-ref-inside__arrow {
  transform: translate(3px, -3px);
}

.about-ref-inside__visual--wide figcaption {
  position: absolute;
  left: 30px;
  bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

/* ---- FAQ band: reuses the site's .faq-item component, dark skin ---- */
.about-ref-faq {
  background: #ffffff;
  padding: 92px 60px 112px;
}

.about-ref-faq .faq-hero {
  margin: 0 auto 48px;
  text-align: center;
}

/* The base eyebrow is a small uppercase label; here it carries the
   section headline, so the transform and tracking are reset. */
.about-ref-faq .faq-hero__eyebrow {
  margin: 0 auto 10px;
  max-width: 760px;
  font-size: clamp(30px, calc(9.429px + 2.6786vw), 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #8b8b8b;
}

.about-ref-faq .faq-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: 16px;
  color: #111111;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.about-ref-faq .faq-hero__cta:hover {
  background: #111111;
  color: #ffffff;
}

/* Rows run edge to edge inside the band's own padding. */
.about-ref-faq .faq-list--compact {
  margin-inline: -60px;
  border-top-color: #e3e3e3;
}

.about-ref-faq .faq-item {
  border-bottom: 1px solid #e3e3e3;
}

.about-ref-faq .faq-item__question {
  padding-inline: 60px;
}

.about-ref-faq .faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

/* 50% of the row lands at the same x as the question column, because the
   question's own 60px insets cancel out of its 50% first column. */
.about-ref-faq .faq-item__answer-content {
  padding-left: 50%;
  padding-right: 60px;
}

.about-ref-faq .faq-item__answer-content p {
  margin: 0;
}

/* ---- closing CTA ---- */
.about-ref-join {
  background: #ffffff;
  padding: clamp(72px, 7.3vw, 116px) 0 clamp(70px, 7vw, 112px);
  border-top: 1px solid #e3e3e3;
}

.about-ref-join .about-ref-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: end;
  gap: 80px;
}

.about-ref-join h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, calc(-5.429px + 5.6548vw), 76px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #111111;
}

.about-ref-join .about-ref-button {
  margin-top: 28px;
}

/* ---- tablet / mobile ---- */
@media (max-width: 992px) {
  .about-ref-shell {
    padding-inline: var(--nm-gutter, 20px);
  }

  /* The two-up split collapses; copy returns to full width. */
  .about-ref-right {
    margin-left: 0;
    width: 100%;
  }

  .about-ref-hero {
    min-height: 78svh;
  }

  .about-ref-hero__title {
    left: var(--nm-gutter, 20px);
    right: var(--nm-gutter, 20px);
    bottom: 40px;
  }

  .about-ref-values__grid,
  .about-ref-systems__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-ref-value p {
    max-width: 100%;
  }

  .about-ref-inside__heading {
    margin-bottom: 44px;
  }

  .about-ref-faq {
    padding: 64px var(--nm-gutter, 20px) 76px;
  }

  .about-ref-faq .faq-list--compact {
    margin-inline: 0;
  }

  .about-ref-faq .faq-item__question {
    padding-inline: 0;
  }

  /* Below 993px the site narrows the number column to 40px and adds a
     12px column gap, so the question text starts at 52px. The answer
     matches that rather than keeping the desktop 50% indent. */
  .about-ref-faq .faq-item__answer-content {
    padding-left: 52px;
    padding-right: 0;
  }

  .about-ref-join .about-ref-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}
