/* ==========================================================================
   Novaterra Sourcing — static site stylesheet
   Palette and typography mirror the reference layout:
     --color-1 charcoal  --color-2 off-white  --color-5 accent blue
   ========================================================================== */

:root {
  --color-1: #515151;
  --color-2: #f9f9f9;
  --color-5: #1f78d1;
  --light-text: #ffffff;
  --dark-text: #333333;
  --muted-text: #6b6b6b;
  --rule: #e2e2e2;
  --header-h: 86px;

  --font-head: 'Julius Sans One', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .12);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, .18);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, .22);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-text);
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  color: var(--color-5);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #145da3;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--dark-text);
  margin: 0 0 .6em;
  line-height: 1.25;
  letter-spacing: .02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

h4 {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--muted-text);
  letter-spacing: .06em;
}

p {
  margin: 0 0 1.1em;
}

/* --------------------------------------------------------------- utilities */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 76px 0;
}

.section--tight {
  padding: 52px 0;
}

.section--dark {
  background: var(--color-1);
  color: var(--light-text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--light-text);
}

.section--dark h4 {
  color: rgba(255, 255, 255, .65);
}

.section--muted {
  background: var(--color-2);
}

.text-center {
  text-align: center;
}

/* Left-aligned heading followed by the short accent rule used site-wide */
.section-title {
  margin-bottom: 14px;
}

.rule {
  width: 210px;
  max-width: 55%;
  height: 3px;
  background: var(--color-1);
  border: 0;
  margin: 0 0 34px;
}

.section--dark .rule {
  background: var(--light-text);
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

.rule--accent {
  background: var(--color-5);
}

.lead {
  font-size: 1.06rem;
}

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--color-1);
  color: #fff;
}

.btn--primary:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: var(--color-5);
  color: #fff;
}

.btn--accent:hover {
  background: #145da3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

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

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-1);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 58px;
  width: auto;
}

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

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

.main-nav a {
  position: relative;
  display: block;
  padding: 6px 0;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

/* underline-from-centre hover, as on the reference site */
.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: width .28s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: #fff;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  transition: background .22s ease, transform .22s ease;
}

.social a:hover {
  background: var(--color-5);
  transform: translateY(-2px);
}

.social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  line-height: 0;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --------------------------------------------------------------- home hero */
/* Drawn entirely in CSS — no stock photo, so there's no question of whose
   office or premises it depicts. A charcoal gradient (matching .page-head)
   with a soft gold glow behind the logo, echoing the mark's own gold tone. */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1b1b1b 0%, #333333 50%, #1b1b1b 100%);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(125deg, rgba(255, 255, 255, .045) 0 5px, rgba(255, 255, 255, 0) 5px 14px),
    radial-gradient(ellipse 55% 75% at 24% 48%, rgba(201, 162, 39, .20) 0%, rgba(201, 162, 39, 0) 70%);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 180px;
}

.hero-logo img {
  width: min(320px, 80%);
}

.hero-cta {
  text-align: center;
}

.hero-cta h1 {
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 1.72rem);
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 1.6em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-tagline {
  color: #fff;
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  letter-spacing: .03em;
  margin-top: -1.1em;
  margin-bottom: 1.6em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

/* ------------------------------------------------------- split hero layout */
/* Headline/CTA on the left, a diagonal collage of the site's own product
   photography on the right, compliance badges anchored in its corner — same
   no-stock-office-photo rule as before, just the product shots already used
   on the Pick page, re-cropped. Colors stay gold/charcoal to match the mark. */
.hero.hero--split .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding-top: 90px;
  padding-bottom: 90px;
  outline: 4px solid lime;
}

.eyebrow--light {
  color: #c9a227;
  margin-bottom: 14px;
}

.hero-split__headline {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.18;
  margin-bottom: .5em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-split__headline .accent {
  color: #c9a227;
}

.hero-split__sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2em;
}

.hero-split__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-split__media {
  position: relative;
  min-width: 0;
}

.hero-split__text {
  min-width: 0;
  background: rgba(255, 0, 0, .35);
}

