@font-face {
  font-family: "Feature";
  src: url("../assets/fonts/FeatureDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../assets/fonts/FontsFree-Net-SFProDisplay-Light-1.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../assets/fonts/FontsFree-Net-SFProDisplay-Regular-1.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../assets/fonts/FontsFree-Net-SFProDisplay-Medium-1.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../assets/fonts/FontsFree-Net-SFProDisplay-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --navy: #062f55;
  --navy-2: #003b67;
  --red: #c61829;
  --gold: #d59a25;
  --gold-soft: #f5ddae;
  --cream: #fff6e5;
  --off: #fbfaf6;
  --text: #101010;
  --muted: #6b6b6b;
  --line: #d4b16b;
  --container: min(88vw, 1770px);
  --header-font: "Feature";
  --subheader-font: "SF Pro Display";
  --serif: "Feature";
  --sans: "SF Pro Display";
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(80px, 8vw, 120px);
  overflow-x: hidden;
}

/* Lenis Smooth Scroll Setup */
html.lenis,
html.lenis body {
  height: auto;
}

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Scroll-to-Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(20px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
body {
  margin: 0;
  color: var(--text);
  font-family: var(--subheader-font);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.45;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  transform: translateY(-200%);
  transition: 0.2s;
}
.skip-link:focus {
  transform: none;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  position: relative;
  padding: clamp(72px, 7vw, 95px) 0;
  scroll-margin-top: clamp(65px, 6vw, 90px);
}
[id] {
  scroll-margin-top: clamp(65px, 6vw, 90px);
}
.eyebrow {
  margin: 0 0 clamp(14px, 1.4vw, 24px);
  color: #c89232;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.78rem, 1vw, 1.12rem);
  font-weight: 500;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--header-font);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
h3 {
  font-family: var(--subheader-font);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
h1 span,
h2 span {
  color: var(--red);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: clamp(1.15rem, 1.25vw, 1.35rem);
  font-weight: 400;
  white-space: nowrap;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  border: 1px solid transparent;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.12);
}
.button-gold {
  background: #dd9600;
  color: white;
}
.button-navy {
  background: var(--navy);
  color: white;
}
.button-red {
  background: var(--red);
  color: white;
}
.button-white {
  background: white;
  color: var(--navy);
  border-color: rgba(6, 47, 85, 0.08);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.center-action {
  text-align: center;
  margin-top: clamp(34px, 4vw, 65px);
}
.centered {
  text-align: center;
}
.centered-row {
  justify-content: center;
}
.section-heading h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  margin-bottom: 0;
}
.section-heading .lead {
  max-width: 980px;
  margin: clamp(18px, 2vw, 30px) auto 0;
  color: var(--muted);
  font-size: clamp(1.16rem, 1.25vw, 1.48rem);
  line-height: 1.55;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: clamp(14px, 2vw, 24px) 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-bottom-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1.5px solid #d49a37;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  width: 86px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 6px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-scrolled .brand {
  width: 78px;
}
.header-actions .button {
  transition: padding 0.35s ease,
              min-height 0.35s ease,
              font-size 0.35s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease,
              background 0.2s ease;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.primary-nav,
.header-actions {
  display: none;
}
.menu-toggle {
  margin-left: auto;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid rgba(6, 47, 85, 0.16);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}
:is(.menu-toggle.is-active, .menu-toggle[aria-expanded="true"]) span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
:is(.menu-toggle.is-active, .menu-toggle[aria-expanded="true"]) span:not(.sr-only):nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
:is(.menu-toggle.is-active, .menu-toggle[aria-expanded="true"]) span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.primary-nav.is-open {
  position: absolute;
  top: calc(100% + 4px);
  left: 6vw;
  right: 6vw;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.primary-nav.is-open a {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}
.primary-nav.is-open a:last-child {
  border-bottom: 0;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  width: 100%;
  padding: 12px 10px;
  border: 0;
  border-bottom: 1px solid #eee;
  background: transparent;
  color: #101010;
  text-align: left;
  font-weight: 500;
}
.nav-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.is-open .nav-chevron {
  transform: translateY(4px) rotate(225deg);
}
.nav-dropdown-menu {
  display: none;
  gap: 4px;
  padding: 8px;
  border-radius: 16px;
  background: #f7f5ef;
  border: 1px solid rgba(212, 165, 90, 0.2);
}
.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}
.primary-nav.is-open .nav-dropdown-menu a {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 12px 14px 12px 18px;
  border-bottom: 0;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.nav-dropdown-menu a:hover {
  background: #ffffff;
}
.nav-dropdown-menu a[aria-current="page"] {
  background: #ffffff;
  border-left: 3px solid var(--gold, #d49a37);
}
.nav-dropdown-menu strong {
  color: #0c2340;
  font-size: 0.98rem;
  font-weight: 600;
}
.nav-dropdown-menu span {
  color: #6b778c;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.35;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding-top: 200px !important;
  padding-bottom: 56px;
  background: #062f55;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;

  pointer-events: none;
}
.hero-art {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  margin-bottom: clamp(24px, 3vw, 42px);
}
.hero-copy > p:not(.hero-note) {
  max-width: 700px;
  font-size: clamp(1.16rem, 1.25vw, 1.48rem);
  line-height: 1.55;
  margin-bottom: clamp(24px, 2.2vw, 34px);
}
.hero-note {
  margin: clamp(24px, 2.8vw, 42px) 0;
  color: #242424;
  font-size: clamp(1.16rem, 1.25vw, 1.48rem);
}
.hero-metrics {
  border-top: 1px solid #d7a833;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 24px;
  max-width: 750px;
}
.hero-metrics > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-metrics strong {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}
.hero-metrics span {
  font-size: 1.26rem;
  color: #1f1f1f;
}

/* About */
.about {
  background: #fff;
  padding-bottom: 0 !important;
  padding-block-end: 0 !important;
}
.about-grid {
  display: grid;
  gap: 50px;
}
.about-copy h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  margin-bottom: clamp(12px, 1.2vw, 18px);
}
.about-copy > p:not(.eyebrow):not(.about-emphasis) {
  font-size: clamp(1.16rem, 1.25vw, 1.48rem);
  line-height: 1.25;
  margin-bottom: 26px;
  max-width: 800px;
}
.about-emphasis {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  max-width: 650px;
  margin-top: 35px;
}
.mission-card {
  background: linear-gradient(155deg, #347fb0 0%, #0b4c7b 48%, #002e53 100%);
  border-radius: 34px 34px 0 0;
  padding: clamp(36px, 4vw, 56px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
}
.mission-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: center;
  gap: 24px;
}
.mission-row h3 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 5.2rem);
  line-height: 1;
  color: #e2bb78;
  font-weight: 500;
  margin: 0 0 10px;
}
.mission-row p {
  font-size: clamp(0.98rem, 1.22vw, 1.25rem);
  line-height: 1.4;
  margin: 0;
  max-width: 410px;
}
.line-icon img,
.mission-vision-icon img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  display: block;
}
.mission-divider {
  height: 2px;
  background: #23a2dc;
  opacity: 0.75;
  margin: clamp(30px, 3.5vw, 48px) 0;
}

/* Philosophy */
.philosophy {
  min-height: 520px;
  background: #f9ead1 url("../assets/Global assets/homesectionbanner2.png") 65% center/cover no-repeat;
  overflow: hidden;
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;

}
.philosophy-inner {
  position: relative;
  z-index: 1;
}
.philosophy-copy {
  max-width: 690px;
}
.philosophy h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  color: #090909;
  margin-bottom: 45px;
}
.philosophy-list {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}
.check-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 16px;
}
.check-item > span,
.check-item img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 15px;
  background: linear-gradient(145deg, #2d84bd, #04385e);
  object-fit: contain;
}
.check-item p {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.45rem);
  line-height: 1.16;
  font-weight: 500;
}

