/* Nexa — Who We Are (dedicated page). Matches homepage: Playfair titles, Poppins UI, dark luxury + gold. */

:root {
  --nexa-who-gold: #d4af37;
  --nexa-who-gold-mid: #c9a227;
  --nexa-who-gold-deep: #a67c00;
  --nexa-who-cream: #f0e6c8;
  --nexa-who-bg-deep: #0c0806;
  --nexa-who-bg-mid: #1a120e;
  --nexa-who-bg-panel: #1f1410;
  --nexa-who-edge: rgba(212, 175, 55, 0.14);
  --nexa-who-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nexa-who-section-y: clamp(4.5rem, 12vw, 9rem);
  --nexa-who-gap: clamp(1.25rem, 4vw, 3rem);
}

.nexa-who {
  --font-primary: "Poppins", system-ui, sans-serif;
  background: var(--nexa-who-bg-deep);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

.nexa-who .title {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
}

.nexa-who__container {
  width: 100%;
  max-width: min(1180px, 92vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

/* —— Hero —— */
.nexa-who-hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 18vw, 10rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.nexa-who-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 48, 36, 0.55) 0%, transparent 55%),
    linear-gradient(165deg, #2a1810 0%, #15100c 45%, #0a0705 100%);
  z-index: 0;
}

.nexa-who-hero__parallax {
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.nexa-who-hero__float {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.nexa-who-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.nexa-who-hero__orb.--a {
  width: min(45vw, 320px);
  height: min(45vw, 320px);
  background: rgba(166, 124, 0, 0.4);
  top: 12%;
  right: 8%;
}

.nexa-who-hero__orb.--b {
  width: min(35vw, 240px);
  height: min(35vw, 240px);
  background: rgba(80, 50, 40, 0.5);
  bottom: 18%;
  left: 5%;
}

.nexa-who-hero__inner {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 52rem;
}

.nexa-who-hero__eyebrow {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nexa-who-gold);
  margin-bottom: 1.25rem;
}

.nexa-who-hero__headline {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

.nexa-who-hero__headline .nexa-who-hero__line {
  display: block;
  overflow: hidden;
}

.nexa-who-hero__lede {
  font-size: clamp(0.95rem, 2.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38em;
  margin: 0 auto 1rem;
}

.nexa-who-hero__tagline {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  color: var(--nexa-who-gold-mid);
  letter-spacing: 0.06em;
  margin: 0 0 2rem;
}

.nexa-who-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nexa-who-cream);
  border: 1px solid var(--nexa-who-gold);
  border-radius: 999px;
  background: rgba(15, 10, 8, 0.65);
  backdrop-filter: blur(10px);
  transition: background 0.35s var(--nexa-who-ease), box-shadow 0.35s var(--nexa-who-ease), transform 0.35s var(--nexa-who-ease);
}

.nexa-who-hero__cta:hover,
.nexa-who-hero__cta:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  outline: none;
}

/* —— Essence —— */
.nexa-who-essence {
  padding: var(--nexa-who-section-y) 0;
  background: linear-gradient(180deg, var(--nexa-who-bg-deep) 0%, var(--nexa-who-bg-mid) 100%);
}

.nexa-who-essence__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nexa-who-gap);
  align-items: start;
}

@media (min-width: 900px) {
  .nexa-who-essence__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.nexa-who-essence__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nexa-who-gold);
  margin-bottom: 0.75rem;
}

.nexa-who-essence__headline {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
}

  .nexa-who-essence__body {
    font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    border-left: 2px solid var(--nexa-who-edge);
    padding-left: clamp(1rem, 3vw, 1.5rem);
  }

.nexa-who-essence__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 520px) {
  .nexa-who-essence__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.nexa-who-card {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--nexa-who-edge);
  background: rgba(31, 20, 16, 0.75);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.nexa-who-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nexa-who-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.85rem;
  color: var(--nexa-who-gold);
}

.nexa-who-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0 0 0.5rem;
  color: #fff;
}

.nexa-who-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

/* —— Journey —— */
.nexa-who-journey {
  padding: var(--nexa-who-section-y) 0;
  background: var(--nexa-who-bg-deep);
}

.nexa-who-journey__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.nexa-who-journey__head .title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.nexa-who-journey__sub {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.nexa-who-journey__sticky {
  position: relative;
}

@media (min-width: 1025px) {
  .nexa-who-journey__sticky {
    height: 100vh;
    overflow: hidden;
  }
}

.nexa-who-journey__track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1025px) {
  .nexa-who-journey__track {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    width: max-content;
    padding: 2vh 4vw 8vh;
    will-change: transform;
  }
}

.nexa-who-milestone {
  flex: 0 0 auto;
  width: 100%;
  max-width: 22rem;
  padding: 1.5rem 1.35rem;
  border-radius: 12px;
  border: 1px solid var(--nexa-who-edge);
  background: rgba(26, 18, 14, 0.9);
}

@media (min-width: 1025px) {
  .nexa-who-milestone {
    width: min(22rem, 28vw);
  }
}

.nexa-who-milestone__year {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--nexa-who-gold);
  margin-bottom: 0.35rem;
}

.nexa-who-milestone__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.nexa-who-milestone__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

/* —— Create —— */
.nexa-who-create {
  padding: var(--nexa-who-section-y) 0;
  background: linear-gradient(180deg, var(--nexa-who-bg-mid) 0%, var(--nexa-who-bg-deep) 100%);
}

.nexa-who-create__intro {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.nexa-who-create__intro .title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.65rem;
}

.nexa-who-create__intro p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
}

