@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Luxurious+Roman&display=swap");

:root {
  --primary: #1b1b1b;
  --secondary: #121212;
  --accent: #71bf43;
  --background: #f5f3ef;
  --surface: #ffffff;
  --highlight: #bfd8d2;
  --neutral: #8c9ba4;
  --black: #1a1a1a;
  --error: #d64541;
  --text: var(--black);
  --muted: var(--neutral);
  --brand: var(--accent);
  --overlay: #020203b5;
  --font-primary: "Manrope", sans-serif;
  --font-secondary: "Source Sans 3", sans-serif;
  --font-logo: "Luxurious Roman", serif;
  --page-pad: 24px;
  --shade-header: #121212;
  --shade-medium: #121212;
  --shade-light: #1b1b1b;
  --shade-dark: #1b1b1b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: clamp(14px, 1.5vw, 16px);
  background: var(--background);
  color: var(--text);
}

html,
body {
  overflow-x: hidden;
}

.site-footer {
  background: var(--shade-medium);
  color: var(--surface);
}
.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 60px) var(--page-pad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
}
.footer-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin: 0 0 8px;
}
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.footer-links a {
  color: var(--surface);
  text-decoration: none;
  opacity: 0.9;
}
.footer-links a:hover {
  color: var(--highlight);
}
.footer-contact li {
  color: color-mix(in srgb, var(--surface) 90%, var(--background) 10%);
  opacity: 0.9;
}
.footer-sep {
  height: 1px;
  background: color-mix(in srgb, var(--surface) 20%, transparent);
  margin: clamp(20px, 3vw, 32px) 0;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.footer-bottom .policy-and-social {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
}
.footer-bottom a {
  color: var(--surface);
  text-decoration: none;
  opacity: 0.9;
}
.footer-bottom a:hover {
  color: var(--highlight);
}
.footer-bottom .social {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface) 10%, transparent);
}

h1,
h2,
h3 {
  font-family: var(--font-primary);
  color: var(--primary);
}

h1 {
  font-size: clamp(22px, 5vw, 40px);
  line-height: 1.2;
}
h2 {
  font-size: clamp(18px, 3.6vw, 28px);
  line-height: 1.25;
}
h3 {
  font-size: clamp(16px, 3.2vw, 24px);
  line-height: 1.3;
}

a {
  color: var(--accent);
  transition: color 0.3s ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(18, 24, 30, 0.16);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@supports not ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) {
  .site-header {
    background: rgba(18, 24, 30, 0.24);
  }
}

.site-header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 24px;
  color: var(--brand);
  text-decoration: none;
  display: inline-block;
}

.logo:hover {
  color: var(--surface);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: center;
  height: 100%;
}

.nav-link,
.main-nav a {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.9;
}

.site-header .nav-link,
.site-header .main-nav a {
  color: #ecf0f1;
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 24px;
  margin: 0;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  animation: navItemFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.nav-item:nth-child(1) .nav-link,
.nav-item:nth-child(1) a {
  animation-delay: 0.1s;
}

.nav-item:nth-child(2) .nav-link,
.nav-item:nth-child(2) a {
  animation-delay: 0.2s;
}

.nav-item:nth-child(3) .nav-link,
.nav-item:nth-child(3) a {
  animation-delay: 0.3s;
}

.site-header .nav-link::before,
.site-header .main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: max-content;
  margin: auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(4px);
  border-radius: 0;
  opacity: 0;
  transform: scaleX(0.98);
  transform-origin: center;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.site-header .nav-link:hover::before,
.site-header .main-nav a:hover::before {
  opacity: 0;
  transform: scale(0.98);
}

.site-header .nav-link:hover,
.site-header .main-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
  text-shadow: 0 0 12px rgba(194, 162, 93, 0.4);
}

.site-header .nav-link:hover::before,
.site-header .main-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.site-header .nav-link.active,
.site-header .main-nav a.active {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(194, 162, 93, 0.3);
}