/* Absolutely-positioned + percentage clip-paths (not flex + negative
   margins) so the panels can overlap into a diagonal-cut collage without
   pulling the surrounding grid/flex ancestors into an intrinsic-sizing
   blowout — negative margins on flex children were forcing this box (and
   its CSS Grid ancestor track) wider than the viewport on narrow screens. */
.hero-collage {
  position: relative;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-collage__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
  background-size: cover;
  background-position: center;
  filter: saturate(.85);
}

.hero-collage__panel:nth-child(1) {
  left: 0;
}

.hero-collage__panel:nth-child(2) {
  left: 23.33%;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-collage__panel:nth-child(3) {
  left: 46.66%;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-collage__panel:nth-child(4) {
  left: 70%;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-collage__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27, 27, 27, .08) 0%, rgba(27, 27, 27, .58) 100%);
}

.hero-badges {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 62%;
}

.hero-badge {
  background: rgba(20, 20, 20, .72);
  border: 1px solid rgba(201, 162, 39, .5);
  color: #f2d99a;
  font-family: var(--font-head);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.btn--gold {
  background: #c9a227;
  color: #1b1b1b;
}

.btn--gold:hover {
  background: #b3901f;
  color: #1b1b1b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------- inner page head */
/* The band every inner page opens with, carrying that page's <h1>.
   It is drawn entirely in CSS. The previous version painted
   images/banner-inner.svg at `center / cover`: a 1600x460 artboard scaled into
   a ~200px-tall box keeps only a thin middle slice, so the gradient falloff and
   the accent rule at the foot of the artboard were cropped away and a flat
   near-black slab was all that survived. A gradient sized to the element can't
   crop, so the band holds its shape at any height. */
.page-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3d3d3d 0%, #2c2c2c 52%, #474747 100%);
  color: var(--light-text);
  text-align: center;
  border-bottom: 3px solid var(--color-5);
}

/* the diagonal hatch the old artboard carried, redrawn so it tiles instead */
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg,
      rgba(255, 255, 255, .05) 0 5px,
      rgba(255, 255, 255, 0) 5px 14px);
}

.page-head .container {
  position: relative;
  z-index: 1;
  padding-top: 46px;
  padding-bottom: 50px;
}

.page-head h1 {
  color: var(--light-text);
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.page-head .rule {
  width: 120px;
  max-width: 40%;
  margin: 20px auto 0;
}

.page-head p {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  letter-spacing: .02em;
}

/* -------------------------------------------------------- two-column prose */
.prose-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.prose-2col p {
  text-align: left;
}

/* --------------------------------------------------------------- card grid */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.card {
  text-align: center;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover img {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin: 26px 0 16px;
  text-transform: capitalize;
}

.card p {
  font-size: .95rem;
  margin-bottom: 0;
}

/* ------------------------------------------------- alternating media rows */
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 46px 0;
}

.media-row+.media-row {
  border-top: 1px solid var(--rule);
}

.section--dark .media-row+.media-row {
  border-top-color: rgba(255, 255, 255, .18);
}

.media-row--reverse .media-row__media {
  order: 2;
}

.media-row--align-start {
  align-items: flex-start;
}

.media-row__media--sticky {
  position: sticky;
  top: 110px;
}

/* cap the height so a portrait image never dwarfs the column beside it */
.media-row__media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* on-brand stand-in for a location photo — same drawn-in-CSS treatment as
   the home hero and page banners, so no premises photo is needed at all */
.location-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 320px;
  background: linear-gradient(135deg, #1b1b1b 0%, #333333 50%, #1b1b1b 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.location-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(125deg, rgba(255, 255, 255, .045) 0 5px, rgba(255, 255, 255, 0) 5px 14px),
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(201, 162, 39, .22) 0%, rgba(201, 162, 39, 0) 70%);
}

.location-panel__pin {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  fill: #c9a227;
}

