/* ===== BRAND FONTS (self-hosted, work offline) ===== */
@font-face{
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans.woff2") format("woff2");
  font-weight: 100 1000;   /* variable font: all weights in one file */
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Work Sans";
  src: url("./assets/fonts/work-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root{
  --max: 1100px;
  --pad: 28px;

  /* Brand colours (from the brand guide) */
  --black: #111111;       /* primary */
  --carbon: #222222;      /* secondary */
  --gunmetal: #434343;    /* secondary */
  --alabaster: #E7EAE9;   /* secondary */
  --white: #ffffff;       /* primary */
  --red: #C9202B;         /* Flag Red — accent, used sparingly */

  /* Brand fonts */
  --fontHead: "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fontBody: "Work Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --text: rgba(0,0,0,.86);
  --muted: rgba(0,0,0,.55);

  --line: rgba(0,0,0,.15);
  --lineInv: rgba(255,255,255,.18);

  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--fontBody);
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: #fff;
}

/* Headings & display text use DM Sans (per brand guide) */
.hero__title,
.sectionTitle,
.card__label,
.tile__title,
.note__title,
.faqQ,
.ctaBtn,
.menuMain > a,
.menuMain .menuTopLink{
  font-family: var(--fontHead);
}

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

/* HERO */
.hero{
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.40), rgba(0,0,0,.10));
  z-index: 1;
}

/* NAV (logo centered, menu right) */
.nav{
  position: relative;
  z-index: 5;
  padding: 20px var(--pad);
  color: var(--white);

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Centered logo link */
.brand{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo{
  height: 52px;
  width: auto;
  display: block;

  transition: opacity .2s ease, transform .2s ease;
}

.brand:hover .brand__logo{
  opacity: .85;
  transform: scale(0.98);
}

@media (max-width: 600px){
  .brand__logo{ height: 28px; }
}

.menuBtn{
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
}
.menuBtn:hover{ background: rgba(255,255,255,.12); }

/* SLIDE-IN MENU (Drawer) */
.menuOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
  z-index: 50;
}

.menuDrawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(460px, 90vw);
  background: #fff;

  transform: translateX(100%);
  transition: transform .28s var(--ease);
  z-index: 60;

  box-shadow: -24px 0 60px rgba(0,0,0,.18);
}

.menuDrawer__inner{
  position: relative;
  height: 100%;
  padding: 28px 26px 90px;
  padding-top: 64px;
}

.menuClose{
  position: absolute;
  top: 18px;
  right: 18px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  cursor: pointer;

  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;

  z-index: 5;
}
.menuClose:hover{ background: rgba(0,0,0,.04); }

.menuGroupLabel{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 14px;
}

.menuGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 6px;
  align-content: start;
}

.menuCol a{
  display: block;
  text-decoration: none;
}

/* Main links */
.menuMain > a,
.menuMain .menuTopLink{
  color: rgba(0,0,0,.9);
  font-weight: 650;
  font-size: 28px;
  letter-spacing: -0.02em;
  padding: 10px 0;
}

.menuMain > a:hover,
.menuMain .menuTopLink:hover{
  opacity: .7;
}