.nexa-who-create__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .nexa-who-create__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nexa-who-create__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nexa-who-visual-tile.--hero-span {
    grid-column: span 2;
    min-height: clamp(240px, 32vw, 360px);
  }
}

.nexa-who-visual-tile {
  position: relative;
  display: block;
  min-height: clamp(200px, 28vw, 280px);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--nexa-who-edge);
}

.nexa-who-visual-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s var(--nexa-who-ease);
}

.nexa-who-visual-tile:hover .nexa-who-visual-tile__img,
.nexa-who-visual-tile:focus-visible .nexa-who-visual-tile__img {
  transform: scale(1.08);
}

.nexa-who-visual-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 5, 4, 0.92) 100%);
  pointer-events: none;
}

.nexa-who-visual-tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.15rem;
  z-index: 2;
}

.nexa-who-visual-tile__body .title {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 0 0 0.35rem;
}

.nexa-who-visual-tile__line {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--nexa-who-ease), transform 0.45s var(--nexa-who-ease);
}

.nexa-who-visual-tile:hover .nexa-who-visual-tile__line,
.nexa-who-visual-tile:focus-visible .nexa-who-visual-tile__line {
  opacity: 1;
  transform: translateY(0);
}

/* —— Process —— */
.nexa-who-process {
  padding: var(--nexa-who-section-y) 0;
  background: var(--nexa-who-bg-deep);
}

.nexa-who-process__intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.nexa-who-process__intro .title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.nexa-who-process__intro p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
}

.nexa-who-process__line-wrap {
  display: none;
}

@media (min-width: 768px) {
  .nexa-who-process__line-wrap {
    display: block;
    max-width: 100%;
    overflow: visible;
    margin-bottom: 1.5rem;
  }

  .nexa-who-process__svg {
    width: 100%;
    height: 24px;
  }

  .nexa-who-process__path {
    fill: none;
    stroke: rgba(212, 175, 55, 0.35);
    stroke-width: 2;
    stroke-linecap: round;
  }

  .nexa-who-process__path-fill {
    fill: none;
    stroke: var(--nexa-who-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
}

.nexa-who-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nexa-who-process__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .nexa-who-process__steps {
    grid-template-columns: repeat(6, 1fr);
  }
}

.nexa-who-step {
  padding: 1.1rem 0.9rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.35s ease, transform 0.35s var(--nexa-who-ease);
}

.nexa-who-step.is-active {
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.02);
}

.nexa-who-step__n {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--nexa-who-gold-mid);
  margin-bottom: 0.35rem;
}

.nexa-who-step__label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
}

/* —— Quality —— */
.nexa-who-quality {
  padding: var(--nexa-who-section-y) 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(50, 35, 28, 0.4) 0%, var(--nexa-who-bg-deep) 55%);
}

.nexa-who-quality__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.nexa-who-quality__head .title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.nexa-who-quality__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .nexa-who-quality__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nexa-who-quality__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.nexa-who-quality__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--nexa-who-edge);
  background: rgba(20, 14, 11, 0.85);
}

.nexa-who-quality__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.85rem;
  color: var(--nexa-who-gold);
}

.nexa-who-quality__item h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: #fff;
}

.nexa-who-quality__item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.nexa-who-quality__tagline {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
  color: var(--nexa-who-cream);
}

/* —— Why —— */
.nexa-who-why {
  padding: var(--nexa-who-section-y) 0;
  background: var(--nexa-who-bg-mid);
}

.nexa-who-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nexa-who-gap);
  align-items: start;
}

@media (min-width: 900px) {
  .nexa-who-why__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.nexa-who-why__col {
  min-width: 0;
}

.nexa-who-why__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
}

.nexa-who-why__body {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.nexa-who-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-who-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
}

.nexa-who-why__list li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--nexa-who-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* Homepage “Other industries” block embedded in Who we are */
.nexa-who .component--other-industries {
  margin: clamp(2rem, 6vw, 4rem) 0;
}

/* —— Vision —— */
.nexa-who-vision {
  padding: var(--nexa-who-section-y) 0;
  background: linear-gradient(180deg, var(--nexa-who-bg-mid) 0%, var(--nexa-who-bg-deep) 100%);
}

.nexa-who-vision__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--nexa-who-edge);
  border-bottom: 1px solid var(--nexa-who-edge);
}

.nexa-who-vision__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nexa-who-gold);
  margin-bottom: 0.75rem;
}

.nexa-who-vision__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.nexa-who-vision__statement {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

/* —— CTA —— */
.nexa-who-cta {
  position: relative;
  padding: var(--nexa-who-section-y) 0 clamp(5rem, 14vw, 8rem);
  overflow: hidden;
}

.nexa-who-cta__texture {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.nexa-who-cta__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #1a100c 0%, #0a0605 100%);
  z-index: 0;
}

.nexa-who-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.nexa-who-cta__inner .title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

.nexa-who-cta__sub {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.nexa-who-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.nexa-who-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.35s var(--nexa-who-ease), box-shadow 0.35s ease, background 0.35s ease;
}

.nexa-who-cta__btn.--primary {
  color: #1a120e;
  background: linear-gradient(110deg, var(--nexa-who-cream) 0%, var(--nexa-who-gold) 45%, var(--nexa-who-gold-mid) 100%);
  border: none;
}

.nexa-who-cta__btn.--ghost {
  color: var(--nexa-who-cream);
  border: 1px solid var(--nexa-who-gold);
  background: transparent;
}

.nexa-who-cta__btn:hover,
.nexa-who-cta__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  outline: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
