/* ==========================================================================
   JESVA GROUP — corporate site
   Plain CSS. No build step, no framework.
   Palette and layout language follow the BUA Group reference design.
   ========================================================================== */

:root {
  --crimson: #942432;
  --crimson-dark: #7b1c29;
  --crimson-deep: #661720;
  --gold: #e4b429;
  --gold-dark: #c99c1c;
  --ink: #404040;
  --ink-soft: #6f6f6f;
  --mist: #eaeaea;
  --haze: #f7f7f7;
  --line: rgba(64, 64, 64, 0.14);
  --white: #ffffff;

  --shell: 1200px;
  --header-h: 72px;

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial,
    sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

::selection {
  background: var(--crimson);
  color: #fff;
}

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

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .shell {
    padding-inline: 32px;
  }
}

.section {
  padding-block: 72px;
}

@media (min-width: 768px) {
  .section {
    padding-block: 96px;
  }
}

.section--haze {
  background: var(--haze);
}
.section--mist {
  background: var(--mist);
}
.section--crimson {
  background: var(--crimson);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--crimson);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
}

.eyebrow--light {
  color: var(--gold);
}

.h-display {
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h-section {
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink);
}

.h-sub {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.section--crimson .h-section,
.section--crimson .lead,
.section--crimson .h-display {
  color: #fff;
}

/* Centred heading with the gold rule beneath, as on the reference site. */
.band-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.band-head .h-section {
  color: #fff;
}

.rule-gold::after {
  content: "";
  display: block;
  width: 190px;
  max-width: 60%;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold);
}

.head-center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.head-center .lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.btn--crimson {
  background: var(--crimson);
  color: #fff;
}
.btn--crimson:hover {
  background: var(--crimson-deep);
}

.btn--gold {
  background: var(--gold);
  color: var(--crimson-deep);
  text-transform: uppercase;
}
.btn--gold:hover {
  background: var(--gold-dark);
}

.btn--ghost {
  border-color: #fff;
  color: #fff;
}
.btn--ghost:hover {
  background: #fff;
  color: var(--crimson);
}

.btn--outline {
  border-color: var(--crimson);
  color: var(--crimson);
}
.btn--outline:hover {
  background: var(--crimson);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Wordmark — "JESVA" over a justified "GROUP" subline.

   Two colourways, switched with a modifier class:
     .brand          JESVA black,  GROUP yellow  — for light backgrounds
     .brand--light   JESVA white,  GROUP yellow  — for crimson / dark
     .brand--mono    JESVA black,  GROUP black   — single-colour lockup
   -------------------------------------------------------------------------- */

.brand {
  --wm-word: #111111;
  --wm-sub: var(--gold);

  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  flex: none;
  line-height: 1;
}

.brand__word {
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--wm-word);
  white-space: nowrap;
}

/* Letters are spread with space-between so the subline sits flush to the
   full width of JESVA above it. */
.brand__sub {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  padding-left: 0.06em;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--wm-sub);
}

.brand--light {
  --wm-word: #ffffff;
}

.brand--mono {
  --wm-word: #111111;
  --wm-sub: #111111;
}

.brand--sm .brand__word {
  font-size: 1.3rem;
}

.brand--sm .brand__sub {
  margin-top: 4px;
  font-size: 0.47rem;
}

/* --------------------------------------------------------------------------
   Top utility bar
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--crimson);
  color: #fff;
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 36px;
  flex-wrap: wrap;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.95;
}

.topbar__item:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar__item svg {
  width: 13px;
  height: 13px;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.topbar__social a {
  opacity: 0.9;
  transition: opacity 0.2s;
}
.topbar__social a:hover {
  opacity: 1;
}

.topbar__social svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .topbar__social {
    margin-left: 0;
  }
  .topbar__inner {
    padding-block: 7px;
  }
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}

.header.is-stuck {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

.nav__link:hover,
.nav__item:hover > .nav__link,
.nav__link.is-active {
  color: var(--crimson);
}

.nav__link .caret {
  width: 9px;
  height: 9px;
  transition: transform 0.2s;
}

.nav__item:hover .caret {
  transform: rotate(180deg);
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 232px;
  background: #fff;
  border-top: 3px solid var(--crimson);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--ink);
  transition: background 0.18s, color 0.18s;
}

.nav__menu a:hover {
  background: var(--haze);
  color: var(--crimson);
}

.header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  transition: color 0.2s;
}
.header__search:hover {
  color: var(--crimson);
}
.header__search svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--crimson);
  color: var(--crimson);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle .icon-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Mobile navigation */
