/* ============================================================
   Mama Watoto Supermarket — Centralized Stylesheet
   Shared across all pages. Page-specific sections are grouped
   below the shared header/footer/contact blocks.
   ============================================================ */


  :root {
    --navy: #163C5C;
    --navy-deep: #0F2B43;
    --orange: #CC7A2E;
    --orange-light: #E8A23D;
    --cream: #F8F4E3;
    --paper: #FFFEFA;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--navy-deep);
  }

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

  header {
    background: var(--navy-deep);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  /* Home page header: transparent over hero, solid on scroll */
  body.home header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  body.home header.is-scrolled {
    background: var(--paper);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  body.home header.is-scrolled nav a {
    color: var(--navy-deep);
  }

  body.home header.is-scrolled .logo-text-block .lt-main {
    color: var(--navy-deep);
  }

  body.home header.is-scrolled .menu-toggle {
    color: var(--navy-deep);
  }

  .nav-row {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
  }

  .logo-link { display: flex; align-items: center; gap: 14px; }
  .logo-mascot-wrap {
    background: var(--paper);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  .logo-mascot-img { height: 62px; width: auto; display: block; }
  .logo-text-block { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
  .logo-text-block .lt-main {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--paper);
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .logo-text-block .lt-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 4px;
  }

  nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--paper);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
  }

  nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  nav a:hover { color: var(--orange); }
  nav a:hover::after { transform: scaleX(1); }

  nav li:last-child a {
    background: var(--orange);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
  }

  nav li:last-child a:hover { background: var(--paper); color: var(--navy-deep); }
  nav li:last-child a::after { display: none; }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--paper);
    cursor: pointer;
  }

  @media (max-width: 980px) {
    nav ul {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--paper);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      border-bottom: 3px solid var(--navy);
      padding: 10px 28px 18px;
    }
    nav ul.open { display: flex; }
    nav ul.open li:not(:last-child) a { color: var(--navy-deep); }
    nav li { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(22,60,92,0.08); }
    nav li:last-child { border-bottom: none; padding-top: 16px; }
    nav li:last-child a { display: inline-block; }
    .menu-toggle { display: block; }
    .logo-mascot-img { height: 44px; }
    .logo-text-block .lt-main { font-size: 22px; }
    .logo-text-block .lt-sub { font-size: 10.5px; }
  }