.site-header .nav-link.active::after,
.site-header .main-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
  background: linear-gradient(90deg, var(--accent), var(--highlight), var(--accent));
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item.has-mega .nav-link i.fa-chevron-down {
  font-size: 12px;
  margin-left: 8px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-item.has-mega .nav-link.active i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Removed duplicate hover styles */

.burger {
  width: 44px;
  height: 22px;
  border: 0;
  background: none;
  display: inline-block;
  position: relative;
  padding: 0;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.site-header .burger span {
  background: var(--surface);
}

.burger span:nth-child(1) {
  top: 4px;
}
.burger span:nth-child(2) {
  top: 10px;
}
.burger span:nth-child(3) {
  top: 16px;
}

.burger.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.burger[aria-expanded="true"] span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  /* min-height: 60vh; */
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease-out;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mega.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header.solid {
  background-color: var(--shade-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.site-header.solid .mega {
  background: linear-gradient(to right, var(--shade-medium) 0%, var(--shade-medium) 70%, var(--shade-dark) 70%, var(--shade-dark) 100%);
}

.site-header.mega-all .mega {
  min-height: auto;
}
.site-header.mega-all .mega-inner {
  padding: clamp(16px, 3vw, 24px) var(--page-pad);
}
.site-header.mega-all .mega .mega-desc {
  margin: 8px 0 12px;
}
.site-header.mega-all .mega ul {
  gap: 8px;
}

.mega-inner {
  width: 100%;
  margin: 0;
  padding: 56px var(--page-pad) 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease-out;
}

.mega-title,
.mega-desc,
.mega-inner li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mega.open .mega-inner {
  opacity: 1;
  transform: translateY(0);
}

.mega-group {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.8fr;
  gap: 32px;
  align-items: start;
}

.mega-group > div + div {
  border-left: 1px solid #3a454b;
  padding-left: 32px;
}
.mega-group > .find-inline {
  border-left: none;
  padding-left: 0;
}
.mega .find-inline {
  justify-self: end;
  align-self: start;
  max-width: 280px;
  text-align: right;
  transform: none;
  background: transparent;
  padding-right: clamp(24px, 2.2vw, 32px);
  padding-left: clamp(12px, 1.2vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mega .find-inline .mega-title {
  text-align: right;
}
.mega .find-inline a {
  font-size: 14px;
  color: #ecf0f1;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mega .find-inline a:hover {
  color: var(--accent);
}
.mega-group > div:nth-child(2) {
  padding-top: 28px;
}
.mega .mega-inner ul a {
  font-size: 14px;
  color: #ecf0f1;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mega .mega-inner ul a:hover {
  color: var(--accent);
}

@media (max-width: 1366px) {
  .mega .find-inline {
    max-width: 240px;
    padding-right: clamp(20px, 2vw, 28px);
    padding-left: clamp(8px, 1vw, 16px);
  }
}

@media (max-width: 1280px) {
  .mega .find-inline {
    max-width: 220px;
    padding-right: clamp(18px, 1.8vw, 24px);
    padding-left: clamp(6px, 0.8vw, 12px);
  }
}

@media (max-width: 1024px) {
  .mega .find-inline {
    max-width: 200px;
    padding-right: clamp(16px, 1.6vw, 20px);
    padding-left: clamp(4px, 0.6vw, 8px);
  }
}

.mega-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  font-weight: 400;
}

.mega.open .mega-title {
  color: var(--accent);
  opacity: 1;
}

.mega .mega-desc,
.mega .mega-title,
.mega .mega-inner ul {
  opacity: 0;
  transform: translateY(8px);
  transition: transform 0.35s ease 0.05s, opacity 0.35s ease 0.05s;
}

.mega.open .mega-desc,
.mega.open .mega-title,
.mega.open .mega-inner ul {
  opacity: 1;
  transform: translateY(0);
}

.mega-desc {
  font-size: 24px;
  line-height: 1.2;
  margin: 8px 0 20px;
  color: #ecf0f1;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.mega ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega a {
  color: var(--surface);
  text-decoration: none;
  opacity: 0.9;
}

.hero {
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
}
.hero--static {
  position: relative;
  width: 100%;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
}
.hero--static picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero--static picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--static::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 12s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title {
  transform: none;
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease-out;
}

.hero-link {
  transform: none;
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease-out;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;

  bottom: 80px;
  z-index: 2;
}
.hero-content-inner {
  background: var(--overlay);
  color: var(--text);
  padding: 22px 24px;
  max-width: 420px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.sector-hero-content-inner {
  background: var(--overlay);
  color: var(--text);
  padding: 22px 24px;
  max-width: 300px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.hero-content-inner p {
  color: var(--surface);
}
.hero-content h2 {
  margin: 0 0 16px;
  font-size: 30px;
  color: var(--highlight);
}

.hero-link {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--surface);
}

.hero-link:hover {
  color: var(--accent);
}

.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: 0;
  background: var(--accent);
  opacity: 0.9;
  cursor: pointer;
}

.hero-dots .dot.active {
  width: 28px;
  height: 10px;
  background: var(--surface);
}

.spacer {
  min-height: 0;
}

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

  .mega-inner {
    grid-template-columns: 1fr;
    padding: clamp(20px, 3.6vw, 28px) var(--page-pad) clamp(16px, 3vw, 24px);
  }

  .mega-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mega .find-inline {
    display: none;
  }
  .mega {
    border-top: none;
  }
  .site-header.solid {
    background-color: var(--shade-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  .site-header.solid .mega {
    background: var(--overlay);
    backdrop-filter: blur(4px);
    position: relative;
    top: auto;
  }

  .mega-group > div + div {
    border-left: none;
    padding-left: 0;
  }

  .mega-desc {
    font-size: 22px;
  }
  .mega ul {
    gap: 6px;
  }
  .mega .mega-desc {
    margin: 8px 0 10px;
  }
  .mega ul {
    gap: 6px;
  }
  .mega .mega-desc {
    margin: 8px 0 12px;
  }

  .hero {
    padding-top: 0;
  }
  .hero-slider {
    height: clamp(460px, 60vh, 720px);
  }
  .hero--static {
    height: clamp(460px, 60vh, 720px);
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
  }
  .site-header .container {
    padding-top: clamp(14px, 4.5vw, 20px);
    padding-bottom: clamp(12px, 4vw, 18px);
    align-items: center;
    justify-content: space-between;
  }
  .site-header .container .logo {
    display: inline-flex;
    align-items: center;
  }

  .hero-content {
    left: 0;
    right: 0;
    transform: none;
    bottom: clamp(52px, 8vh, 72px);
  }
  .hero-content-inner {
    padding: clamp(12px, 2.8vw, 18px) clamp(14px, 3.2vw, 18px);
    max-width: none;
  }

  .hero-content h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .hero-dots {
    bottom: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding-top: 0;
  }
  .hero-slider {
    height: clamp(480px, 65vh, 740px);
  }
  .hero--static {
    height: clamp(480px, 65vh, 740px);
  }
  .mega ul {
    gap: 8px;
  }
  .mega .mega-desc {
    margin: 10px 0 16px;
  }
}
@media (min-width: 769px) {
}

@media (max-width: 900px) {
  .site-header.solid .mega {
    position: relative;
    top: auto;
  }
}

/* Careers Page Styles */
.split-section {
  padding: 80px 0;
  background: var(--primary);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text h2 {
  margin-bottom: 32px;
  color: var(--accent);
}

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

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 18px;
  color: var(--highlight);
}

.split-image img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.full-width-section {
  position: relative;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width-content {
  background: var(--surface);
  padding: 80px 0;
  text-align: center;
}

.full-width-content h2 {
  margin-bottom: 24px;
  color: var(--primary);
}

.full-width-content p {
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: var(--text);
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 24px;
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.life-section {
  padding: 80px 0;
  background: linear-gradient(rgba(18, 24, 30, 0.45), rgba(18, 24, 30, 0.45)), url("assets/images/Team.webp");
  background-size: cover;
  background-position: center;
}

.life-section h2 {
  margin-bottom: 32px;
  color: var(--surface);
}

.life-section p {
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--surface) 92%, var(--background) 8%);
}

.life-section .life-text {
  text-align: left;
}
.life-section .life-text p {
  max-width: none;
  margin: 0 0 16px;
}
.life-section .split-grid {
  align-items: start;
}
.life-actions {
  margin-top: 24px;
}
.life-image-bg {
  width: 100%;
  height: 50vh;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: linear-gradient(rgba(18, 24, 30, 0.12), rgba(18, 24, 30, 0.12)), url("assets/images/Team.webp");
  background-size: cover;
  background-position: center;
}

.life-image {
  margin-top: 48px;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.life-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .full-width-image {
    height: 40vh;
  }

  .life-image {
    height: 40vh;
  }

  .split-section,
  .full-width-content,
  .life-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  :root {
    --page-pad: 16px;
  }
  .logo {
    font-size: 18px;
  }
  .burger {
    width: 36px;
    height: 18px;
  }
  .burger span {
    left: 5px;
    right: 5px;
    height: 2px;
  }
  .site-header .container {
    padding-top: clamp(14px, 5.5vw, 20px);
    padding-bottom: clamp(12px, 5vw, 18px);
    gap: 12px;
  }
  .site-header {
    line-height: 1;
  }
  .site-header .container .logo {
    display: inline-flex;
    align-items: center;
    font-size: clamp(14px, 4.2vw, 18px);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 64px);
  }
  .hero-content {
    left: 0;
    right: 0;
    bottom: clamp(48px, 8vh, 64px);
  }
  .hero-content-inner {
    padding: 12px 14px;
  }
  .hero-content h2 {
    font-size: clamp(20px, 6.5vw, 24px);
  }
  .hero-dots {
    gap: 8px;
    bottom: 12px;
  }
  .hero-dots .dot {
    width: 8px;
    height: 8px;
  }
  .hero-dots .dot.active {
    width: 20px;
    height: 8px;
  }
  .mega-inner {
    padding: 48px var(--page-pad) 28px;
  }
  .mega-title {
    font-size: 11px;
  }
  .mega-desc {
    font-size: 18px;
  }
  .mega a {
    font-size: 14px;
  }
  .mega ul {
    gap: 8px;
  }
  .split-inner {
    padding: 28px var(--page-pad);
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .split .content h3 {
    font-size: clamp(22px, 6.2vw, 28px);
  }
  .split .content p {
    font-size: clamp(13px, 4vw, 15px);
    line-height: 1.6;
  }
  .button {
    padding: 10px 16px;
  }
  .brands-stage {
    padding: 20px var(--page-pad) 36px;
  }
  .brand-item {
    flex: 0 0 clamp(180px, 40vw, 220px);
  }
  .brand-img {
    height: clamp(56px, 6.5vw, 92px);
  }
  .news-grid {
    --news-row: clamp(180px, 44vh, 280px);
  }
  .contentbox {
    left: 12px;
    bottom: 12px;
    padding: 10px 12px;
    max-width: min(92%, 640px);
  }
  .contentbox .title {
    font-size: clamp(14px, 5.5vw, 18px);
    line-height: 1.35;
  }
  .footer-inner {
    padding: 24px var(--page-pad);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-title {
    font-size: 11px;
  }
  .footer-links {
    gap: 4px;
  }
  .footer-bottom {
    font-size: 12px;
    gap: 8px;
  }
  .footer-bottom a {
    font-size: 12px;
  }
  .copyright {
    font-size: 12px;
    line-height: 1.5;
  }
}
.split {
  background: var(--surface);
  color: var(--text);
}

.split.culture {
  background: var(--primary);
  color: var(--surface);
}
.split.culture .content h2 {
  color: var(--accent);
}
.split.culture .content h3 {
  color: var(--surface);
}
.split.culture .content p {
  color: var(--surface);
  opacity: 0.9;
}

.split-inner {
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 100px) var(--page-pad);
  display: flex;
  /* grid-template-columns: 48% 52%; */
  gap: 40px;
  align-items: center;
}

.split-media .media-grid {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 24px; */
}

.split-media .media-grid img {
  width: 100%;
  /* aspect-ratio: 100 / 50; */
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: var(--background);
}

.split-media .media-grid img:last-child {
  grid-column: 1/ 2;
  aspect-ratio: 16 / 9;
}

.split .content h2 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin: 0 0 8px;
  font-weight: bold;
}

.split .content h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.2;
  color: var(--primary);
}

.split .content p {
  margin: 0 0 16px;
  color: var(--text);
  opacity: 0.9;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .split-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 24px;
  }
  .split-media .media-grid img {
    aspect-ratio: 16 / 10;
  }
}
.centered {
  background: var(--shade-medium);
  color: var(--surface);
}

.centered-inner {
  max-width: 1000px;
  width: auto;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 60px) var(--page-pad);
  text-align: center;
}

.centered h2 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin: 0 0 8px;
}

.centered h3 {
  margin: 0 0 16px;
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--surface);
}

