/* ============================================================================
   DESIGN TOKENS  —  edit these to retheme the entire page
   ============================================================================ */
:root {
  /* Colors */
  --c-navy:        #0F1E4D;
  --c-navy-light:  #1E3A6E;
  --c-navy-dark:   #081430;
  --c-gold:        #3BA9D9;
  --c-gold-light:  #5DC8E8;
  --c-cream:       #F4F8FC;
  --c-cream-deep:  #E1ECF5;
  --c-white:       #FFFFFF;
  --c-text:        #0F1E4D;
  --c-muted:       #6B7E95;
  --c-border:      #e3e6ec;
  --c-terracotta:  #3BA9D9; /* Used for Shop accent on tile */

  /* Typography */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:    1475px;
  --pad-x:    48px;
  --radius:   4px;

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   RESET + BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

/* ============================================================================
   ANNOUNCEMENT BAR (above nav)  —  optional, easy to hide
   ============================================================================ */
.announce {
  background: var(--c-navy-dark);
  color: var(--c-cream);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px var(--pad-x);
}
.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

    .loading-overlay.show {
        display: flex;
    }

.spinner {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--saffron);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.announce strong { color: var(--c-gold-light); font-weight: 600; }

/* ============================================================================
   HEADER NAV
   ============================================================================ */
.gw-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255,255,255,0.95);
  padding: 0 var(--pad-x);
}
.gw-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.gw-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.gw-nav-menu {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.gw-nav-menu a {
  position: relative;
  padding: 4px 0;
}
.gw-nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.gw-nav-menu a:hover { color: var(--c-gold); }
.gw-nav-menu a:hover::after { transform: scaleX(1); }
.gw-nav-right {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px;
}
.gw-signin {
  padding: 9px 18px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.gw-signin:hover {
  border-color: var(--c-navy);
  background: var(--c-navy);
  color: var(--c-white);
}

/* ---- Sign-in dropdown ---------------------------------------------- */
.gw-signin-wrap {
  position: relative;
  display: inline-block;
}
.gw-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gw-signin-caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}
.gw-signin-wrap.is-open .gw-signin-caret {
  transform: translateY(1px) rotate(-135deg);
  opacity: 1;
}
.gw-signin-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 280px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  box-shadow: 0 18px 44px -12px rgba(15, 30, 77, 0.18),
              0 4px 12px -2px rgba(15, 30, 77, 0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease),
              transform 0.2s var(--ease),
              visibility 0s linear 0.2s;
  z-index: 100;
}
.gw-signin-wrap.is-open .gw-signin-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease),
              transform 0.2s var(--ease),
              visibility 0s linear 0s;
}
.gw-signin-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 4px;
  color: var(--c-text);
  text-decoration: none;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.gw-signin-option + .gw-signin-option {
  margin-top: 2px;
}
.gw-signin-option:hover {
  background: var(--c-cream);
}
.gw-signin-option-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream);
  color: var(--c-navy);
  border-radius: 4px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.gw-signin-option-icon svg {
  width: 18px; height: 18px;
}
.gw-signin-option:hover .gw-signin-option-icon {
  background: var(--c-navy);
  color: var(--c-white);
}
.gw-signin-option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.gw-signin-option-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
}
.gw-signin-option-sub {
  font-size: 11.5px;
  color: var(--c-muted);
  font-weight: 400;
}

.gw-burger {
  display: none;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.gw-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-navy);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
/* Animate to an X when the menu is open (main.js sets aria-expanded="true") */
.gw-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gw-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.gw-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================================
   HERO
   ============================================================================ */