.location-panel__city {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-panel__country {
  position: relative;
  z-index: 1;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

/* rows that are their own full-bleed band supply the padding themselves */
.section--tight>.container>.media-row {
  padding: 0;
}

.media-row__body h2 {
  margin-bottom: .3em;
}

.media-row__tagline {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--color-5);
  letter-spacing: .04em;
  margin-bottom: 0;
}

.section--dark .media-row__tagline {
  color: #9ecbfa;
}

/* Full-bleed dark band used between PICK rows */
.band-dark {
  background: var(--color-1);
  color: var(--light-text);
}

.band-dark h2,
.band-dark h3 {
  color: var(--light-text);
}

.band-dark h4 {
  color: rgba(255, 255, 255, .66);
}

/* --------------------------------------------------------- product / price */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.product {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.product__body {
  padding: 13px 16px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product__cat {
  display: inline-block;
  align-self: flex-start;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-5);
  padding: 2px 8px;
  margin-bottom: 7px;
}

.product h3 {
  margin: 0 0 4px;
  text-transform: uppercase;
  font-size: .93rem;
  letter-spacing: .03em;
}

.product__spec {
  font-size: .72rem;
  line-height: 1.4;
  color: var(--muted-text);
  letter-spacing: .01em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 7px;
  margin-bottom: 7px;
  min-height: 2.8em;
}

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

.product__prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: .76rem;
  padding: 3px 0;
}

.product__prices li+li {
  border-top: 1px solid var(--rule);
}

.product__prices span:first-child {
  color: var(--dark-text);
}

.product__prices span:last-child {
  font-weight: 700;
  font-size: .78rem;
  color: var(--color-1);
  white-space: nowrap;
}

/* ------------------------------------------------------------- logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* client marks arrive at wildly different aspect ratios; a fixed box plus
   object-fit: contain makes the wall read as one grid */
.logo-grid img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 14px;
  filter: grayscale(100%);
  opacity: .9;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

/* legal note under the brand wall — deliberately quiet */
.brand-disclaimer {
  max-width: 860px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.brand-disclaimer h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin: 0 0 8px;
}

.brand-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin: 0;
}

/* -------------------------------------------------------------- timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 12px;
}

.timeline__item {
  text-align: center;
  padding: 30px 22px;
  border: 1px solid rgba(255, 255, 255, .25);
}

.timeline__code {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.timeline__date {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9ecbfa;
}

/* --------------------------------------------------------------- gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery__wide {
  grid-column: span 2;
}

/* --------------------------------------------------------- contact blocks */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.info-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px 30px 32px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a227, #f2d99a, #c9a227);
  opacity: 0;
  transition: opacity .3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  border-color: rgba(201, 162, 39, .45);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .1);
  border: 1px solid rgba(201, 162, 39, .4);
  color: #a8842a;
  margin-bottom: 20px;
  transition: transform .3s ease, background .3s ease;
}

.info-card:hover .info-card__icon {
  transform: scale(1.08);
  background: rgba(201, 162, 39, .18);
}

.info-card__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.info-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.info-card__rule {
  width: 32px;
  height: 2px;
  background: #c9a227;
  border: 0;
  margin: 14px 0 16px;
}

.info-card p {
  font-size: .94rem;
  line-height: 1.65;
  margin-bottom: .5em;
}

.info-card p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------------ form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid #c9a227;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 46px 48px 40px;
}

.field {
  display: flex;
  flex-direction: column;
}

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

.field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark-text);
  padding: 12px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: #c9a227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, .18);
}

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

.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 6px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: .8rem;
  color: var(--muted-text);
  text-align: center;
  margin: 0;
}

#contact-form .btn--accent {
  background: #a8842a;
}

#contact-form .btn--accent:hover {
  background: #8a6c1f;
}

/* ------------------------------------------------------------------ stats */
.stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.stat__num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--color-5);
  display: block;
  line-height: 1.1;
}

.stat__label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* home trust band — feature row, stat band (gold accent), compliance chips */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-row__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-row__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .08);
  border: 1px solid rgba(201, 162, 39, .35);
  color: #a8842a;
}

.feature-row__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.feature-row__item h4 {
  font-size: .92rem;
  letter-spacing: .03em;
  color: var(--dark-text);
  margin-bottom: .25em;
}