/* ===================== INDEX (Home) PAGE ===================== */
  .slideshow {
    position: relative;
    width: 100%;
    height: clamp(280px, 60vw, 650px);
    overflow: hidden;
    background: var(--navy-deep);
  }

  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .slide.active {
    opacity: 1;
  }

  .slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--paper);
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  }

  .slide:nth-child(2) .slide-placeholder { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
  .slide:nth-child(3) .slide-placeholder { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }
  .slide:nth-child(4) .slide-placeholder { background: linear-gradient(135deg, var(--orange-light), var(--orange)); }

  .slide-placeholder .ph-icon {
    font-size: 48px;
    opacity: 0.85;
  }

  .slide-placeholder .ph-label {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.02em;
  }

  .slide-placeholder .ph-sub {
    font-size: 13px;
    opacity: 0.8;
  }

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

  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 110px 24px 0;
    background: linear-gradient(180deg, rgba(15,43,67,0.25), rgba(15,43,67,0.55));
    z-index: 3;
  }

  .hero-eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
  }

  .hero-headline {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(28px, 4.6vw, 50px);
    color: var(--paper);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    max-width: 820px;
    line-height: 1.15;
  }

  .hero-sub {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(14.5px, 1.6vw, 17px);
    color: #E7EEF4;
    max-width: 760px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  }

  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  .hero-cta {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 30px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .hero-cta-primary {
    background: var(--orange);
    color: var(--paper);
    border: 2px solid var(--orange);
  }

  .hero-cta-primary:hover {
    background: var(--paper);
    color: var(--navy-deep);
    transform: translateY(-2px);
  }

  .hero-cta-secondary {
    background: transparent;
    color: var(--paper);
    border: 2px solid rgba(255,255,255,0.6);
  }

  .hero-cta-secondary:hover {
    background: var(--paper);
    color: var(--navy-deep);
    border-color: var(--paper);
    transform: translateY(-2px);
  }

  @media (max-width: 700px) {
    .hero-cta { font-size: 13px; padding: 10px 18px; }
    .hero-overlay { padding-top: 70px; gap: 12px; }
    .slideshow { height: auto; min-height: 640px; }
  }

  .slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: 2px solid var(--navy);
    color: var(--navy-deep);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
  }

  .slideshow-arrow:hover {
    background: var(--orange);
    color: var(--paper);
  }

  .slideshow-arrow.prev { left: 20px; }
  .slideshow-arrow.next { right: 20px; }

  .slideshow-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
    z-index: 5;
  }

  .slideshow-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--paper);
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .slideshow-dots button.active {
    background: var(--paper);
  }

  /* ===== Vision / Mission / Purpose (stepper) ===== */
  .vmp {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 28px 70px;
  }

  .vmp-panel {
    display: none;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
  }

  .vmp-panel.active { display: grid; }

  .vmp-left .vmp-icon {
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--paper);
    border-radius: 50%;
    margin-bottom: 12px;
  }

  .vmp-left .vmp-label {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 52px);
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1;
    margin-bottom: 18px;
  }

  .vmp-left .vmp-statement {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--navy-deep);
    line-height: 1.3;
  }

  .vmp-right p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4d5b66;
  }

  .vmp-icon-frame {
    width: 110px;
    height: 110px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--navy);
    overflow: hidden;
  }

  .vmp-icon-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  /* Stepper bar */
  .vmp-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 46px;
  }

  .vmp-stepper .step-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--orange);
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--orange);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .vmp-stepper .step-link .step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .vmp-stepper .step-link.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--paper);
  }

  .vmp-stepper .step-link.is-active .step-dot {
    background: var(--paper);
    color: var(--navy);
  }

  .vmp-stepper .step-line {
    width: 60px;
    height: 2px;
    background: var(--orange);
  }

  @media (max-width: 760px) {
    .vmp-panel { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .vmp-left .vmp-icon { margin: 0 auto 12px; }
    .vmp-icon-frame { margin: 0 auto 16px; }
    .vmp-stepper { flex-wrap: wrap; gap: 10px; }
    .vmp-stepper .step-line { width: 24px; }
  }

  @media (max-width: 600px) {
    .slideshow-arrow { width: 36px; height: 36px; font-size: 15px; }
    .slide-placeholder .ph-icon { font-size: 36px; }
    .slide-placeholder .ph-label { font-size: 16px; }
  }


/* ===================== ABOUT PAGE ===================== */
  /* ===== About hero ===== */
  .about-hero {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 28px 20px;
    text-align: center;
  }

  .about-hero .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
  }

  .about-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(30px, 4.4vw, 48px);
    color: var(--navy-deep);
    margin-bottom: 14px;
  }

  .about-hero p {
    color: #4d5b66;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 16px;
    text-align: left;
  }

  /* ===== Who We Are ===== */
  .who-we-are {
    background: var(--paper);
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    padding: 60px 28px;
  }

  .who-we-are-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .who-we-are .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
  }

  .who-we-are h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 30px);
    color: var(--navy-deep);
    margin-bottom: 22px;
    line-height: 1.3;
  }

  .who-we-are p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4d5b66;
    text-align: left;
    margin-bottom: 14px;
  }

  /* ===== Founder story ===== */
  .founder {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 28px 70px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
  }

  .founder-portrait {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .founder-portrait img {
    width: 100%;
    height: auto;
    display: block;
  }

  .founder-text h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 4px;
  }

  .founder-text .role {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
    margin-bottom: 16px;
  }

  .founder-text p {
    font-size: 15.5px;
    color: #4d5b66;
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .founder-text .signature {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    margin-top: 8px;
    color: var(--navy-deep);
  }

  /* ===== Timeline ===== */
  .timeline-section {
    background: var(--paper);
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    padding: 60px 28px;
  }

  .timeline-section .section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
  }

  .section-head .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
  }

  .section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 34px);
    color: var(--navy-deep);
  }

  .journey-intro {
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #4d5b66;
  }

  .profile-grid {
    max-width: 1080px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .profile-item {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: 14px;
    padding: 22px;
  }

  .profile-item .p-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .profile-item .p-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .profile-item .p-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.4;
  }

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