.gw-hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-white) 100%);
  padding: 110px var(--pad-x) 90px;
  overflow: hidden;
}
.gw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(59,169,217,0.10) 1.5px, transparent 2.5px),
    radial-gradient(circle at 38% 65%, rgba(59,169,217,0.07) 1px, transparent 2px),
    radial-gradient(circle at 82% 38%, rgba(59,169,217,0.10) 1.5px, transparent 2.5px),
    radial-gradient(circle at 65% 78%, rgba(59,169,217,0.07) 1px, transparent 2px),
    radial-gradient(circle at 92% 12%, rgba(59,169,217,0.06) 1px, transparent 2px);
  background-size: 90px 90px, 130px 130px, 70px 70px, 110px 110px, 140px 140px;
  opacity: 0.7;
  pointer-events: none;
}
.gw-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}
.gw-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 26px;
  padding-left: 44px;
  position: relative;
}
.gw-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 32px; height: 1px;
  background: var(--c-gold);
}
.gw-hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--c-navy);
  max-width: 920px;
  margin-bottom: 28px;
  /* Optical sizing for Fraunces */
  font-variation-settings: "opsz" 144;
}
.gw-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
}
.gw-hero .sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 660px;
}
.gw-scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
}
.gw-scroll-hint::after {
  content: '';
  width: 1px; height: 24px;
  background: var(--c-muted);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================================
   STOREFRONT TILES
   ============================================================================ */
.gw-tiles {
  padding: 40px var(--pad-x) 100px;
  background: var(--c-white);
}
.gw-tiles-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.gw-tiles-head {
  text-align: center;
  margin-bottom: 56px;
}
.gw-tiles-head .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gw-tiles-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}
.gw-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.gw-tile {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 52px 44px 44px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  text-decoration: none;
}
.gw-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(15, 30, 77, 0.25);
}
/* Business tile  —  navy */
.gw-tile-business {
  background:
    radial-gradient(ellipse at top right, rgba(59,169,217,0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: var(--c-white);
}
.gw-tile-business .grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(135deg, transparent, black);
}
/* Shop tile  —  cream */
.gw-tile-shop {
  background:
    radial-gradient(ellipse at top right, rgba(59,169,217,0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-deep) 100%);
  color: var(--c-navy);
}
.gw-tile-shop .pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,169,217,0.08) 1.5px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
  mask-image: linear-gradient(315deg, transparent, black);
}
.gw-tile-content {
  position: relative;
  z-index: 1;
}
.gw-tile-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.gw-tile-business .gw-tile-eyebrow { color: var(--c-gold-light); }
.gw-tile-shop .gw-tile-eyebrow { color: #1E5C96; }
.gw-tile h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.gw-tile p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 380px;
}
.gw-tile-business p { color: rgba(255,255,255,0.78); }
.gw-tile-shop p { color: #1E3A6E; }
.gw-tile-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.gw-tile-business .gw-tile-cta { color: var(--c-gold-light); }
.gw-tile-shop .gw-tile-cta { color: var(--c-navy); }
.gw-tile-cta .arrow { transition: transform 0.3s var(--ease); }
.gw-tile:hover .gw-tile-cta .arrow { transform: translateX(8px); }

/* ============================================================================
   FACTS STRIP
   ============================================================================ */
.gw-facts {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 60px var(--pad-x);
}
.gw-facts-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 56px;
}
.gw-fact {
  border-left: 2px solid var(--c-gold);
  padding-left: 20px;
}
.gw-fact .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gw-fact .value {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.3;
}

/* ============================================================================
   HOW WE WORK
   ============================================================================ */
.gw-work {
  padding: 110px var(--pad-x);
  background: var(--c-cream);
}
.gw-work-inner { max-width: var(--max-w); margin: 0 auto; }
.gw-work-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.gw-work-head .left .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gw-work-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.gw-work-head h2 em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 500;
}
.gw-work-head .right p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-muted);
  max-width: 400px;
}
.gw-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.gw-work-item {
  padding-top: 26px;
  border-top: 2px solid var(--c-navy);
  position: relative;
}
.gw-work-item .num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--c-gold);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.gw-work-item h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--c-navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.gw-work-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-muted);
}

/* ============================================================================
   FOR PARTNERS  —  three-column proposition (manufacturers, B2B, retailers)
   ============================================================================ */