/* Priorities */
.priorities {
  background: #fff;
}
.priority-grid {
  display: grid;
  gap: 24px;
  margin-top: clamp(48px, 5vw, 78px);
}
.priority-card {
  background: linear-gradient(135deg, #fff0cf 0%, #fffbf2 100%);
  border-radius: 20px;
  padding: 14px 26px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 22px;
}
.icon-disc {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2e83b7, #00335c);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.icon-disc img,
.icon-disc svg {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}
.priority-card h3 {
  font-family: var(--subheader-font);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1.3rem, 1.7vw, 1.85rem);
  line-height: 1.16;
  margin-bottom: 4px;
}
.priority-card p {
  font-size: clamp(1.12rem, 1.18vw, 1.23rem);
  line-height: 1.36;
  margin: 0;
  max-width: 600px;
}
.support-line {
  text-align: center;
  color: #727272;
  font-size: clamp(0.96rem, 1.2vw, 1.35rem);
  margin: clamp(35px, 4vw, 58px) 0 0;
  font-weight: 100;
}

/* Segments */
.segments {
  background: var(--off);
}
.segment-grid {
  display: grid;
  gap: 24px;
  margin-top: clamp(45px, 5vw, 72px);
}
.segment-card {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(180deg, #ffffff 0%, rgba(223, 189, 130, 0.25) 60%, #dfbd82 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.segment-card > img {
  width: 100%;
  aspect-ratio: 1.63/1;
  object-fit: cover;
}
.segment-body {
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.segment-body h3 {
  font-family: var(--subheader-font);
  font-weight: 600;
  font-size: clamp(1.35rem, 1.55vw, 1.75rem);
  line-height: 1.15;
  color: #122b50;
  margin-bottom: 18px;
}
.segment-body > p {
  color: #777;
  font-size: clamp(1.03rem, 1.25vw, 1.38rem);
  line-height: 1.55;
  font-weight: 100;
  max-width: 350px;
  margin-bottom: 16px;
}
.segment-body ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 28px;
}
.segment-body li {
  font-size: clamp(1.25rem, 1.37vw, 1.42rem);
  padding-left: 24px;
  position: relative;
  line-height: 1.35;
  max-width: 350px;

}
.tick-icon {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  vertical-align: -0.05em;
  margin-right: 6px;
  background-color: currentColor;
  -webkit-mask: url("../assets/tick-white.png") center / contain no-repeat;
  mask: url("../assets/tick-white.png") center / contain no-repeat;
}
.segment-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 14px;
  height: 14px;
  background-color: #d3ae6c;
  -webkit-mask: url("../assets/tick-white.png") center / contain no-repeat;
  mask: url("../assets/tick-white.png") center / contain no-repeat;
}

/* Process */
.process {
  background: #fff;
}
.process-grid {
  display: grid;
  gap: 38px;
  margin-top: clamp(55px, 6vw, 90px);
}
.process-image {
  width: 100%;
  border-radius: 34px;
  aspect-ratio: 0.82/1;
  object-fit: cover;
  order: -1;
  max-height: 900px;
}
.process-column {
  display: grid;
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid #d6b874;
}
.process-step:last-child {
  border-bottom: 0;
}
.process-step > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2d83b9, #00345c);
  color: white;
  font-size: 1.35rem;
  font-weight: 700;
}
.process-step h3 {
  font-family: var(--subheader-font);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(1.4rem, 1.7vw, 1.8rem);
  line-height: 1.25;
  margin-bottom: 18px;
}
.process-step p {
  color: #737373;
  font-size: clamp(0.95rem, 1.15vw, 1.28rem);
  line-height: 1.42;
  margin: 0;
  max-width: 350px;
}