/* ===================== SHOP PAGE ===================== */
  .shop-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 28px 50px;
    text-align: center;
  }

  .shop-hero .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
  }

  .shop-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(30px, 4.4vw, 48px);
    color: var(--navy-deep);
    margin-bottom: 14px;
  }

  .shop-hero p {
    color: #5A6B78;
    font-size: 16.5px;
    max-width: 560px;
    margin: 0 auto;
  }

  .coming-soon {
    max-width: 1000px;
    margin: 0 auto 90px;
    padding: 0 28px;
  }

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

  .placeholder-card {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: 14px;
    padding: 30px 16px;
    text-align: center;
  }

  .placeholder-card .pc-icon { font-size: 34px; margin-bottom: 10px; display: block; }
  .placeholder-card .pc-label { font-weight: 700; font-size: 14px; color: var(--navy-deep); }
  .placeholder-card .pc-sub { font-size: 12px; color: #8a93a0; margin-top: 4px; }

  .notice {
    margin-top: 36px;
    background: var(--navy-deep);
    color: var(--paper);
    border-radius: 14px;
    padding: 24px 28px;
    text-align: center;
    font-size: 14.5px;
  }

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


/* ===================== CAREER PAGE ===================== */
  /* ===== Career hero ===== */
  .career-hero {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 28px 20px;
    text-align: center;
  }

  .career-hero .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
  }

  .career-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 44px);
    color: var(--navy-deep);
    margin-bottom: 14px;
  }

  .career-hero p {
    color: #5A6B78;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ===== Why work with us ===== */
  .why-work {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 28px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
  }

  .why-card {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: 14px;
    padding: 24px 22px;
  }

  .why-card .w-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .why-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 16.5px;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 14px;
    color: #5A6B78;
    line-height: 1.55;
  }

  /* ===== Equal Opportunity ===== */
  .eoe-section {
    background: var(--navy-deep);
    color: var(--paper);
    padding: 60px 28px;
  }

  .eoe-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .eoe-inner .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
  }

  .eoe-inner h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 18px;
  }

  .eoe-inner p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #C9D6E0;
    margin-bottom: 14px;
  }

  .eoe-pillars {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
  }

  .eoe-pillars span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
  }

  /* ===== Open roles ===== */
  .roles-section {
    background: var(--paper);
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    padding: 60px 28px;
  }

  .roles-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .roles-inner .section-head {
    text-align: center;
    margin-bottom: 36px;
  }

  .roles-inner .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
  }

  .roles-inner h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 30px);
    color: var(--navy-deep);
  }

  .roles-empty {
    text-align: center;
    background: var(--cream);
    border: 2px dashed var(--navy);
    border-radius: 14px;
    padding: 40px 26px;
    margin-bottom: 24px;
  }

  .roles-empty .empty-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
  }

  .roles-empty p {
    font-size: 15px;
    color: #5A6B78;
  }

  .roles-notice {
    margin-top: 0;
    text-align: center;
    background: var(--navy-deep);
    color: var(--paper);
    border-radius: 14px;
    padding: 22px 26px;
    font-size: 14.5px;
  }

  .roles-notice a {
    color: var(--orange-light);
    font-weight: 700;
  }