.centered p {
  margin: 0 auto;
  max-width: 800px;
  color: var(--surface);
  opacity: 0.85;
}

/* Portfolio intro fine-tuning */
.portfolio-intro .centered-inner {
  padding: clamp(32px, 6vw, 80px) var(--page-pad);
}

.portfolio-intro .centered-inner h2 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin: 0 0 12px;
  font-weight: bold;
}

.portfolio-intro .centered-inner h3 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  color: var(--surface);
  font-weight: 300;
}

.portfolio-intro .centered-inner p {
  margin: 0 auto;
  max-width: 860px;
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--surface) 85%, var(--highlight) 15%);
  opacity: 0.95;
}

/* Portfolio section */
.portfolio {
  background: var(--primary);
  color: var(--surface);
}

/* Culture variant: remove background band and use inline tabs */
.culture {
  background: var(--primary);
  color: var(--surface);
}
.culture .culture-title {
  max-width: 1100px;
  width: auto;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px) var(--page-pad) 8px;
  text-align: center;
}
.culture .portfolio-tabs {
  position: absolute;
  max-width: 1100px;
  width: auto;
  margin: 0 auto;
  padding: 24px var(--page-pad) 0;
  background: transparent;
  z-index: 2;
  margin-bottom: clamp(32px, 4vw, 72px);
}
.culture .portfolio-tabs .clean {
  gap: 15px;
}
.tabs-inline .clean {
  justify-content: center;
  gap: 10px;
}
.tabs-inline li {
  flex: 0 0 auto;
}
.tabs-inline a {
  display: inline-block;
  padding: 0;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(15px, 1.8vw, 19px);
  color: color-mix(in srgb, var(--surface) 90%, var(--background) 10%);
  opacity: 0.7;
}
.tabs-inline a.active {
  opacity: 1;
}
.tabs-inline a::after {
  content: "";
  display: block;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.tabs-inline a.active::after {
  transform: scaleX(1);
}

.portfolio-shell {
  position: relative;
}

.portfolio-intro {
  color: inherit;
}

.portfolio-stage {
  position: relative;
  padding: 0 var(--page-pad) clamp(40px, 6vw, 90px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.portfolio-slider {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: clamp(520px, 70vh, 820px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  left: auto;
  transform: none;
}
.portfolio-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-slider .hero-slide[data-id="technology"] img {
  object-fit: cover;
  object-position: center;
}

.portfolio-tabs {
  padding: 12px var(--page-pad);
}

.portfolio-tabs .clean {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.portfolio-tabs li {
  flex: 0 0 auto;
}

.portfolio-tabs .cta {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--surface);
  width: auto;
  text-align: center;
  white-space: nowrap;
}

.portfolio-tabs .cta.active {
  background: var(--accent);
  color: var(--surface);
}

@media (min-width: 769px) {
  .portfolio-tabs {
    position: absolute;
    top: clamp(24px, 3vw, 48px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: auto;
    max-width: 1100px;
    padding: 12px 0;
    background: transparent;
    backdrop-filter: none;
  }
  .portfolio-tabs .cta {
    color: var(--black);
    background: var(--surface);
    padding: 10px 16px;
    font-size: 13px;
  }
  .portfolio-tabs li + li .cta {
    border-left: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .portfolio-stage {
    padding: 24px var(--page-pad) 48px;
  }
  .portfolio-tabs {
    position: static;
    left: auto;
    transform: none;
    padding: 12px var(--page-pad);
    width: auto;
    max-width: 1100px;
  }
  .portfolio-tabs .clean {
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 10px;
    justify-content: center;
  }
  .portfolio-tabs li {
    flex: 1 1 calc(50% - 10px);
  }
  .portfolio-tabs .cta {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 4px;
  }
  .portfolio-slider {
    width: auto;
    max-width: 1100px;
    height: clamp(500px, 70vh, 820px);
    left: auto;
    transform: none;
  }
  .portfolio-slider .hero-content {
    left: 0;
    right: 0;
    transform: none;
    bottom: clamp(24px, 4vh, 40px);
  }
  .portfolio-slider .hero-content-inner {
    max-width: none;
    padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 24px);
  }
}

@media (max-width: 768px) {
  .portfolio-stage {
    padding: 24px 16px 40px;
  }
  .portfolio-tabs {
    padding: 12px 16px;
  }
  .portfolio-tabs .clean {
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 8px;
    justify-content: center;
  }
  .portfolio-tabs li {
    flex: 1 1 calc(50% - 8px);
  }
  .portfolio-tabs .cta {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 4px;
  }
  .portfolio-slider {
    width: auto;
    max-width: 760px;
    height: clamp(460px, 68vh, 760px);
    left: auto;
    transform: none;
  }
  .portfolio-slider .hero-content {
    left: 0;
    right: 0;
    transform: none;
    bottom: 24px;
  }
  .portfolio-slider .hero-content-inner {
    max-width: none;
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  .culture .portfolio-tabs {
    position: static;
    left: auto;
    transform: none;
    padding: 12px var(--page-pad);
  }
}

/* Ensure clear separation between tabs and slider within Culture */
.culture .portfolio-slider {
  margin-top: clamp(24px, 4vw, 60px);
}

/* Portfolio content box position and size */
.portfolio-slider .hero-content {
  left: 0;
  right: 0;
  bottom: clamp(26px, 5vw, 60px);
}
.portfolio-slider .hero-content-inner {
  max-width: 480px;
  padding: 18px 22px;
}
.portfolio-slider .hero-content-inner h2 {
  font-size: 32px;
}
/* History section */
.history {
  background: var(--accent);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 6vh, 64px) var(--page-pad);
  overflow-x: hidden;
}

.history-panel {
  background: var(--surface);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 1200px;
}

.history-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.history-header h2 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin: 0 0 12px;
}

.history-header h3 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  color: var(--primary);
  font-weight: 300;
}

.history-buttons {
  display: inline-flex;
  gap: 8px;
  align-self: center;
}

.history-buttons .history-prev,
.history-buttons .history-next {
  width: clamp(36px, 3.2vw, 44px);
  height: clamp(56px, 6vw, 72px);
  border: 0;
  background: transparent;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.history-buttons .history-prev:hover,
.history-buttons .history-next:hover {
  color: #000;
}

.history-buttons .history-prev:disabled,
.history-buttons .history-next:disabled {
  background: transparent;
  color: #9e9e9e;
  cursor: not-allowed;
  opacity: 0.6;
}

.history-buttons .history-prev i,
.history-buttons .history-next i {
  font-size: clamp(22px, 2.6vw, 32px);
}

.history-buttons button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.history-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.history-viewport {
  overflow: hidden;
  width: 100%;
}

.history-track {
  display: flex;
  gap: 32px;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.6s ease;
}

.history-card {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  overflow: hidden;
  color: var(--text);
}

.history-card .history-icon {
  margin-bottom: 14px;
  color: var(--accent);
}

.history-card .history-icon i {
  font-size: clamp(28px, 3.5vw, 42px);
}

.history-card h4 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--primary);
}

.history-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.7em * 3);
}

