/* ═══════════════════════════════════════════════════════════
   COURT OUTFITTERS — Design System
   Logo Colors: Navy #1B3A5C · Sage #7A8C6E · Cream #F0EBDC · Green #5C6E52
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Core brand — extracted from logo */
  --navy:       #1B3A5C;
  --navy-d:     #112436;
  --navy-m:     #24507e;
  --sage:       #7A8C6E;
  --sage-l:     #96A882;
  --sage-d:     #5C6E52;
  --cream:      #F0EBDC;
  --cream-d:    #E2DBCA;
  --gold:       #5C6E52; /* primary green — replaces former gold accent */
  --gold-d:     #4a5942; /* primary green dark */;
  --gold-l:     #7a9168;

  /* Neutrals */
  --ink:        #1A2030;
  --ink-mid:    #3A4055;
  --muted:      #7A849A;
  --surface:    #FAFAF7;
  --surface-2:  #F3F2EC;
  --border:     rgba(27,58,92,.1);
  --border-l:   rgba(255,255,255,.12);

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(27,58,92,.08);
  --sh-sm: 0 3px 16px rgba(27,58,92,.1);
  --sh-md: 0 8px 32px rgba(27,58,92,.14);
  --sh-lg: 0 20px 60px rgba(27,58,92,.18);
  --sh-xl: 0 32px 80px rgba(27,58,92,.22);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 100px;

  /* Spacing */
  --gutter:   clamp(1.25rem, 4vw, 2.5rem);
  --sec-pad:  clamp(5rem, 9vw, 8rem);
  --max-w:    1200px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--surface); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TYPE SCALE ─────────────────────────────────────────── */
.disp-xl { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2.6rem,5.5vw,4.8rem); line-height: 1.0; letter-spacing: -.03em; }
.disp-lg  { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.9rem,3.8vw,3.2rem); line-height: 1.07; letter-spacing: -.025em; }
.disp-md  { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.15; letter-spacing: -.015em; }
.eyebrow  { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-d); display: inline-block; }
.eyebrow-gold { color: var(--sage-d); }
.body-lg  { font-size: 1.1rem; line-height: 1.75; }
.body-sm  { font-size: .875rem; line-height: 1.6; }

/* ── PILL LABEL ─────────────────────────────────────────── */
.pill-label {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .9rem;
  background: rgba(122,140,110,.12);
  border: 1px solid rgba(122,140,110,.28);
  border-radius: var(--r-pill);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage-d);
}
.pill-label.gold { background: rgba(92,110,82,.12); border-color: rgba(92,110,82,.3); color: var(--sage-d); }
.pill-label.cream { background: rgba(240,235,220,.18); border-color: rgba(240,235,220,.35); color: var(--cream); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: all .22s cubic-bezier(.4,0,.2,1);
}
.btn-gold  { background: var(--sage-d); color: var(--navy-d); border-color: var(--sage-d); }
.btn-gold:hover { background: #4a5942; border-color: #4a5942; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,110,82,.35); }
.btn-navy  { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-d); border-color: var(--navy-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,58,92,.3); }
.btn-sage  { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-d); border-color: var(--sage-d); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.02rem; }
.btn-sm { padding: .6rem 1.3rem; font-size: .85rem; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section-pad { padding: var(--sec-pad) 0; }
.section-pad-sm { padding: calc(var(--sec-pad)*.6) 0; }
.text-center { text-align: center; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow, .section-header .pill-label { margin-bottom: .9rem; }
.section-header h2 { color: var(--navy); margin-bottom: .8rem; }
.section-header p  { color: var(--muted); max-width: 560px; font-size: 1rem; line-height: 1.72; }
.section-header.center { text-align: center; }
.section-header.center p { margin-inline: auto; }
.section-header.on-dark h2 { color: #fff; }
.section-header.on-dark p  { color: rgba(255,255,255,.6); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.co-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-d), var(--sage));
  border: none; opacity: .6;
}

/* ══════════════════════════════════════════════════════════
   NAV — tall, clear, premium
══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(14,28,44,.98);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 2px solid rgba(122,140,110,.4);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 var(--gutter);
  height: 76px;
  max-width: var(--max-w); margin: 0 auto;
}

/* ── LOGO BLOCK ──────────────────────────────────────────── */
.nav-logo {
  display: flex; align-items: center; 
  flex-shrink: 0; text-decoration: none;
  
}
/* The actual image — full color, no invert, clearly sized */
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  /* drop-shadow so it reads on dark bg without inverting colors */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.45));
  transition: transform .22s;
}
.nav-logo:hover img { transform: scale(1.05); }
/* Divider line between logo image and text */
.nav-logo-divider {
  width: 1px; height: 38px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
/* Text stack next to logo */
.nav-logo-text {
  display: flex; flex-direction: column; gap: .1rem;
}
.nav-logo-text .brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text .brand-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .62rem;
  color: var(--sage-d);
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── NAV LINKS ───────────────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: .15rem;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: .52rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  border-radius: var(--r-sm);
  border-bottom: 2px solid transparent;
  transition: color .18s, background .18s, border-color .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--sage-d); border-bottom-color: var(--sage-d); background: rgba(92,110,82,.06); }
