/* =========================================================
   MARIE STAFFING SERVICES — index.css
   Homepage-only styles. Do not import into other pages.
   ========================================================= */

:root {
  /* Brand colors */
  --index-cream: #F9CE04;
  --index-gold-radiant: linear-gradient(90deg, #997334 0%, #F9CE04 13%, #C6A54E 36%, #9B7636 50%, #F8CC0E 63%, #C6A54E 86%, #997334 100%);
  --index-gold-surface: linear-gradient(160deg, #F9CE04 0%, #C6A54E 45%, #997334 100%);
  --index-cream-soft: #FDF7DE;
  --index-cream-deep: #C6A54E;
  --index-green: #054F1E;
  --index-green-deep: #043916;
  --index-green-tint: #E6EDE8;
  --index-gray: #939598;
  --index-gray-light: #DAD8D1;
  --index-dark: #262729;
  --index-white: #FDFBF6;

  /* Type */
  --index-font-display: 'Hando Trial', 'Montserrat', 'Arial Black', sans-serif;
  --index-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --index-max-width: 1240px;
  --index-radius-lg: 28px;
  --index-radius-md: 18px;
  --index-radius-sm: 10px;
}

/* ---------- Display font ----------
   Drop the licensed Hando Trial Bold files into /assets/fonts/
   (see assets/fonts/README.txt). Until then, the stack below
   falls back to Montserrat at a heavy weight so headings still
   look intentional. */
@font-face {
  font-family: 'Hando Trial';
  src: url('assets/fonts/HandoTrial-Bold.woff2') format('woff2'),
       url('assets/fonts/HandoTrial-Bold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--index-font-body);
  color: var(--index-dark);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(249, 206, 4, 0.58), transparent 54%),
    radial-gradient(circle at 88% 42%, rgba(5, 79, 30, 0.48), transparent 55%),
    radial-gradient(circle at 20% 92%, rgba(5, 79, 30, 0.42), transparent 50%),
    var(--index-green-tint);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }@media (prefers-reduced-motion: reduce){
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

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

.index-section-inner {
  max-width: var(--index-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.index-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--index-green);
  margin-bottom: 14px;
  display: inline-block;
}
.index-eyebrow--light { color: var(--index-cream); }

.index-section-heading {
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 720px;
}
.index-section-heading--light { color: var(--index-white); }

.index-section-head { margin-bottom: 56px; }

/* ---------- Buttons ---------- */
.index-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.index-button:hover { transform: translateY(-2px); }

.index-button--primary {
  background: var(--index-green);
  color: var(--index-white);
}
.index-button--primary:hover { background: var(--index-green-deep); }

.index-button--outline {
  background: transparent;
  color: var(--index-dark);
  border-color: var(--index-dark);
}
.index-button--outline:hover { background: var(--index-dark); color: var(--index-white); }

.index-button--dark {
  background: var(--index-dark);
  color: var(--index-white);
}
.index-button--dark:hover { background: var(--index-green-deep); }

.index-button--cream {
  background: var(--index-gold-radiant);
  color: var(--index-green-deep);
}
.index-button--cream:hover { background: var(--index-white); }

/* =========================================================
   HEADER — copied verbatim from about.css so index.html's
   header is pixel-identical to about.html's. Uses the
   about- namespaced tokens/classes below; do not rename.
   ========================================================= */
:root{
  --about-cream: #F9CE04;
  --about-gold-radiant: linear-gradient(90deg, #997334 0%, #F9CE04 13%, #C6A54E 36%, #9B7636 50%, #F8CC0E 63%, #C6A54E 86%, #997334 100%);
  --about-cream-soft: #FDF7DE;
  --about-green: #054F1E;
  --about-green-deep: #043916;
  --about-gray: #939598;
  --about-dark: #262729;
  --about-white: #FDFBF6;

  --about-display: 'Hando Trial', 'Arial Black', 'Helvetica Neue', sans-serif;
  --about-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --about-container: 1240px;
  --about-gutter: clamp(24px, 6vw, 96px);
  --about-radius: 28px;
  --about-radius-sm: 14px;

  --about-ease: cubic-bezier(.4,0,.2,1);
}

.about-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--about-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform .35s var(--about-ease), background-color .3s var(--about-ease), color .3s var(--about-ease), border-color .3s var(--about-ease);
  white-space: nowrap;
}
.about-button-primary{
  background: var(--about-green);
  color: var(--about-white);
}
.about-button-primary:hover{ background: var(--about-green-deep); transform: translateY(-2px); }
.about-logo, .about-footer-logo{
  display: flex;
  align-items: center;
}

/* =========================================================
   HOMEPAGE CONTENT — redesigned editorial layout
   ========================================================= */

/* ---------- Hero ---------- */
.index-hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.index-hero::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -14%;
  width: 50%;
  height: 120%;
  background: var(--index-gold-radiant);
  opacity: 0.10;
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  z-index: 0;
  pointer-events: none;
}
.index-hero-inner {
  max-width: var(--index-max-width);
  margin: 0 auto;
  padding: 56px 32px 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.index-hero-line { display: block; }
.index-hero-heading {
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.8vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 16px 0 26px;
  color: var(--index-dark);
}
.index-hero-line--accent { color: var(--index-green); }

.index-hero-text {
  font-size: 18px;
  line-height: 1.65;
  max-width: 460px;
  color: rgba(38, 39, 41, 0.82);
  margin-bottom: 34px;
}

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

/* Editorial photo visual with subtle green overlay + gold accent */
.index-hero-visual { position: relative; min-height: 420px; }
.index-hero-photo{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--index-radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(5, 79, 30, 0.35);
}
.index-hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.index-hero-photo-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,79,30,0.04) 0%, rgba(4,57,22,0.30) 100%);
}
.index-hero-photo-accent{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--index-gold-radiant);
}