@media (max-width: 768px) {
  .history {
    min-height: auto;
    padding: clamp(16px, 4.5vh, 28px) var(--page-pad);
  }
  .history-panel {
    margin: 24px 0;
    padding: 24px;
  }
  .history-card {
    flex-basis: 70%;
  }
}
.brands {
  background: var(--surface);
}

.brands-intro {
  background: var(--surface);
  color: var(--text);
}
.brands-intro .centered-inner {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(8px, 1.6vw, 16px);
}
.brands-intro .centered-inner h3 {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  white-space: nowrap;
}
.brands-intro .centered-inner h3::before,
.brands-intro .centered-inner h3::after {
  content: "";
  display: block;
  height: 1px;
  width: clamp(120px, 16vw, 240px);
  background: var(--accent);
  opacity: 0.85;
}

.brands-stage {
  position: relative;
  padding: clamp(16px, 3vw, 32px) var(--page-pad) clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  --brand-gap: clamp(24px, 3.2vw, 40px);
}

.brand-prev,
.brand-next {
  width: clamp(36px, 3.2vw, 44px);
  height: clamp(56px, 6vw, 72px);
  border: 0;
  background: transparent;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.brand-prev,
.brand-next {
  position: relative;
  z-index: 2;
}

.brand-prev:hover,
.brand-next:hover {
  color: var(--primary);
}

.brand-prev:disabled,
.brand-next:disabled {
  color: #9e9e9e;
  cursor: not-allowed;
  opacity: 0.6;
}

.brand-prev i,
.brand-next i {
  font-size: clamp(22px, 2.6vw, 32px);
}

.brands-slider {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}
.brands-viewport {
  overflow: hidden;
  width: 100%;
}
.brands-track {
  display: flex;
  gap: var(--brand-gap);
  transition: transform 0.6s ease;
  will-change: transform;
  align-items: center;
}

.brand-item {
  flex: 0 0 clamp(220px, 18vw, 300px);
  display: grid;
  justify-items: center;
  gap: 4px;
}

.brand-img {
  height: clamp(72px, 8vw, 120px);
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
}

.brand-name {
  margin-top: 0;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .brands-stage {
    padding: 24px 16px 40px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    --brand-gap: clamp(16px, 4vw, 24px);
  }
  .brand-prev,
  .brand-next {
    order: 0;
    justify-self: center;
  }
  .brand-item {
    flex: 0 0 100%;
  }
}

.newsroom {
  background: var(--background);
  margin-top: clamp(16px, 4vw, 32px);
  margin-bottom: clamp(24px, 6vw, 60px);
}
.newsroom-inner {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 60px) var(--page-pad);
}
.news-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  margin-bottom: clamp(16px, 4vw, 24px);
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin: 0 0 8px;
}
.news-header h3 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.2;
  color: var(--primary);
  font-weight: 300;
}
.news-header .button.cta {
  white-space: nowrap;
}
.newsroom .contentbox {
  max-width: min(60%, 520px);
  padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.4vw, 14px);
}
.newsroom .contentbox .title {
  color: var(--surface);
  overflow-wrap: anywhere;
  word-break: break-word;
  /* line-height: 1.25; */
}
.newsroom .meta {
  font-size: 10px;
}