.nav-cta { display: flex; gap: .75rem; flex-shrink: 0; align-items: center; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; padding: .25rem .4rem; line-height: 1; cursor: pointer; }
.nav-mobile {
  display: none; flex-direction: column;
  background: #0a1724;
  padding: .8rem var(--gutter) 1.2rem;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 2px solid rgba(122,140,110,.3);
}
.nav-mobile a {
  color: rgba(255,255,255,.72); font-size: .95rem; font-weight: 500;
  padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: .5rem;
}
.nav-mobile a:last-child { border-bottom: none; color: var(--sage-d); font-weight: 700; margin-top: .4rem; }
.nav-mobile.open { display: flex; }


/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 60%, #1e4a38 100%);
  padding: clamp(3.5rem,6vw,5.5rem) 0 clamp(3rem,5vw,4.5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(122,140,110,.04) 79px, rgba(122,140,110,.04) 80px),
    repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(122,140,110,.03) 79px, rgba(122,140,110,.03) 80px);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: .7rem; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; font-size: 42px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 580px; font-size: 1.05rem; line-height: 1.72; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; margin-bottom: 1.4rem; font-size: .78rem; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .18s; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════
   CARDS — FEATURES
══════════════════════════════════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }
.feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem;
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(122,140,110,.3); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.3rem;
}
.feature-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .45rem; }
.feature-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS (FIXED WIDTH & CENTERED)
══════════════════════════════════════════════════════════ */
.product-grid { 
  display: grid; 
  /* max-content નો ઉપયોગ કરવાથી કાર્ડની સાઈઝ ખેંચાશે નહીં, સેમ રહેશે */
  grid-template-columns: repeat(auto-fit, minmax(255px, max-content)); 
  gap: 1.5rem; 
  
  /* ઓછા કાર્ડ હશે ત્યારે સેન્ટરમાં આવી જશે */
  justify-content: center; 
}

