/* Wilson Composites — shared site styles.
   Single source of truth for design tokens, nav, LOGO SIZE, and footer.
   Change the logo size here (.nav-logo-img height) — it applies site-wide. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --wc-blue: #25408f; --wc-blue-dark: #1a2f6b; --wc-blue-light: #e8edf7;
  --text: #1a1a1a; --text-mid: #555; --text-muted: #888;
  --border: #e4e4e4; --bg: #f7f7f5; --white: #ffffff;
  --ease: cubic-bezier(0.4,0,0.2,1);
}
body { font-family: "DM Sans", sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 48px; display: flex; align-items: center; justify-content: space-between; min-height: 68px; position: relative; z-index: 200; transition: box-shadow 0.2s var(--ease); }
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 85px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--wc-blue); }
.nav-cta { background: var(--wc-blue) !important; color: var(--white) !important; padding: 8px 18px; border-radius: 6px; font-weight: 500; }
.nav-cta:hover { opacity: 0.88 !important; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 4px; }
.mobile-nav { display: none; position: static; background: var(--white); border-bottom: 1px solid var(--border); z-index: 199; flex-direction: column; padding: 16px 24px; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; color: var(--text); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
footer { background: var(--text); padding: 48px 48px 24px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo-img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 10px; display: block; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 240px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }

/* --- canonical footer brand marks (added 2026-08-10) --- */
.footer-brand-link{display:inline-block;background:#fff;padding:7px 12px;border-radius:6px;margin-bottom:10px;line-height:0;transition:opacity .15s;}
.footer-brand-link:hover{opacity:0.85;}
.footer-brand-logo{height:30px;width:auto;display:block;}