.gw-partners {
  padding: 100px var(--pad-x);
  background: var(--c-white);
}
.gw-partners-inner { max-width: var(--max-w); margin: 0 auto; }
.gw-partners-head {
  text-align: center;
  margin-bottom: 60px;
}
.gw-partners-head .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gw-partners-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 3.5vw, 42px);
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.gw-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gw-partner-card {
  padding: 36px 32px;
  background: var(--c-cream);
  border-radius: 6px;
  border: 1px solid var(--c-border);
  transition: all 0.3s var(--ease);
}
.gw-partner-card:hover {
  background: var(--c-white);
  border-color: var(--c-gold);
  transform: translateY(-3px);
}
.gw-partner-card .icon {
  width: 48px; height: 48px;
  background: var(--c-navy);
  color: var(--c-gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 24px;
}
.gw-partner-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.gw-partner-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.gw-partner-card .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 6px;
}
.gw-partner-card .link:hover { color: var(--c-gold); }

/* ============================================================================
   TRUST STRIP
   ============================================================================ */
.gw-trust {
  background: var(--c-cream);
  padding: 56px var(--pad-x);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.gw-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.gw-trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.gw-trust-logos {
  display: flex;
  gap: 44px;
  align-items: center;
  flex-wrap: wrap;
}
.gw-trust-logos span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-navy);
  letter-spacing: 0.02em;
  opacity: 0.6;
  transition: opacity 0.2s var(--ease);
}
.gw-trust-logos span:hover { opacity: 1; }
.gw-trust-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.gw-trust-logos .divider {
  width: 1px; height: 18px;
  background: var(--c-border);
}

/* ============================================================================
   CTA BAND  —  partnership inquiry
   ============================================================================ */