.product-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  
  /* બધા કાર્ડની વિડ્થ એકસરખી રાખવા માટે */
  width: 100%;
  max-width: 255px; 
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(122,140,110,.25); }
.product-img { height: 215px; overflow: hidden; position: relative; background: var(--surface-2); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--navy); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .22rem .65rem; border-radius: var(--r-pill);
}
.product-badge.custom { background: var(--sage-d); color: var(--navy-d); }
.product-body { padding: 1.4rem; }
.product-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.product-body p  { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price .from { display: block; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.product-price strong { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.28rem; color: var(--navy); }
.btn-cart {
  background: var(--navy); color: #fff;
  padding: .58rem 1.15rem; border-radius: var(--r-pill);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .03em;
  cursor: pointer; border: none;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center;
}
.btn-cart:hover { background: var(--navy-d); transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════════════════ */
.filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .55rem 1.25rem; border-radius: var(--r-pill); cursor: pointer;
  border: 2px solid var(--border); background: #fff; color: var(--muted);
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ══════════════════════════════════════════════════════════
   TRUST BAND
══════════════════════════════════════════════════════════ */
.trust-band { background: var(--navy-d); padding: 3rem 0; }
.trust-grid  { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 1rem; text-align: center; }
.trust-item .trust-icon { font-size: 2rem; margin-bottom: .6rem; }
.trust-item h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: .25rem; }
.trust-item p  { font-size: .8rem; color: rgba(255,255,255,.42); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1.5rem; }
.testi-card {
  background: #fff; border-radius: var(--r-lg); padding: 2.2rem;
  border: 1px solid var(--border); box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--sh-md); }
.testi-quote { font-family: Georgia, serif; font-size: 3.2rem; line-height: .8; color: var(--sage-d); margin-bottom: .6rem; }
.stars { color: var(--sage-d); font-size: .9rem; letter-spacing: .04em; margin-bottom: .8rem; }
.testi-card > p { font-size: .94rem; line-height: 1.74; color: var(--ink-mid); flex: 1; margin-bottom: 1.6rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; padding-top: 1.2rem; border-top: 1px solid var(--cream-d); }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: .95rem;
}
.testi-author h5 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9rem; color: var(--navy); }
.testi-author span { font-size: .79rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   QUOTE FORM
══════════════════════════════════════════════════════════ */
.quote-wrap {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 50%, #1e3d2a 100%);
  padding: var(--sec-pad) 0; position: relative; overflow: hidden;
}
.quote-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 38px, rgba(122,140,110,.04) 38px, rgba(122,140,110,.04) 40px);
}
.quote-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.quote-info .eyebrow { margin-bottom: .7rem; }
.quote-info h2 { color: #fff; margin-bottom: 1rem; }
.quote-info p  { color: rgba(255,255,255,.6); margin-bottom: 2rem; line-height: 1.75; }
.quote-perks   { display: flex; flex-direction: column; gap: .75rem; }
.quote-perk    { display: flex; align-items: center; gap: .8rem; }
.quote-perk-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--sage-l); flex-shrink: 0; }
.quote-perk span{ color: rgba(255,255,255,.68); font-size: .9rem; }
.quote-form-box {
  background: #fff; border-radius: var(--r-lg); padding: 2.6rem;
  box-shadow: var(--sh-xl);
}
.quote-form-box h3 {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--navy);
  margin-bottom: 1.8rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-d);
}
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-mid); margin-bottom: .4rem; letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .78rem 1rem;
  border: 1.5px solid #dde2ec; border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--ink);
  background: var(--surface); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,140,110,.14); }
.form-group textarea { resize: vertical; min-height: 90px; }
.upload-zone {
  border: 2px dashed #c8cdd8; border-radius: var(--r-md); padding: 1.6rem;
  text-align: center; cursor: pointer; transition: border-color .2s, background .2s;
}
.upload-zone:hover { border-color: var(--sage); background: rgba(122,140,110,.04); }
.upload-zone .upload-icon { font-size: 1.8rem; margin-bottom: .45rem; }
.upload-zone p { font-size: .82rem; color: var(--muted); }
.upload-zone strong { color: var(--sage-d); }
.form-submit { width: 100%; margin-top: .6rem; font-size: 1.05rem; padding: 1.05rem; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .7rem; max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--sh-xs); }
.faq-q { width: 100%; background: none; border: none; padding: 1.3rem 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; cursor: pointer; text-align: left; }
.faq-q h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .97rem; color: var(--navy); }
.faq-chevron { font-size: 1.2rem; color: var(--sage); transition: transform .25s; flex-shrink: 0; font-weight: 300; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-item.open .faq-q { background: var(--surface-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 1.6rem 1.4rem; font-size: .89rem; color: var(--muted); line-height: 1.72; }

/* ══════════════════════════════════════════════════════════
   INDUSTRY CARDS
══════════════════════════════════════════════════════════ */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 1rem; }
.industry-card {
  background: #fff; border-radius: var(--r-md); padding: 1.7rem 1rem;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--sh-xs);
  transition: all .22s; cursor: pointer;
}
.industry-card:hover { border-color: var(--sage); box-shadow: var(--sh-md); transform: translateY(-4px); }
.industry-card:hover .ind-icon { background: var(--sage); }
.ind-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1rem; transition: background .22s;
}
.industry-card h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .88rem; color: var(--navy); }