/* Origin */
.origin {
  background: var(--off);
}
.origin-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.origin-grid > img {
  border-radius: 36px;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.origin-copy h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  margin-bottom: 34px;
}
.origin-copy p:not(.eyebrow) {
  font-size: clamp(1.2rem, 1.3vw, 1.52rem);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 800px;
}
.origin-copy .muted {
  color: #747474;
  font-weight: 100;
}
.origin-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(42px, 5vw, 72px);
}
.origin-pills span {
  flex: 1 1 220px;
  text-align: center;
  background: linear-gradient(135deg, #fff5e4 0%, #fef9f0 100%);
  border: 1px solid #e8ca92;
  border-radius: 999px;
  padding: 16px 12px;
  font-size: clamp(1.1rem, 1.15vw, 1.25rem);
  font-weight: 300;
  color: #111111;
  cursor: default;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.origin-pills span:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Panorama */
.panorama {
  width: 100%;
  overflow: hidden;
}
.panorama img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Supply */
.supply {
  background: #fff;
}
.supply-heading .lead {
  max-width: 1500px;
}
.carousel {
  --flow-gap: 56px;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 16px;
  margin-top: clamp(45px, 5vw, 75px);
}
.carousel-viewport {
  overflow: hidden;
  padding-block: 2px;
  touch-action: pan-y;
}
.carousel-viewport:focus-visible {
  outline: 3px solid rgba(213, 154, 37, 0.7);
  outline-offset: 7px;
  border-radius: 24px;
}
.carousel-track {
  display: flex;
  gap: var(--flow-gap);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.supply-card {
  position: relative;
  flex: 0 0 calc(100% - 0px);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(6, 47, 85, 0.08);
}
.supply-card img {
  width: 100%;
  aspect-ratio: 1.235/1;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}
.supply-card .supply-label {
  display: block;
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 18px 8px 19px;
  border-radius: 0 0 22px 22px;
  font-size: clamp(0.95rem, 1.15vw, 1.45rem);
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}
.supply-card:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc((var(--flow-gap) + clamp(42px, 3.5vw, 58px)) / -2);
  width: clamp(42px, 3.5vw, 58px);
  height: clamp(42px, 3.5vw, 58px);
  border-radius: 50%;
  border: 1px solid #d8d7d1;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='12' x2='20' y2='12'/%3E%3Cpolyline points='14 6 20 12 14 18'/%3E%3C/svg%3E") center/24px 24px no-repeat;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.carousel-control,
.audience-controls > button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(145deg, #2c82b7, #00355d);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.carousel-control {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carousel-control:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 47, 85, 0.22);
}
.carousel-control:active {
  transform: scale(0.97);
}
.carousel-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Markets */
.markets {
  background: #fff;
}
.markets-grid {
  display: grid;
  gap: 32px;
  align-items: stretch;
}
.markets-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.markets-copy h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  margin-bottom: 24px;
}
.markets-copy h2 span {
  white-space: nowrap;
}
.markets-copy > p:not(.eyebrow) {
  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
  line-height: 1.55;
  color: #555;
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 100;
}
.market-card {
  position: relative;
  margin-top: 60px;
  background: linear-gradient(135deg, #f7e5c3 0%, #fdf8eb 100%);
  border-radius: 28px;
  padding: 85px 45px 10px 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: visible;
}
.flag-badge {
  position: absolute;
  top: 0;
  left: 48px;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.flag-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.market-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  color: #052a4e;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 6px 0;
  text-align: left;
}
.market-label {
  color: #c61829;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.35rem;
  font-weight: 100;
  margin: 0 0 24px 0;
  text-align: left;
}
.market-card > p:last-child {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.28vw, 1.48rem);
  line-height: 1.55;
  color: #202020;
  font-weight: 100;
  margin: 0;
  text-align: left;
}
.flag-india {
  display: flex;
  flex-direction: column;
}
.flag-stripe {
  flex: 1;
  width: 100%;
}
.flag-orange {
  background: #ff671f;
}
.flag-white {
  background: #ffffff;
  display: grid;
  place-items: center;
  position: relative;
}
.flag-green {
  background: #046a38;
}
.chakra-icon {
  width: 30px;
  height: 30px;
  display: block;
}
.flag-bangladesh {
  background: #006a4e;
  display: grid;
  place-items: center;
}
.bd-red-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f42a41;
}

/* Audience */
.audience {
  background: #fff;
  padding-bottom: 0;
}
.audience-heading {
  margin-bottom: clamp(45px, 5vw, 72px);
}
.audience-heading h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
}
.audience-carousel {
  position: relative;
  height: clamp(620px, 45vw, 760px);
  min-height: clamp(620px, 45vw, 760px);
  border-radius: 0;
  overflow: hidden;
}
.audience-slides,
.audience-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.audience-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  display: block;
}
.audience-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.audience-side {
  display: none !important;
}
.audience-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: left center;
  z-index: 1;
}