@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header__search {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .nav.is-open {
    max-height: min(78vh, 620px);
    overflow-y: auto;
  }

  .nav__link {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    justify-content: space-between;
  }

  .nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    background: var(--haze);
    padding: 0;
    display: none;
  }

  .nav__item.is-open .nav__menu {
    display: block;
  }

  .nav__item.is-open .caret {
    transform: rotate(180deg);
  }

  .nav__menu a {
    padding: 13px 34px;
    border-bottom: 1px solid var(--line);
  }
}

/* --------------------------------------------------------------------------
   Hero slider (home)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(440px, 74vh, 660px);
  overflow: hidden;
  background: var(--crimson-deep);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
}

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

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(102, 23, 32, 0.86) 0%,
    rgba(148, 36, 50, 0.58) 45%,
    rgba(64, 20, 26, 0.5) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(440px, 74vh, 660px);
  padding-block: 80px;
}

.hero__content {
  max-width: 760px;
}

.hero__title {
  font-size: clamp(1.9rem, 1.1rem + 3.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.14;
  color: #fff;
  margin-bottom: 22px;
}

.hero__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(148, 36, 50, 0.85);
  color: #fff;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.hero__arrow:hover {
  background: var(--crimson-deep);
}

.hero__arrow svg {
  width: 14px;
  height: 14px;
}

.hero__arrow--prev {
  left: 14px;
}
.hero__arrow--next {
  right: 14px;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.hero__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s, transform 0.2s;
}

.hero__dots button.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

/* --------------------------------------------------------------------------
   Inner-page banner
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  background: var(--crimson-deep);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(102, 23, 32, 0.9) 0%,
    rgba(148, 36, 50, 0.72) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(56px, 8vw, 92px);
}

.page-hero__title {
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.7rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
}

.crumbs a:hover {
  color: var(--gold);
}

.crumbs span[aria-current] {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Who we are — split with framed image
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .split--reverse .split__media {
    order: -1;
  }
}

.split__body .lead {
  margin-top: 20px;
}

.frame {
  position: relative;
  padding: 0 16px 16px 0;
}

.frame__dots {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 46%;
  height: 78%;
  background-image: radial-gradient(
    circle,
    rgba(148, 36, 50, 0.18) 1.6px,
    transparent 1.6px
  );
  background-size: 14px 14px;
  z-index: 0;
}

.frame__inner {
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
  padding: 7px;
  background: #fff;
}

.frame__inner img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Stat counters */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}

.stat__value {
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}