.index-hero-badge {
  position: relative;
  z-index: 2;
  margin: -32px auto 0;
  background: var(--index-dark);
  color: var(--index-cream);
  border-radius: var(--index-radius-md);
  padding: 20px 26px;
  max-width: 300px;
  box-shadow: 0 20px 40px -12px rgba(38, 39, 41, 0.45);
}
.index-hero-badge-number {
  display: block;
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--index-cream);
  margin-bottom: 6px;
}
.index-hero-badge-label {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(237, 218, 187, 0.8);
}

/* ---------- Trust / Introduction ---------- */
.index-intro { padding: 96px 0; }
.index-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}
.index-intro-head .index-section-heading { max-width: 380px; }
.index-intro-body { position: relative; padding-left: 40px; }
.index-intro-rule {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--index-gold-radiant);
}
.index-intro-text {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(38, 39, 41, 0.8);
  max-width: 620px;
}

/* ---------- Services ---------- */
.index-services {
  padding: 96px 0;
  position: relative;
  background: var(--index-cream-soft);
}
.index-section-head { margin-bottom: 56px; max-width: 720px; }
.index-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.index-service-card {
  background: var(--index-cream-soft);
  border-radius: var(--index-radius-md);
  padding: 40px 32px;
  border: 1px solid rgba(5, 79, 30, 0.08);
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.index-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(38, 39, 41, 0.18);
  border-top-color: var(--index-cream);
}
.index-service-card--accent { background: var(--index-green); border-color: var(--index-green); }
.index-service-card--accent .index-service-number,
.index-service-card--accent .index-service-title { color: var(--index-white); }
.index-service-card--accent .index-service-text { color: rgba(255, 253, 248, 0.78); }
.index-service-card--accent .index-service-icon { background: rgba(255, 253, 248, 0.12); }
.index-service-card--accent .index-service-icon svg path,
.index-service-card--accent .index-service-icon svg circle,
.index-service-card--accent .index-service-icon svg rect { stroke: var(--index-cream); }
.index-service-card--accent .index-service-link { color: var(--index-cream); }
.index-service-number {
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--index-green);
  letter-spacing: 0.08em;
}
.index-service-icon {
  width: 52px;
  height: 52px;
  margin: 20px 0 22px;
  background: var(--index-green-tint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-service-icon svg { width: 24px; height: 24px; }
.index-service-title {
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: 21px;
  margin-bottom: 12px;
}
.index-service-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(38, 39, 41, 0.72);
  flex-grow: 1;
  margin-bottom: 24px;
}
.index-service-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--index-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
  margin-top: 12px;
}
.index-service-link:hover { gap: 12px; }