.audience-card {
  position: absolute;
  right: clamp(120px, 12vw, 180px);
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 24px;
  padding: clamp(38px, 4.5vw, 56px) clamp(24px, 3.2vw, 40px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  width: min(440px, 86vw);
  max-width: 440px;
  min-height: clamp(400px, 30vw, 470px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.audience-card h3 {
  font-family: var(--subheader-font);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.audience-card > p:not(.eyebrow) {
  color: #555;
  font-size: clamp(0.95rem, 1.1vw, 1.18rem);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}
.audience-card .button {
  width: 100%;
  align-self: center;
  justify-content: center;
  text-align: center;
}
.audience-controls {
  position: absolute;
  z-index: 10;
  left: clamp(36px, 4vw, 64px);
  bottom: clamp(36px, 4vw, 54px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.audience-prev,
.audience-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(2, 24, 44, 0.85);
  border: 1.5px solid rgba(224, 183, 119, 0.6);
  color: #ffffff;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.audience-prev:hover,
.audience-next:hover {
  background: #dd9600;
  border-color: #dd9600;
  color: #02182c;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(221, 150, 0, 0.4);
}
.audience-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-inline: 4px;
}
.audience-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #073b63;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.audience-dots button.is-active {
  background: #dd9600;
  border: 1.5px solid #073b63;
  transform: scale(1.25);
}

/* CTA */
.cta {
  background: var(--off);
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 2px solid #c5923b;
  border-radius: 35px;
  padding: clamp(65px, 9vw, 140px) clamp(22px, 7vw, 120px);
  text-align: center;
  background: #f8d99f;
  box-shadow: 0 12px 40px rgba(7, 55, 95, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("../assets/ctabg.png") center/cover no-repeat;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta-panel .eyebrow {
  color: var(--red);
}
.cta-panel h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  margin-bottom: 28px;
}
.cta-panel > p:not(.eyebrow) {
  max-width: 950px;
  margin: 0 auto 40px;
  color: #5d6470;
  font-size: clamp(1.16rem, 1.25vw, 1.48rem);
  line-height: 1.55;
}
.cta-panel .button {
  min-width: min(100%, 350px);
}

/* Footer */
.footer {
  background: linear-gradient(
    180deg,
    #07375f 0%,
    #04233d 48%,
    #020a14 78%,
    #000 100%
  );
  color: #fff;
  padding: clamp(65px, 7vw, 110px) 0 45px;
}
.footer-top {
  display: block;
}
.footer-brand img {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
}
.footer-intro p {
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  line-height: 1.42;
  margin-bottom: 25px;
  max-width: 1350px;
  font-weight: 200;
}
.footer-intro strong {
  display: block;
  color: #dcb06d;
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  font-weight: 100;
}
.footer-divider {
  height: 1px;
  background: #0e6f9d;
  opacity: 0.6;
  margin: 38px auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 30px;
}
.footer-grid > div,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-style: normal;
}
.footer-grid h3 {
  font-family: var(--subheader-font);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #fff;
}
.footer-grid a {
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.96;
}
.footer-contact a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #deb16e;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.footer-contact small {
  display: block;
  color: #a9b0bc;
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 3px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  color: #8c939e;
  font-size: 1.2rem;
  font-weight: 300;
  padding-top: 10px;
}
.footer-bottom p {
  margin: 0;
  color: #8c939e;
}

.footer-credit-sep {
  display: inline;
  margin: 0 4px;
}

.footer-credit {
  display: inline;
}

.footer-bottom p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(222, 177, 110, 0.5);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-bottom p a:hover {
  color: #deb16e;
  text-decoration-color: #deb16e;
}

@media (max-width: 899px) {
  .footer-credit-sep {
    display: none;
  }

  .footer-credit {
    display: block;
    margin-top: 4px;
  }
}
.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2a2c30;
  display: grid;
  place-items: center;
  color: #b0b6c0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.socials a:hover {
  background: #deb16e;
  color: #062f55;
  transform: translateY(-2px);
}
.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.footer-bottom nav a {
  color: #8c939e;
  font-size: 0.92rem;
  font-weight: 300;
  transition: color 0.2s ease;
}
.footer-bottom nav a:hover {
  color: #ffffff;
}
.footer-bottom nav a[href*="cookie"] {
  display: none !important;
}
.legal-note {
  margin-top: 36px;
  color: #6e7580;
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 300;
  text-align: left;
}

@media (min-width: 900px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 600px */
@media (min-width: 600px) {
  .hero-metrics {
    grid-template-columns: repeat(3, max-content);
    justify-content: flex-start;
    gap: 0;
  }
  .hero-metrics > div {
    padding-left: clamp(18px, 2vw, 36px);
    padding-right: clamp(18px, 2vw, 36px);
    border-right: 1px solid #d7a833;
  }
  .hero-metrics > div:first-child {
    padding-left: 0;
  }
  .hero-metrics > div:last-child {
    padding-right: 0;
    border-right: 0;
  }
  .philosophy-list {
    grid-template-columns: 1fr 1fr;
  }
  .segment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .priority-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .supply-card {
    flex-basis: calc((100% - var(--flow-gap)) / 2);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */
@media (min-width: 768px) {
  .brand {
    width: 86px;
  }
  .hero {
    padding-top: 180px;
    min-height: 920px;
  }
  .hero-art {
    right: -5%;
    width: 70%;
    height: 82%;
  }
  .philosophy {
    background-position: 55% center;
  }
  .philosophy-list {
    gap: 44px 70px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-image {
    order: 0;
    grid-column: 1/-1;
    max-width: 680px;
    justify-self: center;
  }
  .origin-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .markets-grid {
    grid-template-columns: 1.08fr 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .markets-copy {
    grid-column: auto;
  }
  .audience-carousel {
    min-height: 740px;
  }
  .audience-slide {
    grid-template-columns: 1fr;
  }
  .audience-photo {
    min-height: 640px;
    background-position: left center;
  }
  .audience-card {
    left: auto;
    right: clamp(180px, 16vw, 280px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    margin: 0;
    width: min(460px, 38vw);
  }
  .audience-controls {
    bottom: 60px;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 1024px */
@media (min-width: 1024px) {
  .site-header {
    padding: 24px 0;
  }
  .site-header.is-scrolled {
    padding: 10px 0;
  }
  .menu-toggle {
    display: none;
  }
  .primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(34px, 3.4vw, 5.5rem);
    margin-left: auto;
    margin-right: 0;
  }
  .primary-nav > a,
  .nav-dropdown-toggle {
    font-size: clamp(1rem, 1.05vw, 1.15rem);
    white-space: nowrap;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .primary-nav > a:hover,
  .nav-dropdown-toggle:hover,
  .nav-dropdown:hover .nav-dropdown-toggle {
    color: #c89232 !important;
  }
  .primary-nav > a[aria-current="page"],
  .primary-nav > a.is-active,
  .nav-dropdown.is-current .nav-dropdown-toggle,
  .nav-dropdown.is-open .nav-dropdown-toggle {
    position: relative;
    color: #c89232 !important;
    font-weight: 500;
  }
  .primary-nav > a::after,
  .nav-dropdown-toggle::after,
  .nav-dropdown.is-current .nav-dropdown-toggle::after,
  .nav-dropdown.is-open .nav-dropdown-toggle::after,
  .primary-nav > a[aria-current="page"]::after,
  .primary-nav > a.is-active::after {
    display: none !important;
  }
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .nav-dropdown-toggle {
    color: #111111;
  }
  .site-header.is-scrolled .primary-nav > a:hover,
  .site-header.is-scrolled .nav-dropdown-toggle:hover,
  .site-header.is-scrolled .nav-dropdown:hover .nav-dropdown-toggle {
    color: #d48700 !important;
  }
  .site-header.is-scrolled .primary-nav > a[aria-current="page"],
  .site-header.is-scrolled .primary-nav > a.is-active,
  .site-header.is-scrolled .nav-dropdown.is-current .nav-dropdown-toggle,
  .site-header.is-scrolled .nav-dropdown.is-open .nav-dropdown-toggle {
    color: #d48700 !important;
  }
  .nav-dropdown {
    align-self: stretch;
    display: flex;
    align-items: center;
  }
  .nav-dropdown-toggle {
    position: relative;
    align-self: stretch;
    width: auto;
    padding: 0;
    border-bottom: 0;
  }
  .nav-dropdown-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 24px);
    left: 50%;
    display: grid;
    gap: 4px;
    width: min(400px, 90vw);
    padding: 12px;
    border: 1px solid rgba(212, 165, 90, 0.25);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
      0 20px 45px -10px rgba(7, 35, 64, 0.16),
      0 10px 20px -5px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px) scale(0.97);
    transform-origin: top center;
    transition:
      opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.24s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-header.is-scrolled .nav-dropdown-menu {
    top: calc(100% + 10px);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
  }
  .nav-dropdown-menu a {
    position: relative;
    display: grid;
    gap: 3px;
    padding: 14px 18px 14px 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }
  .nav-dropdown-menu a::after {
    content: "→";
    position: absolute;
    right: 16px;
    top: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold, #d49a37);
    opacity: 0;
    transform: translateX(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .nav-dropdown-menu a:hover {
    background: #fbf9f4;
    border-color: rgba(212, 165, 90, 0.2);
    transform: translateX(3px);
  }
  .nav-dropdown-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-dropdown-menu a:hover strong {
    color: var(--red, #bd2c2c);
  }
  .nav-dropdown-menu a:hover span {
    color: #4a5568;
  }
  .nav-dropdown-menu a[aria-current="page"] {
    background: linear-gradient(135deg, #fbf7f0 0%, #f4eee2 100%);
    border-color: rgba(212, 165, 90, 0.35);
  }
  .nav-dropdown-menu a[aria-current="page"]::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 14px;
    bottom: 14px;
    width: 3.5px;
    border-radius: 4px;
    background: var(--gold, #d49a37);
  }
  .nav-dropdown-menu a[aria-current="page"] strong {
    color: var(--navy, #0c2340);
    font-weight: 700;
  }
  .nav-dropdown-menu a[aria-current="page"] span {
    color: #525c6c;
  }
  .nav-dropdown-menu strong {
    color: #0c2340;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }
  .nav-dropdown-menu span {
    color: #6b778c;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.2s ease;
  }
  .header-actions {
    display: flex;
    align-items: center;
    margin-left: clamp(24px, 2.4vw, 48px);
    gap: clamp(14px, 1.4vw, 24px);
  }
  .header-actions .button {
    padding-inline: clamp(20px, 2vw, 34px);
  }
  .site-header.is-scrolled .header-actions .button {
    min-height: 44px;
    padding-inline: clamp(18px, 1.8vw, 28px);
    font-size: 1.05rem;
  }
  .site-header.is-scrolled .header-actions .button:last-child {
    background: #06345b;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .site-header.is-scrolled .header-actions .button:last-child:hover {
    background: #04233d;
    color: #ffffff;
  }
  .brand {
    width: 86px;
  }
  .site-header.is-scrolled .brand {
    width: 78px;
  }
  .hero {
    min-height: clamp(850px, 58vw, 1170px);
    padding-top: 220px;
    padding-bottom: 70px;
  }
  .hero-art {
    right: 0;
    width: 61%;
    height: 83%;
  }
  .hero-copy {
    max-width: 800px;
  }
  .hero h1,
  .section-heading h2,
  .about-copy h2,
  .philosophy h2,
  .origin-copy h2,
  .markets-copy h2,
  .audience-heading h2,
  .cta-panel h2 {
    font-size: clamp(2.2rem, 3.8vw, 5.2rem);
    line-height: 1.24;
  }
  .about-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
    gap: 60px;
    align-items: stretch;
  }
  .mission-card {
    margin-bottom: 0;
  }
  .philosophy {
    min-height: 865px;
    padding-block: 100px;
  }
  .priority-card {
    grid-template-columns: 76px 1fr;
    padding: 14px 26px;
    gap: 22px;
  }
  .icon-disc {
    width: 76px;
    height: 76px;
  }
  .icon-disc svg,
  .icon-disc img {
    width: 80%;
    height: 80%;
  }
  .segment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr minmax(360px, 1.35fr) 1fr;
    gap: 60px;
    align-items: center;
  }
  .process-image {
    grid-column: auto;
    max-width: none;
  }
  .process-step {
    min-height: 245px;
  }
  .supply-card {
    flex-basis: calc((100% - (var(--flow-gap) * 2)) / 3);
  }
  .markets-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
    align-items: stretch;
  }
  .markets-copy {
    grid-column: auto;
    padding-right: 30px;
  }
  .market-card {
    max-width: 520px;
    width: 100%;
    min-height: auto;
  }
  .audience-carousel {
    min-height: 850px;
  }
  .audience-slide {
    grid-template-columns: 1fr;
  }
  .audience-photo {
    min-height: 820px;
    background-position: left center;
  }
  .audience-card {
    top: 50%;
    transform: translateY(-50%);
    right: clamp(180px, 16vw, 280px);
    width: min(460px, 34vw);
  }
  .audience-controls {
    left: 7vw;
    bottom: 75px;
  }
}

/* 1280px */
@media (min-width: 1280px) {
  .brand {
    width: 92px;
  }
  .hero {
    padding-top: 255px;
  }
  .hero-copy {
    max-width: 850px;
  }
  .about-grid {
    gap: 90px;
  }
  .mission-row {
    grid-template-columns: 130px 1fr;
    gap: 40px;
  }
  .philosophy-copy {
    max-width: 730px;
  }
  .priority-grid {
    gap: 28px;
  }
  .priority-card {
    min-height: 0 !important;
    padding: 14px 26px !important;
  }
  .segment-body > p {
    min-height: 0;
  }
  .process-grid {
    gap: 75px;
  }
  .origin-grid {
    gap: 90px;
  }
  .carousel {
    --flow-gap: clamp(96px, 7vw, 142px);
    width: min(96.5vw, 2000px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: clamp(30px, 2.25vw, 46px);
  }
  .carousel-control {
    width: 48px;
    height: 48px;
  }
  .supply-card {
    flex-basis: calc((100% - (var(--flow-gap) * 3)) / 4);
  }
  .markets-grid {
    gap: 36px;
  }
  .audience-card {
    right: clamp(180px, 16vw, 280px);
  }
}

/* 1600px */
@media (min-width: 1600px) {
  .hero-copy {
    max-width: 930px;
  }
  .hero-art {
    width: 60%;
    height: 88%;
  }
  .about-copy {
    padding-top: 40px;
    padding-bottom: 20px;
  }
   /* .mission-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .mission-card .mission-row:first-of-type {
    margin-top: 0;
    padding-top: 8px;
  }
  .mission-card .mission-row:last-of-type {
    margin-bottom: 0;
    padding-bottom: 8px;
  }
  .mission-card .mission-divider {
    margin: 36px 0;
  } */
 
  .mission-row h3 {
    font-size: 5.5rem;
  }
  .philosophy-copy {
    padding-left: 20px;
  }
  .market-card {
    height: 100%;
    min-height: auto;
  }
  .audience-carousel {
    min-height: 930px;
  }
  .audience-photo {
    min-height: 900px;
  }
  .audience-card {
    top: 50%;
    transform: translateY(-50%);
    width: 470px;
  }
}

/* Mobile refinements */
@media (max-width: 599px) {
  :root {
    --container: min(90vw, 540px);
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding-top: 135px;
    min-height: 1040px;
    background: #062f55;
  }
  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.88) 55%,
      rgba(255, 255, 255, 0.4) 100%
    );
  }
  .hero-copy {
    max-width: none;
  }
  .hero h1,
  .section-heading h2,
  .about-copy h2,
  .philosophy h2,
  .origin-copy h2,
  .markets-copy h2,
  .audience-heading h2,
  .cta-panel h2 {
    font-size: 3.45rem;
    line-height: 0.94;
  }
  .hero .button-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-metrics {
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.58);
    padding: 22px;
    border-radius: 18px;
  }
  .about-copy h2,
  .origin-copy h2 {
    line-height: 1.02;
  }
  .mission-card {
    padding: 34px 24px;
    min-height: auto;
  }
  .mission-row {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }
  .mission-row h3 {
    font-size: 3.2rem;
  }
  .mission-row p {
    font-size: 0.95rem;
  }
  .philosophy {
    background-position: 62% center;
    min-height: 900px;
  }
  .philosophy::before {
    background: linear-gradient(
      90deg,
      rgba(255, 242, 220, 0.98) 0%,
      rgba(255, 242, 220, 0.94) 58%,
      rgba(255, 242, 220, 0.2) 100%
    );
  }
  .philosophy-copy {
    max-width: 355px;
  }
  .priority-card {
    grid-template-columns: 70px 1fr;
    padding: 14px 20px;
    gap: 16px;
    min-height: 0 !important;
  }
  .icon-disc {
    width: 70px;
    height: 70px;
  }
  .icon-disc svg {
    width: 46px;
    height: 46px;
  }
  .segment-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    grid-template-columns: 48px 1fr;
  }
  .process-step > span {
    width: 46px;
    height: 46px;
  }
  .origin-grid > img {
    border-radius: 24px;
  }
  .origin-pills span {
    flex-basis: 100%;
  }
  .carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }
  .carousel-control {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }
  .market-card {
    padding-top: 92px;
    min-height: auto;
    margin-top: 65px;
  }
  .flag-badge {
    width: 135px;
    height: 135px;
  }
  .audience-carousel {
    min-height: 930px;
  }
  .audience-photo {
    min-height: 500px;
  }
  
  .audience-card {
    bottom: 80px;
  }
  .audience-controls {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  .cta-panel br {
    display: none;
  }
  .cta-panel .button-row {
    flex-direction: column;
  }
  .cta-panel .button {
    width: 100%;
    white-space: normal;
  }
  .footer-brand img {
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* Simple Preloader */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #02182c;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

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

.simple-preloader-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(216, 150, 36, 0.18);
  border-top-color: #d89624;
  border-radius: 50%;
  animation: preloaderSpin 0.75s linear infinite;
}

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

/* ==========================================================================
   Custom Select Dropdowns (Form Matching Theme System)
   ========================================================================== */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 174, 87, 0.35);
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

/* Match Mill Requirement & Partner Supplier Forms (#ffffff / #f5f5f5 light inputs) */
.mill-fields .custom-select-trigger,
.supplier-fields .custom-select-trigger,
.custom-select.light-input-theme .custom-select-trigger {
  min-height: 64px;
  padding: 0 20px;
  border-radius: 11px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  color: #111111;
  font-size: 1rem;
}

/* Match Contact Page Form (#ffffff light inputs) */
.contact-form-fields .custom-select-trigger {
  min-height: 60px;
  padding: 0 18px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  color: #111111;
  font-size: 1rem;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible {
  border-color: #dd9600;
  box-shadow: 0 0 0 3px rgba(221, 150, 0, 0.18);
  outline: none;
}

/* Focus matching mill-requirement, contact and partners input focus states */
.mill-fields .custom-select-trigger:hover,
.mill-fields .custom-select-trigger:focus-visible,
.mill-fields .custom-select.is-open .custom-select-trigger,
.supplier-fields .custom-select-trigger:hover,
.supplier-fields .custom-select-trigger:focus-visible,
.supplier-fields .custom-select.is-open .custom-select-trigger,
.contact-form-fields .custom-select-trigger:hover,
.contact-form-fields .custom-select-trigger:focus-visible,
.contact-form-fields .custom-select.is-open .custom-select-trigger {
  background: #ffffff;
  border-color: #e0b777;
  box-shadow: 0 0 0 4px rgba(224, 183, 119, 0.25);
}

.custom-select.is-open .custom-select-trigger {
  border-color: #dd9600;
  background: #ffffff;
}

.custom-select-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-value.is-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.mill-fields .custom-select-value.is-placeholder,
.supplier-fields .custom-select-value.is-placeholder,
.contact-form-fields .custom-select-value.is-placeholder,
.custom-select.light-input-theme .custom-select-value.is-placeholder {
  color: #666666;
}

.custom-select-arrow {
  display: grid;
  place-items: center;
  color: #dd9600;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.mill-fields .custom-select-arrow,
.supplier-fields .custom-select-arrow,
.contact-form-fields .custom-select-arrow {
  color: #dd9600;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(180deg);
}

/* Clean White Background Dropdown Menu */
.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 45px rgba(2, 24, 44, 0.16);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  color: #222222;
  font-size: 0.98rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.18s ease, color 0.18s ease;
}

.custom-select-option:hover,
.custom-select-option.is-highlighted {
  background: #f4f6f8;
  color: #062f55;
  font-weight: 500;
}

.custom-select-option.is-selected {
  background: #fbf3e4;
  color: #dd9600;
  font-weight: 600;
  border: none;
}

.custom-select-option.is-selected::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: #dd9600;
  -webkit-mask: url("../assets/tick-white.png") center / contain no-repeat;
  mask: url("../assets/tick-white.png") center / contain no-repeat;
}

/* ==========================================================================
   Requirement Modal Popup
   ========================================================================== */
.requirement-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.requirement-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.requirement-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 20, 36, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.requirement-modal-card {
  position: relative;
  z-index: 1;
  width: min(1040px, 94vw);
  max-height: min(92vh, 880px);
  background: #041d33;
  border: 1px solid rgba(216, 177, 124, 0.35);
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: scale(0.92) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.requirement-modal.is-open .requirement-modal-card {
  transform: scale(1) translateY(0);
}

.requirement-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.requirement-modal-close:hover {
  background: #dd9600;
  border-color: #dd9600;
  color: #041d33;
  transform: scale(1.08) rotate(90deg);
}

.requirement-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.requirement-modal-media {
  position: relative;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  overflow: hidden;
  min-height: 520px;
}

.req-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.requirement-modal-card:hover .req-media-bg {
  transform: scale(1.04);
}

.req-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 29, 51, 0.35) 0%, rgba(4, 29, 51, 0.85) 60%, rgba(4, 29, 51, 0.98) 100%);
}

.req-media-content {
  position: relative;
  z-index: 1;
}

.req-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(221, 150, 0, 0.25);
  border: 1px solid rgba(221, 150, 0, 0.5);
  color: #e2bb78;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.req-media-content h3 {
  font-family: var(--header-font);
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 14px;
}

.req-media-content p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin-bottom: 24px;
}

.req-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.req-highlights li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 10px;
}

.req-highlights li span {
  color: #dd9600;
  font-weight: 700;
}

.requirement-modal-form-wrap {
  padding: 44px 40px;
  background: #041d33;
  overflow-y: auto;
}

.req-form-header h2 {
  font-family: var(--header-font);
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  color: #dd9600;
  font-weight: 300;
  margin: 0 0 6px;
}

.req-form-header p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
}

.req-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 16px;
  margin-bottom: 24px;
}