.newsroom .meta .date {
  color: var(--accent);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(8px, 1.2vw, 16px);
  align-items: stretch;
  --news-row: clamp(260px, 32vw, 400px);
  grid-auto-rows: var(--news-row);
  grid-auto-flow: dense;
}
.news-card {
  position: relative;
  height: 100%;
}
.news-card.large {
  grid-row: span 2;
}
.news-card.left {
  grid-column: 1;
}
.news-card.right {
  grid-column: 2;
}
.news-card.wide {
  grid-column: 1 / -1;
}
.news-link {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.news-link picture,
.news-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 42%);
}
.contentbox {
  position: absolute;
  left: clamp(12px, 2vw, 20px);
  bottom: clamp(12px, 2vw, 20px);
  background: var(--overlay);
  color: var(--surface);
  padding: clamp(12px, 1.6vw, 16px) clamp(14px, 1.8vw, 18px);
  border-radius: 0;
  max-width: 720px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.meta {
  display: flex;
  gap: 10px;
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.95;
}
.meta .date {
  color: var(--surface);
  opacity: 0.9;
}
.meta .division {
  color: var(--accent);
}
.title {
  margin: 8px 0 0;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.4;
  color: var(--surface);
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card.large {
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .news-header {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .news-header h3 {
    font-size: clamp(24px, 5vw, 32px);
  }
  .news-header .button.cta {
    justify-self: start;
    margin-top: 8px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .news-header h3 {
    font-size: clamp(22px, 7vw, 26px);
  }
  .news-header .button.cta {
    padding: 8px 12px;
    font-size: 12px;
  }
  .newsroom .contentbox {
    max-width: 460px;
    padding: 6px 8px;
  }
  .newsroom .contentbox .title {
    font-size: clamp(12px, 4.6vw, 16px);
  }
  .newsroom .meta {
    font-size: 9px;
    letter-spacing: 0.4px;
    gap: 6px;
    flex-direction: column;
  }
  .newsroom .meta .date,
  .newsroom .meta .division {
    white-space: nowrap;
  }
  .history {
    min-height: auto;
    padding: clamp(12px, 4vh, 20px) var(--page-pad);
  }
  .history-panel {
    padding: 18px;
  }
  .history-card h4 {
    font-size: clamp(14px, 4.8vw, 18px);
  }
  .history-card p {
    font-size: clamp(12px, 4.2vw, 15px);
    line-height: 1.6;
  }
  .portfolio-tabs .cta {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 16px;
  }
  .hero-content h2 {
    font-size: clamp(18px, 6vw, 20px);
  }
  .news-header h3 {
    font-size: clamp(18px, 6vw, 22px);
  }
  .newsroom .contentbox {
    max-width: 420px;
    padding: 5px 7px;
  }
  .newsroom .meta {
    font-size: 8px;
    gap: 4px;
  }
  .newsroom .contentbox .title {
    font-size: clamp(11px, 4.2vw, 15px);
  }

  /* News Page Styles */
  .featured-news {
    background: var(--surface);
    padding: clamp(40px, 8vw, 80px) 0;
  }

  .featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .article-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .article-content {
    padding: 24px 0;
  }

  .article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--secondary);
  }

  .article-category {
    background: var(--accent);
    color: var(--surface);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
  }

  .featured-article h3 {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.3;
    margin: 0 0 16px;
    color: var(--primary);
  }

  .featured-article p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 24px;
    opacity: 0.9;
  }

  .article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
  }

  .article-link:hover {
    gap: 12px;
  }

  .news-grid {
    background: var(--background);
    padding: clamp(40px, 8vw, 80px) 0;
  }

  .news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .news-card {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .card-content {
    padding: 24px;
  }

  .card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--secondary);
  }

  .card-category {
    background: var(--accent);
    color: var(--surface);
    padding: 3px 10px;
    border-radius: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 10px;
  }

  .news-card h4 {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    margin: 0 0 12px;
    color: var(--primary);
  }

  .news-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 16px;
    opacity: 0.85;
  }

  .card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .card-link:hover {
    color: var(--primary);
  }

  .news-pagination {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: clamp(24px, 4vw, 40px);
    margin-bottom: clamp(28px, 5vw, 60px);
    width: 100%;
    text-align: center;
    border-top: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
    padding-top: clamp(12px, 2.6vw, 18px);
  }
  .news-pagination .btn-group {
    gap: 12px;
  }
  .page-btn {
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
    background: color-mix(in srgb, var(--surface) 96%, var(--background) 4%);
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .page-btn.active {
    background: var(--accent);
    color: var(--surface);
    border-color: var(--accent);
  }
  .page-btn:focus {
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent) 25%, transparent);
  }

  .leadership {
    background: var(--background);
    padding: clamp(48px, 8vw, 96px) 0;
    margin: clamp(40px, 8vw, 100px) 0;
  }

  .leadership .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-pad);
  }

  .leadership-inner {
    padding: clamp(28px, 6vw, 64px) 0;
  }

  .leadership .section-title {
    margin: 0 0 20px;
    font-size: clamp(28px, 4.2vw, 40px);
    color: var(--primary);
    font-weight: 300;
  }

  .leadership-hero {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .leadership-hero picture,
  .leadership-hero img {
    display: block;
    width: 100%;
    height: auto;
  }

  .leadership .news-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.6vw, 24px);
  }

  @media (max-width: 900px) {
    .leadership .news-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .leadership .news-cards {
      grid-template-columns: 1fr;
    }
  }

  .leadership .card-image {
    display: grid;
    place-items: center;
    padding: 12px;
  }
  .leader-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .leader-avatar {
    border: 2px solid var(--accent);
  }

  .leadership .card-content {
    padding: 12px 0;
  }

  .leadership .news-card h4 {
    font-size: clamp(15px, 2.2vw, 19px);
    margin: 0 0 6px;
  }

  .leadership .news-card p {
    font-size: 13px;
    margin: 0 0 10px;
  }

  .leadership .card {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .leadership .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  @media (hover: none) {
    .leadership .card:hover {
      transform: none;
    }
  }
  .leadership .card-title {
    color: var(--primary);
  }
  .leadership .card-body {
    padding: 16px 20px;
  }

  .badge-accent {
    background: var(--accent);
    color: var(--surface);
    border-radius: 16px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.3px;
  }
  .btn-accent {
    --_c: var(--accent);
    color: var(--surface);
    background: var(--accent);
    border-color: var(--accent);
  }
  .btn-accent:hover {
    color: var(--surface);
    background: color-mix(in srgb, var(--accent) 85%, white 15%);
    border-color: color-mix(in srgb, var(--accent) 85%, white 15%);
  }
  .leadership .card-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Responsive News Styles */
  @media (max-width: 768px) {
    .featured-article {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .featured-article h3 {
      font-size: clamp(20px, 5vw, 28px);
    }

    .featured-article p {
      font-size: 16px;
    }

    .news-cards {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .card-image img {
      height: 180px;
    }
  }

  @media (max-width: 480px) {
    .featured-news {
      padding: 40px 0;
    }

    .featured-article {
      gap: 16px;
    }

    .article-content {
      padding: 16px 0;
    }

    .article-meta {
      font-size: 12px;
      gap: 12px;
    }

    .article-category {
      font-size: 10px;
      padding: 3px 10px;
    }

    .featured-article h3 {
      font-size: clamp(18px, 5vw, 24px);
    }

    .featured-article p {
      font-size: 14px;
    }

    .news-cards {
      gap: 16px;
    }

    .card-content {
      padding: 16px;
    }

    .news-card h4 {
      font-size: clamp(14px, 4vw, 18px);
    }
  }
  .split .content p {
    font-size: 13px;
  }
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(30, 58, 95, 0.7)), url("assets/images/Lobby.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.contact-hero h1 {
  color: white;
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-hero-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 32px;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-hero-overlay h2 {
  color: var(--primary);
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

/* Split Screen Contact Section */
.contact-split {
  padding: clamp(40px, 8vw, 80px) var(--page-pad);
  background: var(--surface);
}

.contact-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-split-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.contact-split-image iframe {
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  display: block;
  border: 0;
}

.contact-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-split-content h2 {
  color: var(--primary);
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 24px;
}

.contact-split-content h3 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-split-content p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--primary);
  padding: clamp(40px, 8vw, 80px) var(--page-pad);
  color: white;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-container h2 {
  color: white;
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 48px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  text-align: left;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.form-control select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.phone-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.phone-prefix {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  white-space: nowrap;
}

.phone-input input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
}

.phone-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-submit-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 18px 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
  margin-top: 24px;
}

.form-submit-btn:hover {
  background: color-mix(in srgb, var(--accent) 90%, white 10%);
  transform: translateY(-2px);
}

.form-footer {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.form-footer a {
  color: var(--accent);
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Careers Section */
.careers-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("assets/images/Team.webp");
  background-size: cover;
  background-position: center;
  padding: clamp(60px, 10vw, 120px) var(--page-pad);
  color: white;
}

.careers-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.careers-card {
  background: var(--overlay);
  padding: 48px;
  border-radius: 0;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
  color: var(--text);
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.careers-card h2 {
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.jobs-modal .modal-content {
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.jobs-modal .modal-header {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
}
.jobs-modal .modal-title {
  font-family: var(--font-primary);
  color: var(--primary);
}
.jobs-modal .accordion-item {
  border: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.jobs-modal .accordion-button {
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
}
.jobs-modal .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--highlight) 16%, var(--surface));
  color: var(--text);
  box-shadow: none;
}
.jobs-modal .accordion-body {
  background: color-mix(in srgb, var(--surface) 98%, var(--background) 2%);
}
.job-apply-form .form-control {
  border-radius: 8px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 96%, var(--background) 4%);
  border: 2px solid color-mix(in srgb, var(--text) 12%, transparent);
}
.job-apply-form .form-control::placeholder {
  color: color-mix(in srgb, var(--text) 55%, var(--background) 45%);
}
.job-apply-form .form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: color-mix(in srgb, var(--surface) 98%, var(--background) 2%);
}
.job-apply-form .form-submit-btn {
  margin-top: 6px;
}

.careers-card p {
  color: var(--surface);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 18px;
}

.careers-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.careers-cta:hover {
  color: var(--accent);
  gap: 12px;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
  .contact-hero-overlay {
    left: 20px;
    bottom: 20px;
    padding: 16px 24px;
  }

  .contact-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .careers-card {
    padding: 32px 24px;
  }

  .contact-hero {
    height: 50vh;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero-overlay {
    left: 16px;
    bottom: 16px;
    right: 16px;
    text-align: center;
  }

  .contact-form-container h2 {
    font-size: 28px;
  }

  .careers-card h2 {
    font-size: 28px;
  }
}
.article-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  z-index: 20;
}
.article {
  background: var(--surface);
}
.article .article-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px) var(--page-pad);
}
.article-source {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: clamp(16px, 3.6vw, 20px);
  color: var(--secondary);
}
.article-source i {
  color: var(--accent);
}
.article-source .source-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--secondary);
}
.article-source .source-link:hover {
  color: var(--accent);
}
.article .button {
  margin-bottom: 12px;
}
.article .article-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  margin: 12px 0 18px;
}
.article .article-content p {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 16px;
}