/* ---------- Workforce Solutions (split feature) ---------- */
.index-why { position: relative; }
.index-why-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.index-why-panel { padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.index-why-panel--dark {
  background:
    linear-gradient(165deg, rgba(4,57,22,0.78), rgba(5,79,30,0.72)),
    radial-gradient(circle at 85% 15%, rgba(249, 206, 4, 0.18), transparent 34%),
    url('https://isupportworldwide.com/wp-content/uploads/2024/11/Offshoring-and-Outsourcing-A-group-of-Filipino-professionals-collaborating.-iSupport-Worldwide.jpg') center/cover no-repeat,
    var(--index-green-deep);
}
.index-why-panel--dark .index-section-heading { max-width: 420px; }
.index-why-panel--light {
  background: var(--index-cream-soft);
  overflow: hidden;
}
.index-why-oversized {
  position: absolute;
  right: -10px;
  top: -30px;
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: 220px;
  line-height: 1;
  color: rgba(5, 79, 30, 0.05);
  z-index: 0;
  pointer-events: none;
}
.index-why-panel--light .index-intro-text { position: relative; z-index: 1; max-width: 440px; margin-bottom: 32px; }
.index-why-list { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; max-width: 440px; }
.index-why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--index-dark);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 79, 30, 0.15);
}
.index-why-item-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--index-gold-radiant);
  flex-shrink: 0;
}

/* ---------- Industries — editorial directory ---------- */
.index-industries {
  background:
    linear-gradient(165deg, rgba(4,20,10,0.80), rgba(38,39,41,0.76)),
    radial-gradient(circle at 88% 10%, rgba(249, 206, 4, 0.14), transparent 32%),
    url('https://mecaluxcom.cdnwm.com/documents/d/global/m38p06-tecnicas-almacenamiento?e=jpg') center/cover no-repeat,
    var(--index-dark);
  padding: 64px 0;
}
.index-industries-head { margin-bottom: 32px; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.index-industries-head .index-section-heading { margin: 0; max-width: none; font-size: clamp(22px, 2.4vw, 30px); }
.index-industries-list { border-top: 1px solid rgba(255, 253, 248, 0.14); }
.index-industry-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  position: relative;
  transition: padding-left 0.3s ease, background 0.3s ease;
}
.index-industry-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(5, 79, 30, 0.35);
  transition: width 0.3s ease;
  z-index: 0;
}
.index-industry-row:hover::before { width: 100%; }
.index-industry-row:hover { padding-left: 20px; }
.index-industry-row-index {
  position: relative; z-index: 1;
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--index-cream);
  letter-spacing: 0.06em;
  width: 26px;
  flex-shrink: 0;
}
.index-industry-row-name {
  position: relative; z-index: 1;
  font-family: var(--index-font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--index-white);
  flex-grow: 1;
}
.index-industry-row-arrow {
  position: relative; z-index: 1;
  font-size: 16px;
  color: var(--index-cream);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.index-industry-row:hover .index-industry-row-arrow { opacity: 1; transform: translateX(0); }

/* ---------- CTA sections ---------- */
.index-cta { padding: 96px 0; position: relative; }
.index-cta--green {
  background:
    radial-gradient(circle at 85% 20%, rgba(249, 206, 4, 0.16), transparent 30%),
    var(--index-green);
}
.index-cta--cream {
  background:
    radial-gradient(circle at 12% 20%, rgba(249, 206, 4, 0.18), transparent 34%),
    var(--index-cream-soft);
  border-top: 1px solid rgba(5, 79, 30, 0.08);
}
.index-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.index-cta-heading {
  font-family: var(--index-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 18px;
}
.index-cta-heading--light { color: var(--index-white); }
.index-cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(38, 39, 41, 0.75);
  margin-bottom: 0;
  max-width: 460px;
}

.index-final-cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 40px;
  text-align: left;
}
.index-final-cta::before {
  content: '';
  grid-column: 1 / -1;
  display: block;
  height: 2px;
  background: var(--index-gold-radiant);
  margin-bottom: 48px;
}
.index-final-cta-copy .index-cta-heading { text-align: left; margin-bottom: 14px; }
.index-final-cta-button { flex-shrink: 0; }
.index-footer-list li { margin-bottom: 12px; }
.index-footer-list a { font-size: 14px; color: rgba(255, 253, 248, 0.85); transition: color 0.2s ease; }
.index-footer-list a:hover { color: var(--index-cream); }