.req-field-full {
  grid-column: 1 / -1;
}

.req-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.req-form-grid label > span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.req-form-grid label > span b {
  color: #e63946;
}

.req-form-grid input,
.req-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 174, 87, 0.35);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.req-form-grid input::placeholder,
.req-form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.req-form-grid input:focus,
.req-form-grid textarea:focus {
  outline: none;
  border-color: #dd9600;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(221, 150, 0, 0.18);
}

.req-submit-btn {
  width: 100%;
  min-height: 54px;
  font-weight: 500;
  gap: 10px;
  font-size: 1.05rem;
}

.req-success-state {
  text-align: center;
  padding: 40px 20px;
}

.req-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(221, 150, 0, 0.15);
  border: 1px solid #dd9600;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.req-success-state h3 {
  font-family: var(--header-font);
  font-size: 2.2rem;
  color: #dd9600;
  margin: 0 0 12px;
}

.req-success-state p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

@media (max-width: 840px) {
  .requirement-modal-body {
    grid-template-columns: 1fr;
  }
  .requirement-modal-media {
    min-height: 240px;
    padding: 32px 24px;
  }
  .requirement-modal-form-wrap {
    padding: 32px 24px;
  }
  .req-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Subtle Image Hover Zoom Animation
   ========================================== */
:is(
  .panorama,
  .cotton-panorama,
  .about-panorama,
  .markets-panorama,
  .sustainability-panorama,
  .quality-panorama,
  .us-export-panorama,
  .sourcing-team-panorama,
  .story-photo,
  .segment-card,
  .solution-card,
  .quality-card,
  .partner-card
) {
  overflow: hidden;
}

:is(.market-card, .core-market-card) {
  overflow: visible !important;
}

:is(
  .panorama img,
  .cotton-panorama img,
  .about-panorama img,
  .markets-panorama img,
  .sustainability-panorama img,
  .quality-panorama img,
  .us-export-panorama img,
  .sourcing-team-panorama img,
  .process-image,
  .story-photo img,
  .segment-card > img,
  .solution-card img,
  .quality-card img,
  .partner-card img,
  .flag-badge img,
  .market-flag img
) {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease !important;
  will-change: transform;
}

:is(
  .panorama,
  .cotton-panorama,
  .about-panorama,
  .markets-panorama,
  .sustainability-panorama,
  .quality-panorama,
  .us-export-panorama,
  .sourcing-team-panorama,
  .process-grid,
  .process-column,
  .story-photo,
  .segment-card,
  .solution-card,
  .quality-card,
  .partner-card
):hover :is(img, .process-image) {
  transform: scale(1.035) !important;
  filter: brightness(1.02);
}

:is(.market-card, .core-market-card):hover :is(.flag-badge img, .market-flag img) {
  transform: scale(1.06) !important;
  filter: brightness(1.02);
}

/* ==========================================================================
   Universal Subtle Hover Animation System
   ========================================================================== */
:is(
  .market-card,
  .core-market-card,
  .supply-step-card,
  .journey-card,
  .cotton-category-card,
  .sustainability-pillar,
  .pillar-card,
  .about-card,
  .team-card,
  .milestone-card,
  .value-box,
  .solution-card,
  .spinning-mills-card,
  .origin-card,
  .quality-card,
  .spec-card,
  .partner-card,
  .supplier-card,
  .contact-card,
  .office-card
) {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform, box-shadow;
}

:is(
  .market-card,
  .core-market-card,
  .supply-step-card,
  .journey-card,
  .cotton-category-card,
  .sustainability-pillar,
  .pillar-card,
  .about-card,
  .team-card,
  .milestone-card,
  .value-box,
  .solution-card,
  .spinning-mills-card,
  .origin-card,
  .quality-card,
  .spec-card,
  .partner-card,
  .supplier-card,
  .contact-card,
  .office-card
):hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(6, 52, 91, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.button {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14) !important;
}

:is(.carousel-control, .audience-prev, .audience-next, .back-to-top) {
  transition: none !important;
}

:is(.carousel-control, .audience-prev, .audience-next, .back-to-top):hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Disable scroll reveal on all carousels site-wide */
:is([data-carousel], .carousel, .journey-carousel, .audience-carousel, [class*="carousel"]) :is(.reveal, .reveal-left, .reveal-right, .reveal-scale, .is-revealed, [data-reveal]) {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
  animation: none !important;
}

/* Subtle smooth slide animation for carousel tracks */
:is(
  .carousel-track,
  .journey-track,
  .origins-track,
  .technical-track,
  .evaluation-track,
  .mill-evaluation-track
) {
  animation: none !important;
}

:is(
  .supply-card,
  .journey-card,
  .technical-card,
  .evaluation-card,
  .mill-evaluation-card
):hover {
  transform: none !important;
  animation: none !important;
}

.audience-card,
.audience-card:hover,
.audience-slide:hover .audience-card {
  animation: none !important;
}

/* ==========================================================================
   INTERACTIVE MAP & PANNING SYSTEM
   ========================================================================== */

.interactive-map-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(6, 47, 85, 0.06);
  user-select: none;
}