/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--sage-d) 0%, var(--sage) 100%);
  padding: clamp(4rem,7.5vw,6rem) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -55%; left: -8%;
  width: 520px; height: 520px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -45%; right: -5%;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(0,0,0,.07); pointer-events: none;
}
.cta-band .eyebrow { color: rgba(255,255,255,.65); margin-bottom: .7rem; }
.cta-band h2  { color: #fff; margin-bottom: 1.1rem; position: relative; z-index: 2; }
.cta-band p   { color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 2.4rem; font-size: 1rem; position: relative; z-index: 2; }
.cta-band-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; z-index: 2; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer { background: #0c1724; }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding: clamp(3rem,6vw,5rem) var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.footer-brand p { color: rgba(255,255,255,.42); font-size: .875rem; line-height: 1.72; margin-bottom: 1.6rem; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: background .2s, color .2s; cursor: pointer;
}
.social-btn:hover { background: var(--sage); color: #fff; }
.footer-col h5 {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
}
.footer-col li + li { margin-top: .52rem; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.2rem var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .79rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.28); font-size: .79rem; transition: color .18s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-inner { height: 68px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(:last-child) { display: none; }
  .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-cta .btn { padding: .6rem 1rem; font-size: .82rem; }
  .filter-bar { gap: .4rem; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER LOGO OVERRIDES
══════════════════════════════════════════════════════════ */
.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
  padding: 0;
}
/* In footer: invert logo to white since bg is very dark */
.footer-brand .nav-logo img {
  height: 50px;
  /*filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.5));*/
}
.footer-brand .nav-logo .nav-logo-divider {
  background: rgba(255,255,255,.12);
}
.footer-brand .nav-logo .brand-name {
  font-size: 1.1rem;
  color: #fff;
}
.footer-brand .nav-logo .brand-sub {
  color: rgba(255,255,255,.4);
}
.footer-brand > p {
  color: rgba(255,255,255,.42);
  font-size: .875rem;
  line-height: 1.72;
  max-width: 280px;
}

/* ══════════════════════════════════════════════════════════
   PRIMARY COLOR UPDATES — #5C6E52 as primary
══════════════════════════════════════════════════════════ */

/* Nav active state: green instead of gold */
.nav-links a.active {
  color: var(--sage-d) !important;
  border-bottom-color: var(--sage-d) !important;
  background: rgba(92,110,82,.08) !important;
}

/* Brand sub in nav: green instead of gold */
.nav-logo-text .brand-sub {
  color: var(--sage-l) !important;
  letter-spacing: .22em;
}

/* Footer brand-sub: green-tinted instead of gold */
.footer-brand .nav-logo .brand-sub {
  color: rgba(150,168,130,.55) !important;
}

/* Standardize btn-gold to use primary green */
.btn-gold {
  background: var(--sage-d) !important;
  color: #fff !important;
  border-color: var(--sage-d) !important;
}
.btn-gold:hover {
  background: #4a5942 !important;
  border-color: #4a5942 !important;
  box-shadow: 0 8px 24px rgba(92,110,82,.38) !important;
}

/* Product grid: center items when fewer than full row */
.product-grid {
  justify-items: center;
}
.product-grid .product-card {
  width: 100%;
}

/* Filter bar: center on all pages */
.filter-bar {
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   FOOTER LOGO FIX — proper resolution, aspect ratio,
   responsiveness, alignment
══════════════════════════════════════════════════════════ */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 0;
  width: fit-content;
}

/* Footer logo: preserve colors with subtle white overlay, don't full-invert */
.footer-brand .nav-logo img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  /* Brighten logo for dark bg without destroying color info 
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.4)); */
  flex-shrink: 0;
}

.footer-brand .nav-logo .nav-logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.footer-brand .nav-logo .brand-name {
  font-size: .95rem;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY — focus states
══════════════════════════════════════════════════════════ */
.btn:focus-visible,
.filter-btn:focus-visible,
.btn-cart:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid var(--sage-d);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE PRODUCT GRID — centered at all breakpoints
══════════════════════════════════════════════════════════ */
@media (max-width: 780px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand .nav-logo img {
    height: 36px;
  }
  .filter-bar {
    justify-content: center;
  }
}