.section--crimson .stat__value,
.section--crimson .stat__label {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Business mosaic
   -------------------------------------------------------------------------- */

.mosaic {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 4px;
}

@media (min-width: 760px) {
  .mosaic {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mosaic__feature {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 200px;
  padding: 26px;
  overflow: hidden;
  grid-column: span 2;
}

@media (min-width: 760px) {
  .mosaic__feature {
    grid-row: span 2;
    grid-column: span 2;
  }
}

.mosaic__feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(148, 36, 50, 0.72);
}

.mosaic__feature-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}

.mosaic__feature-label::before {
  content: "";
  width: 3px;
  height: 30px;
  background: #fff;
  flex: none;
}

.mosaic__tile {
  position: relative;
  min-height: 128px;
  overflow: hidden;
}

.mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mosaic__tile:hover img {
  transform: scale(1.07);
}

.mosaic__tile--label {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
  font-size: 0.98rem;
  transition: filter 0.25s;
}

.mosaic__tile--label:hover {
  filter: brightness(1.08);
}

/* Solid tile colours, echoing the reference site's palette blocks. */
.tone-sand {
  background: #cbab72;
}
.tone-gold {
  background: #d9a72c;
}
.tone-stone {
  background: #8d857b;
}
.tone-slate {
  background: #3f4557;
}
.tone-crimson {
  background: var(--crimson-dark);
}
.tone-coral {
  background: #e2545c;
}
.tone-plum {
  background: #a63a63;
}
.tone-steel {
  background: #4d7ea8;
}
.tone-moss {
  background: #5d7f5a;
}
.tone-clay {
  background: #b5714a;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

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

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

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

@media (min-width: 640px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-value {
  background: var(--crimson);
  color: #fff;
  padding: 34px 26px 40px;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.card-value:hover {
  transform: translateY(-6px);
  background: var(--crimson-dark);
}

.card-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  margin-bottom: 22px;
}

.card-value__icon svg {
  width: 20px;
  height: 20px;
}

.card-value h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-value p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* Plain white card */
.card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}

.card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card__meta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
}

.card__title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.card:hover .card__title {
  color: var(--crimson);
}

.card__text {
  font-size: 0.89rem;
  color: var(--ink-soft);
  line-height: 1.62;
}

.card__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.card__link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s;
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* Company list rows */
.rows {
  border-top: 1px solid var(--line);
}

.row-item {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}

@media (min-width: 760px) {
  .row-item {
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 28px;
  }
}

.row-item__name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.row-item__tag {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-top: 2px;
}

.row-item__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Leadership */
.person__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--mist);
}

.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.45s, transform 0.7s var(--ease);
}

.person:hover .person__photo img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.person__name {
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 16px;
}

.person__role {
  font-size: 0.83rem;
  color: var(--crimson);
  font-weight: 600;
}

.person__bio {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline__item {
  position: relative;
  padding-bottom: 34px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--crimson);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--crimson);
}

.timeline__year {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--crimson);
}

.timeline__text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 4px;
  max-width: 62ch;
}

/* Accordion (FAQ / careers) */
.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.accordion__trigger:hover {
  color: var(--crimson);
}

.accordion__trigger svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--crimson);
  transition: transform 0.25s;
}

.accordion__trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.accordion__panel > div {
  overflow: hidden;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__panel p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-bottom: 20px;
  max-width: 74ch;
}

/* --------------------------------------------------------------------------
   Full-bleed CTA
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--crimson-deep);
}

.cta__bg {
  position: absolute;
  inset: 0;
}

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

.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(148, 36, 50, 0.82);
}

.cta__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(64px, 9vw, 108px);
  max-width: 640px;
}

.cta__title {
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta__text {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.92rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--crimson);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 0.84rem;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(148, 36, 50, 0.08);
  border-left: 3px solid var(--crimson);
  display: none;
}

.form-note.is-visible {
  display: block;
}

/* Contact detail list */
.contact-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  background: var(--crimson);
  color: #fff;
}

.contact-item__icon svg {
  width: 17px;
  height: 17px;
}

.contact-item h3 {
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-item p,
.contact-item a {
  font-size: 0.89rem;
  color: var(--ink-soft);
}

.contact-item a:hover {
  color: var(--crimson);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--crimson);
  color: #fff;
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr;
    gap: 32px;
  }
}

.footer__about p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 18px;
  max-width: 34ch;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--crimson-deep);
}

.footer__social svg {
  width: 15px;
  height: 15px;
}

.footer h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 9px;
}

.footer__links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__newsletter p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
}

.footer__newsletter input {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.88rem;
}

.footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer__newsletter input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer__newsletter .btn {
  width: 100%;
  justify-content: center;
}

.footer__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  display: none;
}

.footer__note.is-visible {
  display: block;
}

.footer__bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-block: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Back to top */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--crimson);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--crimson-deep);
}

.to-top svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Utilities */
.mt-0 {
  margin-top: 0;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-48 {
  margin-bottom: 48px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