/* ===================== SHARED: CONTACT & FOOTER ===================== */
  /* ===== Contact Us ===== */
  .contact-section {
    background: var(--paper);
    border-top: 3px solid var(--navy);
    padding: 60px 28px 70px;
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .contact-inner .section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
  }

  .contact-inner .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
  }

  .contact-inner .section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 32px);
    color: var(--navy-deep);
    margin-bottom: 10px;
  }

  .contact-inner .section-head p {
    color: #5A6B78;
    font-size: 15px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }

  .contact-info {
    background: var(--cream);
    border: 2px solid var(--navy);
    border-radius: 16px;
    padding: 30px 28px;
  }

  .contact-info h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--navy-deep);
  }

  .contact-info .ci-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .contact-info .ci-row .ic { font-size: 18px; width: 26px; flex-shrink: 0; }
  .contact-info .ci-row strong { display: block; font-size: 14px; margin-bottom: 2px; }
  .contact-info .ci-row span { font-size: 13.5px; color: #5A6B78; }

  .contact-form {
    background: var(--cream);
    border: 2px solid var(--navy);
    border-radius: 16px;
    padding: 30px 28px;
  }

  .contact-form h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--navy-deep);
  }

  .cf-group { margin-bottom: 16px; }

  .cf-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-deep);
  }

  .cf-group input,
  .cf-group textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 13px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    background: var(--paper);
    color: var(--navy-deep);
  }

  .cf-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .cf-submit {
    background: var(--orange);
    color: var(--paper);
    padding: 13px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14.5px;
    border: 2px solid var(--navy);
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
  }

  .cf-submit:hover { background: var(--navy); }

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


  /* ===== Footer ===== */
  .site-footer {
    background: var(--navy-deep);
    color: var(--paper);
    padding: 50px 28px 30px;
  }

  .footer-cols {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    text-align: left;
  }

  .footer-col {
    flex: 1;
    min-width: 220px;
    text-align: left;
  }

  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange-light);
    margin-bottom: 16px;
  }

  .footer-col p {
    font-size: 14px;
    color: #C9D6E0;
    margin-bottom: 10px;
    text-align: left;
  }

  .footer-col ul {
    list-style: none;
    text-align: left;
  }

  .footer-col li {
    margin-bottom: 10px;
    text-align: left;
  }

  .footer-col a {
    font-size: 14px;
    color: #C9D6E0;
    transition: color 0.2s ease;
  }

  .footer-col a:hover { color: var(--orange-light); }

  .footer-social {
    max-width: 1100px;
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: background 0.2s ease;
  }

  .footer-social a:hover { background: var(--orange); }

  @media (max-width: 600px) {
    .footer-cols { flex-direction: column; gap: 30px; }
  }


  /* ===== Homepage: Generic Section Pattern ===== */
  .home-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 28px;
  }

  .home-section.alt-bg {
    background: var(--paper);
    max-width: 100%;
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
  }

  .home-section.alt-bg .home-section-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  .home-section .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
  }

  .home-section .section-head .eyebrow {
    display: inline-block;
    background: var(--orange-light);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
  }

  .home-section .section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 34px);
    color: var(--navy-deep);
    margin-bottom: 10px;
  }

  .home-section .section-head p {
    font-family: 'Work Sans', sans-serif;
    color: #5A6B78;
    font-size: 15.5px;
    line-height: 1.6;
  }

  .home-cta {
    display: inline-block;
    margin-top: 28px;
    background: var(--orange);
    color: var(--paper);
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 26px;
    border-radius: 30px;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .home-cta:hover { background: var(--navy-deep); transform: translateY(-2px); }

  .home-cta-row { text-align: center; }

  /* Welcome / Who We Are condensed */
  .welcome-text, .whoweare-text {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .welcome-text p, .whoweare-text p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: #4d5b66;
    margin-bottom: 14px;
    text-align: left;
  }

  /* Company at a Glance - profile table */
  .glance-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
  }

  .glance-item {
    background: var(--cream);
    border: 2px solid var(--navy);
    border-radius: 12px;
    padding: 16px 18px;
  }

  .glance-item .g-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .glance-item .g-value {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.4;
  }

  /* Business units / stakeholder cards (shared pattern) */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .info-card {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: 14px;
    padding: 26px 24px;
  }

  .home-section.alt-bg .info-card { background: var(--cream); }

  .info-card .ic-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
  }

  .info-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy-deep);
    margin-bottom: 8px;
  }

  .info-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #5A6B78;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .info-card .ic-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
  }

  .info-card .ic-link:hover { color: var(--navy-deep); }

  /* Checklist (Why Choose) */
  .check-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 24px;
  }

  .check-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14.5px;
    color: #3a4750;
  }

  .check-list li::before {
    content: "✔";
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Pill list (partnerships / snapshot highlights) */
  .pill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
  }

  .pill-list span {
    background: var(--cream);
    border: 2px solid var(--navy);
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-deep);
  }

  .home-section.alt-bg .pill-list span { background: var(--paper); }

  /* Placeholder banner (Promotions / News) */
  .placeholder-banner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--cream);
    border: 2px dashed var(--navy);
    border-radius: 14px;
    padding: 40px 26px;
  }

  .home-section.alt-bg .placeholder-banner { background: var(--paper); }

  .placeholder-banner .pb-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
  }

  .placeholder-banner p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14.5px;
    color: #5A6B78;
  }

  /* Careers spotlight banner */
  .careers-banner {
    background: var(--navy-deep);
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    color: var(--paper);
  }

  .careers-banner h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 14px;
  }

  .careers-banner p {
    font-family: 'Work Sans', sans-serif;
    max-width: 640px;
    margin: 0 auto 24px;
    color: #C9D6E0;
    font-size: 15px;
    line-height: 1.6;
  }

  /* Store locator CTA */
  .locator-banner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--cream);
    border: 2px solid var(--navy);
    border-radius: 14px;
    padding: 40px 30px;
  }

  .locator-banner .lb-icon { font-size: 34px; display: block; margin-bottom: 14px; }

  .locator-banner p {
    font-family: 'Work Sans', sans-serif;
    color: #5A6B78;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 8px;
  }

  /* Contact summary categories */
  .contact-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .contact-categories span {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-deep);
  }

  /* Closing statement */
  .closing-statement {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 28px;
  }

  .closing-statement p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4d5b66;
  }

  /* Footer 5-column rebuild */
  .footer-cols-5 {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: left;
  }

  @media (max-width: 900px) {
    .footer-cols-5 { grid-template-columns: repeat(2, 1fr); }
  }

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