.feature-row__item p {
  font-size: .85rem;
  color: var(--muted-text);
  margin-bottom: 0;
}

.stats--band {
  justify-content: center;
  gap: 60px;
}

.stats--band .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats--band .stat__icon {
  color: #c9a227;
}

.stats--band .stat__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.stats--band .stat__num {
  color: #c9a227;
}

.stats--band .stat__label {
  color: rgba(255, 255, 255, .68);
}

.eyebrow {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.badge-chip {
  border: 1px solid rgba(201, 162, 39, .4);
  background: rgba(201, 162, 39, .05);
  color: #a8842a;
  border-radius: 999px;
  padding: 10px 26px;
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------- footer */
.site-footer {
  background: #424242;
  color: #D1D5DB;
  padding: 64px 0 28px;
  font-size: 0.82rem;
  border-top: 1px solid #525252;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-title {
  color: #E5E7EB !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}

.footer-brand-logo {
  max-height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.footer-desc {
  color: #D1D5DB;
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social li {
  padding: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #FFFFFF;
  color: #1E293B;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-location {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-location p {
  color: #D1D5DB;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.contact-location a {
  color: #D1D5DB;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-location a:hover {
  color: #FFFFFF;
}

.contact-email {
  margin-top: 24px;
}

.contact-email a {
  color: #D1D5DB;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: #9CA3AF;
}

.footer-credit {
  font-size: 0.78rem;
  color: #9CA3AF;
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: #f2d99a;
  font-weight: 700;
  text-decoration: none;
  padding: 3px 8px;
  margin-left: 4px;
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: #121212;
  background: #c9a227;
  border-color: #c9a227;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
}

.footer-tagline {
  font-family: var(--font-body);
  color: #E5E7EB;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-copy {
  color: #9CA3AF;
  font-size: 0.75rem;
}

.footer-copy a {
  color: #D1D5DB;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover {
  color: #FFFFFF;
}

/* ------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .stats--band {
    gap: 40px;
  }

  .hero.hero--split .hero-split {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 50px;
    gap: 44px;
  }

  .hero-split__sub {
    max-width: none;
  }

  .hero-collage {
    height: 320px;
  }

  .main-nav ul {
    gap: 18px;
  }

  .main-nav a {
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .social {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
  }

  .nav-wrap.is-open {
    max-height: 620px;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li {
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .main-nav a {
    padding: 14px 22px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: rgba(255, 255, 255, .09);
  }

  .social {
    display: flex;
    justify-content: center;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 76px;
    padding-bottom: 88px;
  }

  .hero-logo img {
    margin: 0 auto 26px;
  }

  .prose-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0;
  }

  .media-row--reverse .media-row__media {
    order: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-contact-grid {
    gap: 24px;
  }

  .section {
    padding: 54px 0;
  }

  .page-head .container {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .page-head h1 {
    letter-spacing: .12em;
  }

  .page-head p {
    font-size: .9rem;
    margin-top: 14px;
  }

  .page-head .rule {
    margin-top: 16px;
  }
}

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

  .products {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .stats--band {
    gap: 30px;
  }

  .hero-collage {
    height: 380px;
  }

  .hero-badges {
    max-width: 100%;
    right: 8px;
    bottom: 8px;
  }

  .hero-badge {
    font-size: .58rem;
    padding: 5px 9px;
  }

  .footer-contact-grid {
    gap: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px 22px 22px;
  }

  .rule {
    max-width: 70%;
  }
}

/* ==========================================================================
   US PAGE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* Hero Stats Counter Bar */
.us-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.us-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.us-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.us-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: #c9a227;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.us-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  font-weight: 600;
}

/* Core Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f78d1, #c9a227);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(31, 120, 209, 0.3);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(31, 120, 209, 0.08);
  color: var(--color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: var(--color-5);
  color: #ffffff;
  transform: scale(1.08);
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Executive Leadership Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.exec-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.exec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.5);
}

.exec-avatar {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f78d1, #c9a227);
  padding: 3px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.exec-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #2b2b2b;
  color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}

/* portrait fills the ring; top-weighted crop keeps faces in frame */
.exec-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 50%;
  display: block;
}

.exec-info {
  flex: 1;
}

.exec-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.exec-info h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-5);
  margin-bottom: 12px;
}

.exec-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8842a;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.exec-info p {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Leadership Quote Banner */
.leadership-quote-box {
  background: linear-gradient(135deg, #1b1b1b 0%, #2a2a2a 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 36px 40px;
  margin-top: 36px;
  border-left: 5px solid #c9a227;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.leadership-quote-box p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #f2d99a;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Operational Workflow Section — five execution stages read as one strip */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.workflow-step {
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: var(--color-5);
  box-shadow: var(--shadow-md);
}

.workflow-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(31, 120, 209, 0.25);
  position: absolute;
  top: 14px;
  right: 18px;
}

.workflow-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 8px;
  /* keep multi-line stage names clear of the absolutely-placed step number */
  padding-right: 38px;
}

.workflow-step p {
  font-size: 0.82rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Product Categories Grid in Manufacturing Partners */
.us-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.us-category-card {
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.us-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #c9a227;
}

.us-category-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.us-category-card:hover img {
  transform: scale(1.06);
}

.us-category-title {
  padding: 12px 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-text);
  background: #fafafa;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive CTA Banner */
.us-cta-banner {
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 50%, #1f78d1 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.us-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.us-cta-banner h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.us-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 32px;
}

.us-cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--lg {
  padding: 14px 34px;
  font-size: 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* Responsive queries for Us enhancements */
@media (max-width: 1024px) {
  .us-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  .us-stat-item:nth-child(2)::after {
    display: none;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .us-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .exec-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .us-hero-stats {
    grid-template-columns: 1fr;
  }
  .us-stat-item::after {
    display: none !important;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .us-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   CRAFTING TOMORROW'S FASHION RESPONSIBLY - ALIGNED WITH NOVATERRA PALETTE
   ========================================================================== */
.resp-banner-section {
  background: #1b1b1b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.resp-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 520px;
  position: relative;
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 52%, #1b1b1b 100%);
  padding: 60px 0;
}

.resp-hero__content {
  z-index: 2;
  padding-right: 20px;
}

.resp-tag {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c9a227;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.resp-tag::after {
  content: '';
  height: 2px;
  width: 50px;
  background: #c9a227;
}

.resp-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.resp-hero__title .highlight-green {
  color: #c9a227;
  display: block;
}

.resp-hero__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 32px;
}

.resp-hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn--green {
  background: #c9a227;
  color: #1b1b1b !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.btn--green:hover {
  background: #b3901f;
  color: #1b1b1b !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 13px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn--outline-light:hover {
  border-color: #c9a227;
  color: #c9a227 !important;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Compliance Badges Bar */
.compliance-label {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.compliance-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  flex-wrap: wrap;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f2d99a;
  padding: 6px 14px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  text-transform: uppercase;
}

.compliance-badge svg {
  stroke: #c9a227;
}

/* Hero Showcase Gallery Cards */
.resp-hero__collage {
  position: relative;
  display: flex;
  gap: 16px;
  height: 400px;
  padding: 10px 0;
  align-items: center;
}

.resp-collage-item {
  position: relative;
  flex: 1;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
  background: #141414;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.resp-collage-item:hover {
  transform: translateY(-8px);
  border-color: #c9a227;
  box-shadow: 0 22px 45px rgba(201, 162, 39, 0.35);
  z-index: 5;
}

/* Staggered height effect */
.resp-collage-item--1,
.resp-collage-item--3 {
  height: 92%;
}

/* Fully zoomed-out, natural image framing */
.resp-collage-item img {
  width: 100%;
  height: 100%;
  margin: 0;
  transform: none;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Focal points for natural framing */
.resp-collage-item--1 img {
  object-position: center center;
}
.resp-collage-item--2 img {
  object-position: center 8%; /* Keeps both models, faces, and outfits fully framed */
}
.resp-collage-item--3 img {
  object-position: center center;
}

.resp-collage-item:hover img {
  transform: scale(1.06);
}

/* Dark gradient overlay for bottom badge readability */
.resp-collage-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.15) 45%, transparent 100%);
  pointer-events: none;
}

.resp-collage-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(18, 18, 18, 0.9);
  color: #f2d99a;
  border: 1px solid rgba(201, 162, 39, 0.6);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.resp-collage-item:hover .resp-collage-badge {
  background: #c9a227;
  color: #121212;
  border-color: #c9a227;
}

/* Novaterra Concept Motto Highlight */
.concept-highlight {
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--dark-text);
  border-left: 3.5px solid #c9a227;
  padding-left: 16px;
  margin-bottom: 20px;
}

/* 4 Feature Row (White Band) */
.resp-feature-bar {
  background: #ffffff;
  color: var(--dark-text);
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
}

.resp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.resp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  transition: transform 0.3s ease;
}

.resp-feature-item:hover {
  transform: translateY(-3px);
}

.resp-feature-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #a8842a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.resp-feature-item:hover .resp-feature-icon {
  background: #c9a227;
  color: #1b1b1b;
  border-color: #c9a227;
}

.resp-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.resp-feature-text h4 {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.resp-feature-text p {
  font-size: 0.82rem;
  color: var(--muted-text);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Bottom Gold Stats Band */
.resp-stats-band {
  background: linear-gradient(135deg, #1b1b1b 0%, #292929 100%);
  color: #ffffff;
  padding: 36px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}

.resp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.resp-stats-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1020px;
  margin: 0 auto;
}

.resp-stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 16px;
  position: relative;
}

.resp-stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.resp-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.12);
  color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}

.resp-stat-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.resp-stat-info {
  display: flex;
  flex-direction: column;
}

.resp-stat-val {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: #c9a227;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.resp-stat-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

/* Responsive Breakpoints for Responsible Hero & Stats */
@media (max-width: 1024px) {
  .resp-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .resp-hero__collage {
    height: 320px;
  }
  .resp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .resp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  /* three short stats still fit side by side on tablet */
  .resp-stats-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .resp-stat-box:nth-child(2)::after {
    display: none;
  }
  .resp-stats-grid--3 .resp-stat-box:nth-child(2)::after {
    display: block;
  }
}

@media (max-width: 640px) {
  .resp-feature-grid {
    grid-template-columns: 1fr;
  }
  .resp-stats-grid {
    grid-template-columns: 1fr;
  }
  .resp-stat-box::after {
    display: none !important;
  }
  .resp-hero__collage {
    height: 240px;
  }
}

/* Executive Leadership Equal Height Grid */
.leadership-flex-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

.leadership-photo-card {
  height: 100%;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
  position: relative;
}

.leadership-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .leadership-flex-container {
    grid-template-columns: 1fr;
  }
  .leadership-photo-card {
    min-height: 360px;
    max-height: 420px;
  }
}

/* ==========================================================================
   CONNECT PAGE ENHANCEMENTS
   ========================================================================== */
.connect-hero-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.connect-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f2d99a;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.connect-pill svg {
  width: 14px;
  height: 14px;
  fill: #c9a227;
}

.connect-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.connect-card {
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.connect-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #c9a227;
}

.connect-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31, 120, 209, 0.08);
  color: var(--color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.connect-card:hover .connect-card__icon {
  background: var(--color-5);
  color: #ffffff;
}

.connect-card__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.connect-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.connect-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 12px;
}

.connect-card p {
  font-size: 0.85rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 0;
}

.connect-card a {
  color: var(--color-5);
  font-weight: 600;
}

.connect-card a:hover {
  text-decoration: underline;
}

/* Office Image & Map Container */
.office-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.office-image-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
  height: 380px;
}

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

.office-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.office-badge-overlay h4 {
  color: #c9a227;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.office-badge-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .connect-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .office-hero-grid {
    grid-template-columns: 1fr;
  }
  .office-image-box {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .connect-cards-grid {
    grid-template-columns: 1fr;
  }
}