.gw-cta-band {
  background: var(--c-navy);
  background-image:
    radial-gradient(ellipse at top right, rgba(59,169,217,0.18) 0%, transparent 50%);
  color: var(--c-white);
  padding: 90px var(--pad-x);
  text-align: center;
}
.gw-cta-band-inner { max-width: 800px; margin: 0 auto; }
.gw-cta-band h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.gw-cta-band h2 em { font-style: italic; color: var(--c-gold-light); font-weight: 500; }
.gw-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.gw-cta-band .btns {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.gw-btn-primary {
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.gw-btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(59,169,217,0.5);
}
.gw-btn-ghost {
  background: transparent;
  color: var(--c-white);
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.gw-btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.gw-footer {
  background: var(--c-navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px var(--pad-x) 32px;
}
.gw-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gw-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.gw-footer-brand-img {
  display: block;
  height: 26px;
  width: auto;
  /* Flatten the blue-gradient brand logo to white for the dark footer bg */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.gw-footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.gw-footer-social {
  display: flex; gap: 12px;
}
.gw-footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease);
}
.gw-footer-social a svg {
  width: 15px;
  height: 15px;
  display: block;
}
.gw-footer-social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.gw-footer h5 {
  color: var(--c-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gw-footer ul li {
  margin-bottom: 11px;
  font-size: 13px;
}
.gw-footer ul li a:hover { color: var(--c-white); }
.gw-footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.gw-footer-bottom a:hover { color: var(--c-white); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .gw-nav-menu { display: none; }
  .gw-burger { display: flex; }
  .gw-signin-dropdown { right: -8px; min-width: 260px; }
  .gw-tiles-grid { grid-template-columns: 1fr; }
  .gw-facts-inner { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
  .gw-work-head { grid-template-columns: 1fr; gap: 24px; }
  .gw-work-grid { grid-template-columns: 1fr; gap: 36px; }
  .gw-partners-grid { grid-template-columns: 1fr; }
  .gw-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gw-trust-inner { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .gw-hero { padding: 70px var(--pad-x) 70px; }
  .gw-tile { padding: 40px 28px 36px; min-height: 320px; }
  .gw-facts-inner { grid-template-columns: 1fr; }
  .gw-footer-inner { grid-template-columns: 1fr; }
  .gw-tiles-head { margin-bottom: 36px; }
  .gw-cta-band { padding: 60px var(--pad-x); }
  .gw-signin { padding: 7px 12px; font-size: 12px; }
  .gw-nav-right { gap: 10px; }
}

/* ============================================================================
   OPTION J — LAYERED GEOMETRIC COMPOSITION
   ============================================================================ */
.gw-hero { padding: 40px var(--pad-x) 50px; }
.gw-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;   /* 60% / 40% */
  gap: 60px;
  align-items: center;
}
.gw-hero-text h1 { margin-bottom: 24px; max-width: 700px; }
.gw-hero-text .sub { max-width: 700px; }
.gw-hero-image {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}
.gw-hero-image .orb {
  position: absolute;
  top: 0; right: 0;
  width: 78%; aspect-ratio: 1;
  background: var(--c-gold);
  border-radius: 50%;
  z-index: 1;
}
.gw-hero-image .sq {
  position: absolute;
  bottom: 6%; left: 6%;
  width: 22%; aspect-ratio: 1;
  background: var(--c-navy);
  border-radius: 6px;
  z-index: 1;
  transform: rotate(-8deg);
}
.gw-hero-image .dot {
  position: absolute;
  top: 8%; left: 18%;
  width: 14px; height: 14px;
  background: var(--c-gold);
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 0 0 8px rgba(59, 169, 217, 0.2);
}
.gw-hero-image .card {
  position: absolute;
  top: 18%; left: 14%;
  width: 66%; aspect-ratio: 1;
  background: var(--c-cream);
  border-radius: 12px;
  box-shadow: 0 24px 48px -16px rgba(15, 30, 77, 0.25);
  padding: 18%;
  z-index: 3;
}
.gw-hero-image .card svg { width: 100%; height: 100%; display: block; }
.gw-hero-ctas {
  display: flex; align-items: center; gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.gw-hero-ctas .btn-primary {
  background: var(--c-gold);
  color: var(--c-white);
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: all 0.2s var(--ease);
}
.gw-hero-ctas .btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(59, 169, 217, 0.45);
}
.gw-hero-ctas .btn-link {
  color: var(--c-navy);
  padding: 15px 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.gw-hero-ctas .btn-link:hover { color: var(--c-gold); border-bottom-color: var(--c-gold); }

/* Orange boost: main CTA band button becomes pill too, for consistency */
.gw-btn-primary { border-radius: 999px; }
.gw-btn-ghost { border-radius: 999px; }
/* Orange boost: tile CTA arrows sit in an orange circle */
.gw-tile-cta .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-gold);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}
.gw-tile-shop .gw-tile-cta .arrow { color: var(--c-white); background: var(--c-gold); }

@media (max-width: 900px) {
  .gw-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .gw-hero-image { max-width: 380px; margin: 0 auto; }
}


/* ============================================================================
   BRAND LOGO IMAGE (nav)
   ============================================================================ */
.gw-logo-img { padding: 0; }
.gw-brand-img {
  display: block;
  height: 26px;
  width: auto;
}
@media (max-width: 600px) {
  .gw-brand-img { height: 21px; }
  .gw-footer-brand-img { height: 21px; }

    


}

/* ============================================================================
   MOBILE NAV — open state (toggled by JS via .is-open)
   ============================================================================ */
@media (max-width: 900px) {
  .gw-nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-white);
    padding: 24px;
    border-bottom: 1px solid var(--c-border);
  }
}

/* ============================================================================
   AUTH PAGES  (signin.html, signup.html)
   ============================================================================ */
.gw-auth {
  min-height: calc(100vh - 200px);
  background: var(--c-cream);
  padding: 80px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gw-auth-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 56px 56px 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 48px -24px rgba(15, 30, 77, 0.12);
}
.gw-auth-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.gw-auth-card h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.15;
  color: var(--c-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.gw-auth-card h1 em {
  font-style: italic;
  color: var(--c-gold);
}
.gw-auth-intro {
  color: var(--c-muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.gw-auth-form { display: flex; flex-direction: column; gap: 20px; }
.gw-auth-field { display: flex; flex-direction: column; gap: 8px; }
.gw-auth-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.02em;
}
.gw-auth-field input {
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.gw-auth-field input:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(59, 169, 217, 0.18);
}
.gw-auth-field input::placeholder { color: #a3aec0; }
.gw-auth-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--c-gold);
  color: var(--c-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.gw-auth-submit:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(59, 169, 217, 0.45);
}
.gw-auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 22px;
  color: var(--c-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gw-auth-divider::before,
.gw-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.gw-auth-alt {
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
}
.gw-auth-alt a {
  color: var(--c-navy);
  font-weight: 600;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
}
.gw-auth-alt a:hover { color: var(--c-gold); }
.gw-auth-legal {
  margin-top: 20px;
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.5;
}
.gw-auth-legal a { color: var(--c-navy); border-bottom: 1px solid var(--c-border); }
.gw-auth-legal a:hover { color: var(--c-gold); border-bottom-color: var(--c-gold); }

/* Minimal footer used on auth pages */
.gw-footer-mini {
  border-top: 1px solid var(--c-border);
  padding: 24px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--c-muted);
  background: var(--c-white);
}
.gw-footer-mini a { color: var(--c-muted); }
.gw-footer-mini a:hover { color: var(--c-gold); }
.gw-footer-mini .links a { margin-left: 16px; }

@media (max-width: 600px) {
  .gw-auth { padding: 40px 20px; }
  .gw-auth-card { padding: 36px 28px 32px; }
  .gw-auth-card h1 { font-size: 28px; }
  .gw-footer-mini { flex-direction: column; text-align: center; }
  .gw-footer-mini .links a { margin: 0 8px; }
}

/* ============================================================================
   ACCOUNT INNER PAGES  (dashboard, profile, change-password, shipments, notifications)
   ============================================================================ */
.gw-account {
  background: var(--c-cream);
  min-height: calc(100vh - 200px);
  padding: 48px var(--pad-x);
}

/* Main content */
.gw-account-header { margin-bottom: 24px; }
.gw-account-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.gw-account-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
.gw-account-title em { font-style: italic; color: var(--c-gold); }
.gw-account-sub {
  margin-top: 8px;
  color: var(--c-muted);
  font-size: 15px;
}

.gw-account-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 20px;
}
.gw-account-card h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.gw-account-card .desc {
  color: var(--c-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Status pills */
.gw-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.gw-pill.in-transit { background: #e8f4fb; color: #1d6c97; }
.gw-pill.delivered  { background: #e6f4ec; color: #1f8a5a; }
.gw-pill.processing { background: #fdf6e3; color: #9c6f1f; }
.gw-pill.delayed    { background: #fbebe8; color: #a23929; }

/* Action buttons (used in tracking-detail card footers) */
.gw-account-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.gw-account-actions.stacked {
  flex-direction: column;
  align-items: stretch;
}
.gw-account-actions.stacked .gw-account-btn {
  text-align: center;
}
.gw-account-btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.gw-account-btn.primary {
  background: var(--c-gold);
  color: var(--c-white);
}
.gw-account-btn.primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(59, 169, 217, 0.5);
}
.gw-account-btn.ghost {
  background: transparent;
  color: var(--c-navy);
  border: 1px solid var(--c-border);
}
.gw-account-btn.ghost:hover { border-color: var(--c-navy); }

/* Responsive */
@media (max-width: 600px) {
  .gw-account { padding: 24px 16px; }
  .gw-account-card { padding: 24px 20px; }
  .gw-account-title { font-size: 28px; }
}

/* ============================================================================
   SHIPMENT STATUS VIEW  (track.html)
   ============================================================================ */
.gw-status-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 18px;
  transition: color 0.15s var(--ease);
}
.gw-status-back:hover { color: var(--c-navy); }

.gw-status-head {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.gw-status-ref {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.gw-status-tracking {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.gw-status-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}
.gw-status-route .arrow { color: var(--c-gold); font-weight: 600; }
.gw-status-route .city { font-weight: 600; }
.gw-status-eta {
  text-align: right;
}
.gw-status-eta .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.gw-status-eta .date {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.gw-status-eta .pill { display: inline-block; }

.gw-status-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Vertical timeline */
.gw-timeline { padding: 4px 0; }
.gw-timeline-item {
  position: relative;
  padding: 0 0 28px 36px;
}
.gw-timeline-item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 22px;
  bottom: -4px;
  width: 2px;
  background: var(--c-border);
}
.gw-timeline-item:last-child { padding-bottom: 0; }
.gw-timeline-item:last-child::before { display: none; }
.gw-timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gw-timeline-dot svg { width: 12px; height: 12px; color: var(--c-white); }

/* Completed steps */
.gw-timeline-item.done .gw-timeline-dot {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.gw-timeline-item.done::before { background: var(--c-gold); }

/* Current step */
.gw-timeline-item.current .gw-timeline-dot {
  background: var(--c-navy);
  border-color: var(--c-navy);
  box-shadow: 0 0 0 4px rgba(15, 30, 77, 0.12);
}
.gw-timeline-item.current::before { background: var(--c-border); }

.gw-timeline-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gw-timeline-title {
  font-weight: 600;
  color: var(--c-navy);
  font-size: 15px;
  margin-bottom: 3px;
}
.gw-timeline-item.current .gw-timeline-title { color: var(--c-navy); }
.gw-timeline-item:not(.done):not(.current) .gw-timeline-title { color: var(--c-muted); }
.gw-timeline-loc {
  font-size: 13px;
  color: var(--c-muted);
}

/* Detail list (definition-list style) */
.gw-detail-list { display: flex; flex-direction: column; }
.gw-detail-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
}
.gw-detail-row:last-child { border-bottom: 0; }
.gw-detail-row:first-child { padding-top: 0; }
.gw-detail-row dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  align-self: center;
}
.gw-detail-row dd { color: var(--c-text); font-weight: 500; }

@media (max-width: 760px) {
  .gw-status-head { grid-template-columns: 1fr; }
  .gw-status-eta { text-align: left; }
  .gw-status-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   VCONNECT USA  —  INNER PAGE STYLES
   ----------------------------------------------------------------------------
   This file EXTENDS css/style.css. It reuses the same design tokens
   (--c-navy, --c-gold, --f-display, etc.) and only adds components that
   the homepage didn't need: compact page hero, forms, FAQ accordion,
   prose for legal pages, job cards, timeline, etc.

   Load order in <head>:
       <link rel="stylesheet" href="css/style.css">
       <link rel="stylesheet" href="css/pages.css">
   ============================================================================ */


/* ============================================================================
   SHARED: PAGE HERO (compact hero for all inner pages)
   ============================================================================ */
.page-hero {
  background:
    radial-gradient(ellipse at top right, rgba(59,169,217,0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: var(--c-white);
  padding: 80px var(--pad-x) 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(135deg, transparent, black 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .crumbs {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.page-hero .crumbs a { color: var(--c-gold); opacity: 0.75; }
.page-hero .crumbs a:hover { opacity: 1; }
.page-hero .crumbs .sep { margin: 0 10px; opacity: 0.4; }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 880px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--c-gold-light); }
.page-hero .lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 1475px;
}

/* ============================================================================
   SHARED: PAGE BODY WRAPPERS
   ============================================================================ */
.page-section {
  padding: 90px var(--pad-x);
  background: var(--c-white);
}
.page-section.alt { background: var(--c-cream); }
.page-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-section-narrow {
  max-width: 860px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--c-gold); }
.section-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-muted);
  max-width: 620px;
  margin-bottom: 48px;
}
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================================
   SHARED: PROSE (for long-form legal / policy / about pages)
   ============================================================================ */
.prose {
  font-size: 16px;
  line-height: 1.75;
  color: #2a3754;
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-navy);
  margin-top: 1.6em;
  margin-bottom: 0.4em;
  line-height: 1.25;
}
.prose h3:first-child { margin-top: 0; }
.prose p { color: #3a4866; }
.prose a { color: var(--c-gold); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--c-navy); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--c-gold); }
.prose strong { color: var(--c-navy); font-weight: 600; }
.prose .effective {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.prose blockquote {
  margin: 1.4em 0;
  padding: 18px 24px;
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
  font-style: italic;
  color: var(--c-navy);
}

/* ============================================================================
   SHARED: TWO-COLUMN SPLIT (about, sourcing, partnerships intros)
   ============================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.split.center { align-items: center; }

/* ============================================================================
   ABOUT: VALUES, STATS, MILESTONES
   ============================================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 34px 28px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  background: var(--c-white);
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(15,30,77,0.18);
}
.value-card .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.value-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.stat {
  border-left: 2px solid var(--c-gold);
  padding-left: 18px;
}
.stat .n {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 38px;
  color: var(--c-navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat .l {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--c-muted);
  text-transform: uppercase;
}

/* ============================================================================
   SOURCING & CAREERS: TIMELINE
   ============================================================================ */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--c-border);
}
.timeline-step {
  position: relative;
  padding-bottom: 36px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 13px; height: 13px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-cream), 0 0 0 5px var(--c-border);
}
.timeline-step .step-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-step h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-muted);
  max-width: 620px;
}

/* ============================================================================
   CAREERS: JOB LIST
   ============================================================================ */
.job-list {
  border-top: 1px solid var(--c-border);
}
.job-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s var(--ease);
}
.job-item:hover { background: var(--c-cream); }
.job-item .role {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
.job-item .dept,
.job-item .loc {
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}
.job-item .apply {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.job-item .apply:hover { color: var(--c-navy); }

/* ============================================================================
   CONTACT: GRID + INFO CARDS
   ============================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info .info-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-info .info-block:first-child { padding-top: 0; }
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.contact-info p,
.contact-info a {
  font-size: 15px;
  color: var(--c-navy);
  line-height: 1.55;
}
.contact-info a:hover { color: var(--c-gold); }
.contact-info .muted { color: var(--c-muted); font-size: 13px; margin-top: 4px; }

/* ============================================================================
   FORMS (contact, quote, careers apply)
   ============================================================================ */
.form-wrapper {
  padding: 36px;
  background: var(--c-cream);
  border-radius: 6px;
  border: 1px solid var(--c-border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field1 {
    display: flex;
    
}
.form-field.full { grid-column: 1 / -1; }
    .form-field1.half {
        grid-column: span 1;
    }


.form-field label .req {
    color: var(--c-gold);
    margin-left: 3px;
}

.form-field1 input
{
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--c-navy);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 12px 14px;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--c-gold); margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-navy);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(59,169,217,0.15);
}
.form-field .hint {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 6px;
}
.form-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.form-submit {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.form-submit:hover {
  background: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(59,169,217,0.45);
}
.form-note {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
}
.form-success {
  padding: 16px 20px;
  background: rgba(59,169,217,0.1);
  border-left: 3px solid var(--c-gold);
  color: var(--c-navy);
  font-size: 14px;
  margin-bottom: 18px;
  border-radius: 3px;
}
.form-success strong { color: var(--c-navy); }
@media (max-width: 600px) {
 



    .form-field1 {
        display: flex;
        flex-direction: column;
    }
}
/* ============================================================================
   FAQ ACCORDION (uses native <details>)
   ============================================================================ */
.faq-list { border-top: 1px solid var(--c-border); }
.faq-list details {
  border-bottom: 1px solid var(--c-border);
  padding: 22px 4px;
  transition: background 0.2s var(--ease);
}
.faq-list details[open] { background: var(--c-cream); padding-left: 18px; padding-right: 18px; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .answer {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}
.faq-list .answer p + p,
.faq-list .answer p + ul { margin-top: 10px; }
.faq-list .answer ul { padding-left: 20px; list-style: disc; }
.faq-list .answer li { margin-bottom: 6px; }

.faq-cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 56px 0 14px;
}
.faq-cat-label:first-child { margin-top: 0; }

/* ============================================================================
   TABLES (shipping rates, warranty periods)
   ============================================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
}
.data-table thead th {
  background: var(--c-cream);
  color: var(--c-navy);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.data-table tbody tr:hover { background: var(--c-cream); }
.data-table td { color: var(--c-muted); }
.data-table td:first-child { color: var(--c-navy); font-weight: 600; }

/* ============================================================================
   PRESS & MEDIA
   ============================================================================ */
.press-list { border-top: 1px solid var(--c-border); }
.press-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: start;
}
.press-item .date {
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 4px;
}
.press-item h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.press-item .source {
  font-size: 13px;
  color: var(--c-muted);
}
.press-item .read {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gold);
  white-space: nowrap;
}
.press-item .read:hover { color: var(--c-navy); }

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.kit-card {
  padding: 28px;
  background: var(--c-cream);
  border-radius: 6px;
  border: 1px solid var(--c-border);
  transition: all 0.3s var(--ease);
}
.kit-card:hover { border-color: var(--c-gold); background: var(--c-white); }
.kit-card h5 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.kit-card p {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.kit-card .dl {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================================
   ANCHOR OFFSET (used on headings with id= for sticky-header-aware jumps)
   ============================================================================ */
.anchor-offset { scroll-margin-top: 100px; }

/* ============================================================================
   ACTIVE NAV LINK
   ============================================================================ */
.gw-nav-menu a.is-active { color: var(--c-gold); }
.gw-nav-menu a.is-active::after { transform: scaleX(1); }

/* ============================================================================
   IN-CONTEXT LINK STYLING
   ============================================================================ */
/* Links inside the dark page-hero .lead paragraph */
.page-hero .lead a {
  color: var(--c-gold-light);
  border-bottom: 1px solid currentColor;
}
.page-hero .lead a:hover { color: var(--c-white); }

/* Gold inline links used in form notes / muted helper text */
.a-gold { color: var(--c-gold); }
.a-gold:hover { color: var(--c-navy); }

/* ============================================================================
   FORM HEADINGS (inside .form-wrapper)
   ============================================================================ */
.form-heading {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.form-heading.lg { font-size: 26px; margin-bottom: 8px; letter-spacing: -0.015em; }
.form-intro {
  color: var(--c-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ============================================================================
   UTILITY — spacing + alignment
   ============================================================================ */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.text-center { text-align: center; }

/* ============================================================================
   RESPONSIVE  —  matches breakpoints in style.css (900px, 600px)
   ============================================================================ */
@media (max-width: 900px) {
  .page-hero { padding: 56px var(--pad-x) 50px; }
  .page-section { padding: 64px var(--pad-x); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .track-box { grid-template-columns: 1fr; }
  .job-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 8px;
  }
  .job-item .apply { margin-top: 6px; }
  .press-item { grid-template-columns: 1fr; gap: 8px; }
  .press-item .date { padding-top: 0; }
  .kit-grid { grid-template-columns: 1fr; }
  .track-result .t-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 600px) {
  .form-wrapper { padding: 22px; }
  .page-hero h1 { font-size: 30px; }
  .stat-row { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 16px; }
  .prose { font-size: 15px; }
  .prose h2 { font-size: 22px; }
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 10px 10px; }
}

/* ============================================================================
   SMS / MOBILE PRIVACY NOTICE (callout box used on contact page)
   ============================================================================ */
.sms-notice {
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 4px;
}
.sms-notice-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--c-gold);
}
.sms-notice-head svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}
.sms-notice-head h5 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.sms-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
}