/* Footer pinned bottom */
.menuFooter{
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;

  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);

  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.menuFooter a{
  text-decoration: none;
  color: rgba(0,0,0,.55);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menuFooter a:hover{
  color: rgba(0,0,0,.9);
}

/* Submenu */
.menuItem{
  position: relative;
}

.menuItem.hasSub{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.subToggle{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.subToggle:hover{ background: rgba(0,0,0,.04); }

.chev{
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .28s var(--ease);
}

/* Calm fade + slight slide */
.subMenu{
  grid-column: 1 / -1;

  display: block;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;

  transition:
    max-height .30s var(--ease),
    opacity .22s var(--ease) .06s,
    transform .22s var(--ease) .06s;

  will-change: opacity, transform;
}

.subMenu a{
  display: block;
  text-decoration: none;

  color: rgba(0,0,0,.52);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;

  padding: 7px 0 7px 18px;
}

.subMenu a:hover{
  color: rgba(0,0,0,.88);
}

/* Desktop hover behavior */
@media (hover: hover) and (pointer: fine){
  .menuItem.hasSub:hover .subMenu{
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
  }
  .subToggle{ display: none; }
}

/* Open state for mobile/touch */
.menuItem.open .subMenu{
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.menuItem.open .chev{
  transform: rotate(180deg);
}

/* OPEN STATE */
body.menu-open{
  overflow: hidden;
}

body.menu-open .menuOverlay{
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menuDrawer{
  transform: translateX(0);
}

/* HERO CONTENT (aligned like your other pages) */
.hero__content{
  position: relative;
  z-index: 5;

  padding: 80px var(--pad) 60px var(--pad);

  max-width: var(--max);
  margin: 0 auto;
}

.hero__title{
  margin: 0;
  color: var(--white);
  font-weight: 780;
  line-height: .95;
  letter-spacing: -0.03em;
  font-size: clamp(44px, 6vw, 86px);
  max-width: 12ch;
}

.hero__title--page{
  max-width: 16ch;
}

.hero__subtitle{
  margin: 18px 0 0 0;
  color: rgba(255,255,255,.82);
  max-width: 56ch;
  line-height: 1.6;
  font-size: 16px;
}

.hero__actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section{ padding: 56px 0; }
.section--tight{ padding-top: 34px; }

.kicker{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
}

.sectionTitle{
  margin: 12px 0 18px 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

/* Small red accent bar above each section heading (brand motif) */
.sectionTitle::before{
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
  margin-bottom: 14px;
}

.divider{
  height: 1px;
  background: var(--line);
  width: 100%;
  margin-top: 26px;
}

/* ===== EXPLORE CARDS: HORIZONTAL CAROUSEL ===== */
.cards{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 360px;     /* fixed card width */
  gap: 18px;
  margin-top: 18px;

  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;
}

/* Hide scrollbar (optional) */
.cards{
  scrollbar-width: none;
}
.cards::-webkit-scrollbar{
  display: none;
}

/* Card visuals */
.card{
  height: 260px;
  border-radius: 6px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d9d9d9;

  filter: grayscale(100%);
  transition: transform .35s var(--ease), filter .35s var(--ease);

  scroll-snap-align: start;
}

.card:nth-child(1){ background-image: url("./assets/card1.jpg"); }
.card:nth-child(2){ background-image: url("./assets/card2.jpg"); }
.card:nth-child(3){ background-image: url("./assets/card3.jpg"); }
.card:nth-child(4){ background-image: url("./assets/about-hero.jpg"); }
.card:nth-child(5){ background-image: url("./assets/feature.jpg"); }

.card:hover{
  transform: translateY(-6px);
  filter: grayscale(0%);
}

/* If card is a link, add overlay + label */
.card--link{
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
}

.card--link::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.10));
  transition: opacity .3s var(--ease);
  border-radius: 6px;
}

.card--link:hover::after{
  opacity: .7;
}

.card__label{
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;

  font-size: 38px;
  font-weight: 780;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

/* Responsive: cards get wider on small screens */
@media (max-width: 860px){
  .cards{ grid-auto-columns: 82vw; }
}

/* VIDEO */
.videoBlock{
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.videoPoster{
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;

  background:
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.55)),
    url("./assets/thumb.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
}

.videoPoster__label{
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.playRing{
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
}

.playIcon{
  width: 0;
  height: 0;
  border-left: 18px solid rgba(255,255,255,.9);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.videoEl{
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
  background: #000;
}

.videoBlock[data-state="playing"] .videoEl{ display: block; }
.videoBlock[data-state="playing"] .videoPoster{ display: none; }

/* Tighten gap between Video + About */
#video{ padding-bottom: 10px; }
#aboutus{ padding-top: 10px; }

/* SPLIT SECTION */
.split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.bodyText{
  margin: 0;
  color: rgba(0,0,0,.62);
  max-width: 56ch;
  line-height: 1.6;
}

.split__media{
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 1 / 1;

  background-image: url("./assets/feature.jpg");
  background-size: cover;
  background-position: center;

  transition: transform 0.4s var(--ease);
}

.split__media:hover{
  transform: scale(1.02);
}

/* CTA button */
.ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 24px;
  padding: 14px 28px;

  border: 2px solid #111;
  border-radius: 10px;

  background: transparent;
  color: #111;

  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;

  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}

.ctaBtn:hover{
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* Hero button variants */
.ctaBtn--ghostOnHero{
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: transparent;
}
.ctaBtn--ghostOnHero:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-1px);
}

.ctaBtn--solidOnHero{
  border-color: rgba(255,255,255,0);
  background: #fff;
  color: #111;
}
.ctaBtn--solidOnHero:hover{
  background: rgba(255,255,255,.9);
  color: #111;
  transform: translateY(-1px);
}

/* FOOTER */
.footer{
  background: var(--black);
  color: var(--white);
  padding: 42px 0;
  margin-top: 40px;
  border-top: 3px solid var(--red);
}

.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.footer__brand{
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 18px;
}

.footer__link{
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  padding: 6px 0;
  opacity: .92;
}
.footer__link:hover{ opacity: 1; text-decoration: underline; }

.footer__meta{
  font-size: 11px;
  opacity: .55;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: right;
  margin-bottom: 10px;
}

.footer__legal{
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.footer__legal a{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer__legal a:hover{ color: var(--white); }

.anchorPad{ height: 1px; }

/* FADE-IN (polish) */
.fade-in{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE (layout) */
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
  .footer__inner{ flex-direction: column; align-items: flex-start; }
  .footer__meta{ text-align: left; }
  .footer__legal{ justify-content: flex-start; }
}

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

/* ===== MULTI-PAGE: HERO + FEATURE IMAGE OVERRIDES ===== */
/* Put these classes on <body> like: <body class="page--cars"> */

.page--cars .hero__bg{ background-image: url("./assets/cars-hero.jpg"); }
.page--buses .hero__bg{ background-image: url("./assets/buses-hero.jpg"); }
.page--trucks .hero__bg{ background-image: url("./assets/trucks-hero.jpg"); }
.page--about .hero__bg{ background-image: url("./assets/about-hero.jpg"); }

.split__media--cars{ background-image: url("./assets/cars-feature.jpg"); }
.split__media--buses{ background-image: url("./assets/buses-feature.jpg"); }
.split__media--trucks{ background-image: url("./assets/trucks-feature.jpg"); }
.split__media--about{ background-image: url("./assets/feature.jpg"); }

/* Active page highlight (menu) */
.subMenu a.is-active,
.subMenu a[aria-current="page"]{
  color: rgba(0,0,0,.92);
  font-weight: 750;
  position: relative;
}

.subMenu a.is-active::before,
.subMenu a[aria-current="page"]::before{
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.subMenu a.is-active:hover,
.subMenu a[aria-current="page"]:hover{
  color: rgba(0,0,0,1);
}
/* =========================================================
   CATEGORY TILES  (Cars / Buses / Trucks "Popular categories")
   These styles were missing, so the tiles showed as plain text.
   ========================================================= */
.tiles{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.tile{
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.tile:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.tile__img{
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d9d9d9;

  filter: grayscale(100%);
  transition: filter .35s var(--ease);
}

.tile:hover .tile__img{
  filter: grayscale(0%);
}

.tile__body{
  padding: 16px 18px 18px;
}

.tile__title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,.9);
}

.tile__meta{
  margin-top: 4px;
  font-size: 14px;
  color: rgba(0,0,0,.55);
}

/* =========================================================
   NOTE BOXES  (page "Notes" sections + About mission/values)
   Also missing, so these collapsed into plain stacked text.
   ========================================================= */
.notes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.note{
  padding: 22px 22px 24px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.note:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.note__title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,.9);
  margin-bottom: 8px;
}

.note__text{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,.6);
}

.note__text code{
  background: rgba(0,0,0,.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* Stack tiles on small screens */
@media (max-width: 860px){
  .tiles{ grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ ACCORDION  (product pages)
   Uses the browser's built-in <details>/<summary> elements,
   so it expands/collapses with NO JavaScript.
   To edit: just change the question and answer text in the HTML.
   ========================================================= */
.faq{
  margin-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.faqItem{
  border-bottom: 1px solid var(--line);
}

/* The clickable question row */
.faqQ{
  display: block;            /* hides the default little triangle */
  list-style: none;
  cursor: pointer;
  position: relative;

  padding: 20px 48px 20px 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,.9);
}
.faqQ::-webkit-details-marker{ display: none; } /* hides triangle in Safari */

.faqQ:hover{ color: #000; }

/* The + / – indicator on the right */
.faqQ::after{
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0,0,0,.45);
}
.faqItem[open] .faqQ::after{ content: "\2013"; } /* en-dash when open */

/* The answer */
.faqA{
  padding: 0 48px 22px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,.6);
  max-width: 70ch;
}

/* =========================================================
   CAREERS + CONTACT PAGES
   ========================================================= */
.page--careers .hero__bg{ background-image: url("./assets/feature.jpg"); }
.page--contact  .hero__bg{ background-image: url("./assets/about-hero.jpg"); }

/* ----- Open positions list (careers) ----- */
.roleList{
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.role{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.role__title{
  font-family: var(--fontHead);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,.9);
}
.role__meta{
  margin-top: 4px;
  font-size: 14px;
  color: rgba(0,0,0,.55);
}
.role__cta{
  flex: none;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-family: var(--fontHead);
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  color: var(--black);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.role__cta:hover{ background: var(--black); color: #fff; }

@media (max-width: 600px){
  .role{ flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ----- Contact layout ----- */
.contactGrid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  margin-top: 18px;
  align-items: start;
}
@media (max-width: 860px){
  .contactGrid{ grid-template-columns: 1fr; gap: 28px; }
}

.contactDetail{ margin-bottom: 22px; }
.contactDetail__label{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contactDetail__value{
  font-size: 17px;
  color: rgba(0,0,0,.85);
  line-height: 1.5;
}
.contactDetail__value a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.contactDetail__value a:hover{ border-color: var(--red); color: var(--red); }

/* ----- Contact form ----- */
.contactForm{ display: grid; gap: 16px; }
.field{ display: grid; gap: 6px; }
.field label{
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,.7);
}
.field input,
.field textarea{
  font-family: var(--fontBody);
  font-size: 15px;
  color: rgba(0,0,0,.9);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  width: 100%;
}
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--red);
}
.field textarea{ min-height: 140px; resize: vertical; }

.contactForm button.ctaBtn{
  appearance: none;
  background: transparent;
  cursor: pointer;
  justify-self: start;
  margin-top: 4px;
}
.formNote{ font-size: 13px; color: var(--muted); }

/* =========================================================
   ABOUT PAGE — section variety
   ========================================================= */

/* ----- Mission & Vision: dark contrast band ----- */
.section--dark{
  background: var(--carbon);   /* deep charcoal */
  color: #fff;
}
.section--dark .kicker{ color: rgba(255,255,255,.55); }
.section--dark .sectionTitle{ color: #fff; }
.section--dark .divider{ background: rgba(255,255,255,.15); }

.mvGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}
.mvItem{
  padding: 4px 30px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.mvItem:first-child{ border-left: 0; padding-left: 0; }
.mvItem__title{
  font-family: var(--fontHead);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}
.mvItem__text{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}
@media (max-width: 760px){
  .mvGrid{ grid-template-columns: 1fr; }
  .mvItem{
    border-left: 0;
    padding: 0 0 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-bottom: 22px;
  }
  .mvItem:last-child{ border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
}

/* ----- Our Values: numbered editorial cards ----- */
.valueGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.valueItem{
  border-top: 2px solid var(--black);
  padding-top: 14px;
}
.valueItem__num{
  font-family: var(--fontHead);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  color: var(--red);
  margin-bottom: 10px;
}
.valueItem__title{
  font-family: var(--fontHead);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,.9);
  margin-bottom: 6px;
}
.valueItem__text{
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,.6);
}

/* =========================================================
   LANGUAGE PICKER (SV / EN) — sits in the top nav
   ========================================================= */
.langPick{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 6px;
  font-family: var(--fontHead);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.langPick a{
  color: rgba(255,255,255,.62);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.langPick a:hover{
  color: #fff;
  background: rgba(255,255,255,.12);
}

/* The language you're currently reading */
.langPick a[aria-current="true"]{
  color: #fff;
  position: relative;
}
.langPick a[aria-current="true"]::after{
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

.langPick__sep{
  color: rgba(255,255,255,.30);
  font-weight: 400;
}

@media (max-width: 420px){
  .langPick{ font-size: 12px; margin-right: 0; }
  .langPick a{ padding: 8px 7px; }
}