.map-pan-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

.map-pan-img,
.interactive-map-box img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 780px;
  object-fit: contain;
  transform: none !important;
  animation: none !important;
}

/* Map image remains static without panning */
.interactive-map-box.is-in-view img,
.sourcing-map.is-in-view img,
.global-map-section.is-in-view img,
.sourcing-map-inner.is-in-view img,
.map-scroll.is-in-view img {
  animation: none !important;
  transform: none !important;
}

/* Hover overlay and hint badge */
.map-interactive-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 47, 85, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.map-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #deb16e;
  box-shadow: 0 0 0 rgba(222, 177, 110, 0.6);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 rgba(222, 177, 110, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(222, 177, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(222, 177, 110, 0); }
}

.map-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #deb16e;
  color: #062f55;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  pointer-events: auto;
}

.map-expand-btn svg {
  width: 16px;
  height: 16px;
}

.map-expand-btn:hover {
  background: #ffffff;
  color: #062f55;
  transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE MAP MODAL POPUP (FULL SCREEN ZOOM & PAN)
   ========================================================================== */

.map-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(4, 20, 36, 0.94);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.map-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(6, 47, 85, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.map-modal-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.map-modal-close {
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.map-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  display: block;
}

.map-modal-close:hover {
  background: #deb16e;
  color: #062f55;
  transform: scale(1.08);
}

.map-modal-body {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-modal-canvas {
  transform-origin: center center;
  transition: transform 0.08s ease-out;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 94vw;
  max-height: 84vh;
}

.map-modal-canvas img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Floating Zoom Toolbar in Modal */
.map-modal-controls {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.map-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #062f55;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-control-btn:hover {
  background: #deb16e;
  transform: scale(1.1);
}

.map-modal-footer-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 47, 85, 0.88);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  pointer-events: none;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .map-modal-footer-hint {
    font-size: 0.78rem;
    padding: 6px 14px;
    bottom: 16px;
  }
}
