@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #1C2B3A;
  --navy-dark:  #111E2B;
  --navy-light: #253444;
  --amber:      #D4793B;
  --amber-dark: #B8622A;
  --amber-light:#F0A06A;
  --cream:      #F9F7F4;
  --cream-dark: #F0EDE8;
  --white:      #FFFFFF;
  --grey-100:   #F3F2EF;
  --grey-200:   #E5E3DF;
  --grey-300:   #C8C5C0;
  --grey-400:   #A09D98;
  --grey-600:   #6B6662;
  --grey-900:   #1A1614;

  /* Brand colors */
  --crestline:        #C5451A;
  --crestline-light:  #FDF1ED;
  --fieldwell:        #2D7A3E;
  --fieldwell-light:  #EEF7F1;
  --breva:            #0E7490;
  --breva-light:      #EDF7FA;
  --stoneleaf:        #8B6914;
  --stoneleaf-light:  #FBF6EA;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
  --max-width: 1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 43, 58, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(17, 30, 43, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 18px; height: 18px; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-primary {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-secondary {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber-light);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 7px 18px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover { background: var(--amber-dark) !important; }

.nav-mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 22px;
  padding: 4px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  gap: 0.25rem;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 121, 59, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14, 116, 144, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(45, 122, 62, 0.06) 0%, transparent 40%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 121, 59, 0.15);
  border: 1px solid rgba(212, 121, 59, 0.3);
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--amber-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-brand-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: default;
}

.hero-brand-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.hero-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-brand-cat {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--amber);
  padding: 0;
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.section-lg { padding: 8rem 2rem; }

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  color: var(--grey-600);
  line-height: 1.75;
  max-width: 640px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-header .section-body { margin-top: 0.75rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--grey-300);
}

.btn-ghost:hover { border-color: var(--navy); background: var(--grey-100); }

.btn-sm { font-size: 13px; padding: 8px 18px; }
.btn-lg { font-size: 15px; padding: 14px 32px; }

/* ============================================================
   BRAND CARDS (homepage)
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.brand-card-accent {
  height: 5px;
}

.brand-card-body {
  padding: 1.75rem;
}

.brand-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.brand-tagline {
  font-size: 12.5px;
  color: var(--grey-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 38px;
}

.brand-meta {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-100);
}

.brand-meta-item { font-size: 11.5px; color: var(--grey-400); }
.brand-meta-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); }

.brand-card-footer {
  padding: 1rem 1.75rem;
  background: var(--grey-100);
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   ABOUT TEASER (homepage)
   ============================================================ */
.about-teaser {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.about-teaser-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(212,121,59,0.1) 0%, transparent 55%);
}

.about-teaser-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 32px;
  bottom: -8px;
  width: 2px;
  background: rgba(255,255,255,0.1);
}

.timeline-marker {
  width: 38px;
  height: 38px;
  background: rgba(212,121,59,0.15);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--amber-light);
}

.timeline-content {
  padding-bottom: 1.75rem;
  padding-top: 8px;
}

.timeline-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.timeline-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.news-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.news-card-body { padding: 1.75rem; }

.news-card-date {
  font-size: 12px;
  color: var(--grey-400);
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.news-card-excerpt {
  font-size: 13.5px;
  color: var(--grey-600);
  line-height: 1.65;
}

.news-card-link {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--grey-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.news-card-link:hover { color: var(--amber-dark); gap: 10px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(212,121,59,0.1) 0%, transparent 50%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.85); }

.page-hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   BRANDS PAGE
   ============================================================ */
.brand-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--grey-200);
}

.brand-section:last-of-type { border-bottom: none; }
.brand-section:nth-child(even) { background: var(--cream); }

.brand-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-section:nth-child(even) .brand-section-inner { direction: rtl; }
.brand-section:nth-child(even) .brand-section-inner > * { direction: ltr; }

.brand-section-logo {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.brand-section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.brand-section-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.brand-section-desc {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.brand-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.brand-cat-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid;
}

.brand-stats-row {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
}

.brand-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-stat span { font-size: 12px; color: var(--grey-400); font-weight: 500; }

.brand-visual-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.brand-visual-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 30% 30%, currentColor 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, currentColor 0%, transparent 40%);
}

.brand-visual-large {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.brand-retailer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-retailer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.brand-retailer-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.leader-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.leader-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.leader-title {
  font-size: 12.5px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.leader-bio {
  font-size: 13.5px;
  color: var(--grey-600);
  line-height: 1.65;
}

.leader-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.leader-card.featured .leader-name { color: var(--white); }
.leader-card.featured .leader-bio { color: rgba(255,255,255,0.65); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-sm); }

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 13.5px;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 13.5px;
  color: var(--grey-600);
  line-height: 1.65;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commitment-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.commitment-check {
  width: 28px;
  height: 28px;
  background: var(--fieldwell-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fieldwell);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.commitment-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.commitment-text span {
  font-size: 13px;
  color: var(--grey-600);
}

/* ============================================================
   CAREERS
   ============================================================ */
.careers-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--grey-600);
}

.perk-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--fieldwell);
  flex-shrink: 0;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: var(--transition);
}

.job-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }

.job-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

.job-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-brand-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: var(--transition);
}

.news-item:hover { box-shadow: var(--shadow); }

.news-item-date {
  text-align: center;
  min-width: 56px;
}

.news-item-date .month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.news-item-date .day {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.news-item-date .year {
  font-size: 11px;
  color: var(--grey-400);
}

.news-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.news-item-excerpt {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.contact-info-sub {
  font-size: 13px;
  color: var(--grey-600);
  margin-top: 2px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--grey-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,43,58,0.08); }

textarea.form-input { resize: vertical; min-height: 120px; }

select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6662' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 4rem 2rem 2rem;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 12.5px;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.divider {
  height: 1px;
  background: var(--grey-200);
  margin: 3rem 0;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.tag-amber { background: rgba(212,121,59,0.12); color: var(--amber-dark); }
.tag-navy  { background: rgba(28,43,58,0.08); color: var(--navy); }
.tag-green { background: rgba(45,122,62,0.1); color: var(--fieldwell); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-brands-grid { display: none; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .sustainability-pillars { grid-template-columns: repeat(2, 1fr); }
  .brand-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-section:nth-child(even) .brand-section-inner { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .brands-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .sustainability-pillars { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .careers-intro { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 1rem; }
  .news-item-date { display: flex; gap: 8px; align-items: baseline; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2rem; }
  .section { padding: 4rem 1.25rem; }
  .page-hero { padding: 5.5rem 1.25rem 3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