/* ---------- Scroll reveal ---------- */
.index-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.index-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .index-hero-inner { grid-template-columns: 1fr; padding-bottom: 64px; }
  .index-hero-visual { max-width: 420px; margin: 0 auto; }
  .index-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .index-services-grid { grid-template-columns: repeat(2, 1fr); }
  .index-why-grid-split { grid-template-columns: 1fr; }
  .index-why-panel { padding: 64px 32px; }
}
/* ---------- Mobile (compact, purpose-built layout) ---------- */
@media (max-width: 640px){
  .index-section-inner { padding: 0 20px; }

  /* Fonts scaled down for phones across the board */
  .index-section-heading { font-size: clamp(22px, 6.5vw, 28px); }

  /* Shorter hero: smaller photo, tighter spacing */
  .index-hero { padding-top: 28px; }
  .index-hero-inner { padding: 20px 20px 16px; gap: 24px; }
  .index-hero-heading { font-size: clamp(28px, 7.5vw, 36px); margin: 12px 0 14px; }
  .index-hero-text { font-size: 15px; margin-bottom: 20px; }

  /* Hero buttons: side by side in a single row, sized to fit */
  .index-hero-actions { flex-wrap: nowrap; gap: 8px; }
  .index-hero-actions .index-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 10px;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .index-hero-visual { max-width: 240px; margin: 0 auto; }
  .index-hero-photo { aspect-ratio: 4 / 3.4; }
  .index-hero-photo img { object-position: center 30%; }
  .index-hero-badge { margin-top: -16px; max-width: 200px; padding: 12px 16px; }
  .index-hero-badge-number { font-size: 24px; }
  .index-hero-badge-label { font-size: 10.5px; }

  /* Who We Are: smaller, tighter copy, pulled closer to the hero */
  .index-intro { padding: 20px 0 40px; }
  .index-intro-text { font-size: 14.5px; line-height: 1.65; }

  .index-services { padding: 48px 0; }
  .index-section-head { margin-bottom: 24px; }
  .index-services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .index-service-card { padding: 22px 18px; }
  .index-service-card:nth-child(3) { grid-column: 1 / -1; }
  .index-service-icon { width: 40px; height: 40px; margin: 12px 0 14px; }
  .index-service-title { font-size: 17px; margin-bottom: 8px; }
  .index-service-text { font-size: 13.5px; margin-bottom: 16px; }

  /* DOLE / values strip: compact 2x2 badge grid instead of a bordered list */
  .index-why-panel { padding: 40px 20px; }
  .index-why-list{ grid-template-columns: 1fr 1fr; gap: 10px; }
  .index-why-item{
    border-bottom: none;
    border-radius: 12px;
    padding: 14px;
    background: var(--index-white);
    box-shadow: 0 10px 22px -18px rgba(38, 39, 41, 0.35);
    font-size: 12.5px;
  }

  /* Industries: full-width numbered rows over the warehouse photo,
     matching the desktop "editorial directory" list design 1:1 */
  .index-industries { padding: 32px 0 40px; }
  .index-industries-head { margin-bottom: 20px; align-items: flex-start; }
  .index-industries-head .index-section-heading{ text-align: right; font-size: 22px; }
  .index-industries-list{
    border-top: 1px solid rgba(255, 253, 248, 0.16);
  }
  .index-industry-row{
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px 4px;
    border: none;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 0;
    background: none;
  }
  .index-industry-row::before{ display: block; background: rgba(5, 79, 30, 0.55); }
  .index-industry-row:active::before{ width: 100%; }
  .index-industry-row:active{ padding-left: 12px; padding-right: 12px; }
  .index-industry-row-index{
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    background: none;
    font-size: 11px;
  }
  .index-industry-row-name{ font-size: 14.5px; line-height: 1.3; flex-grow: 1; }
  .index-industry-row-arrow{
    opacity: 0;
    transform: translateX(-8px);
    align-self: center;
    margin-top: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .index-industry-row:active .index-industry-row-arrow{ opacity: 1; transform: translateX(0); }

  .index-cta { padding: 48px 0; }
  .index-final-cta { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .index-final-cta::before { margin-bottom: 24px; }
  .index-final-cta-copy .index-cta-heading { text-align: center; }
  .index-final-cta-button { width: 100%; text-align: center; }
  .index-cta-inner .index-button { width: 100%; }
}

/* =========================================================
   GLOBAL HEADER & FOOTER — UNIFIED REDESIGN
   (Overrides earlier rules of the same selectors below.
   Page-specific content/buttons above are untouched.)
   ========================================================= */

/* ---------- Header ---------- */
.about-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--about-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: box-shadow .25s ease;
}
.about-header.about-header-scrolled{
  box-shadow: 0 4px 18px rgba(4, 20, 10, 0.08);
}
.about-header-inner{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 15px 25px;
}
.about-logo{ display: flex; align-items: center; margin-right: auto; }
.about-logo-img{
  height: 70px;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.about-logo-img-mark{ display: none; }

.about-nav-list{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-nav-link{
  position: relative;
  display: inline-block;
  padding: 6px 1px;
  font-family: var(--about-body);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color .2s ease;
}
.about-nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--about-green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.about-nav-link:hover{ color: var(--about-cream); }
.about-nav-link:hover::after,
.about-nav-link-active::after{ transform: scaleX(1); }
.about-nav-link-active{ color: var(--about-cream); }
.about-nav-link:focus-visible{
  outline: 2px solid var(--about-cream);
  outline-offset: 4px;
  border-radius: 2px;
}

.about-header-actions{
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-header-actions .about-button-primary{
  padding: 15px 25px;
  font-size: 15px;
}

.about-hamburger{
  display: none;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.about-hamburger:focus-visible{
  outline: 2px solid var(--about-green);
  outline-offset: 2px;
  border-radius: 4px;
}
.about-hamburger-line{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--about-cream);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.about-hamburger.about-hamburger-open .about-hamburger-line:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.about-hamburger.about-hamburger-open .about-hamburger-line:nth-child(2){ opacity: 0; }
.about-hamburger.about-hamburger-open .about-hamburger-line:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.about-mobile-nav{
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: var(--about-green-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 24px;
  transition: max-height .3s ease, padding .3s ease;
}
.about-mobile-nav.about-mobile-nav-open{
  max-height: 520px;
  padding: 18px 24px 24px;
}
.about-mobile-nav-list{
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.about-mobile-nav-link{
  display: block;
  padding: 12px 4px;
  font-family: var(--about-body);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.about-mobile-nav-link-active{ color: var(--about-cream); }
.about-mobile-cta{ width: 100%; text-align: center; }

/* Gold CTA button on green header/mobile-nav backgrounds */
.about-header-actions .about-button-primary,
.about-mobile-nav .about-button-primary{
  background: var(--about-gold-radiant);
  color: var(--about-green-deep);
  border-color: transparent;
}
.about-header-actions .about-button-primary:hover,
.about-mobile-nav .about-button-primary:hover{
  background: var(--about-cream-soft);
  color: var(--about-green-deep);
}

@media (max-width: 1024px){
  .about-nav{ display: none; }
  .about-hamburger{ display: flex; }
  .about-mobile-nav{ display: flex; }
  .about-header-actions .about-button-primary{ display: none; }
  .about-header-inner{ padding: 15px 20px; }
  .about-logo-img{ height: 38px; }
}

/* =========================================================
   GLOBAL FOOTER
   (Header markup on index.html reuses the .about-header
   classes defined earlier in this file, so no separate
   header rules are needed here.)
   ========================================================= */

/* ---------- Footer ---------- */
.index-footer{
  background: var(--index-green-deep);
  padding: clamp(52px, 6vw, 76px) 32px 28px;
}
.index-footer-top{
  max-width: var(--index-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.index-footer-brand{ max-width: 240px; }
.index-footer-logo, .index-logo, .index-footer-logo{ display: inline-flex; }
.index-footer-logo-img{
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.index-footer-desc{
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}
.index-footer-heading{
  font-family: var(--index-font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--index-cream);
  margin-bottom: 18px;
}
.index-footer-list{ display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.index-footer-link{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color .2s ease;
}
.index-footer-link:hover{ color: var(--index-cream); }
.index-footer-text{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.60);
}
.index-footer-bottom{
  max-width: var(--index-max-width);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.index-footer-copyright{
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.48);
}
.index-footer-social{ display: flex; gap: 10px; }
.index-social-link{
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.index-social-link:hover{
  background: var(--index-green);
  border-color: var(--index-green);
  color: var(--index-white);
}

@media (max-width: 1024px){
  .index-footer-top{ grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .index-footer-brand{ grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 640px){
  .index-footer{ padding: 32px 20px 24px; }
  .index-footer-top{
    grid-template-columns: 1fr;
    border-bottom: none;
    padding-bottom: 0;
    justify-items: center;
    text-align: center;
  }
  .index-footer-brand{ max-width: none; }
  .index-footer-desc{ display: none; }
  .index-footer-col{ display: none; }
  .index-footer-bottom{
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    padding-top: 18px;
  }
}
