/* ============================================================
   WBA BRAND v1 — 2026.05.22
   Shared stylesheet. Colors and typography locked to the brand
   suite. Page-specific styles stay inline per page.
   ============================================================ */

/* -- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* -- BRAND TOKENS ------------------------------------------ */
:root {
  /* Palette — locked to brand suite v1 */
  --teal: #1F4D5A;
  --teal-deep: #163945;
  --cream: #FAF7F2;
  --cream-warm: #F4EFE4;
  --brass: #B08D57;
  --brass-light: #D4B584;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --ink-mute: #6A6A6A;
  --rule: rgba(26, 26, 26, 0.12);
  --rule-brass: rgba(176, 141, 87, 0.4);
  --white: #FFFFFF;

  /* Typography */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --max: 1180px;
  --pad-x: 48px;
}

@media (max-width: 720px) {
  :root { --pad-x: 24px; }
}

/* -- BASE -------------------------------------------------- */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-weight: 350;
  font-size: 15.5px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(at 8% 12%, rgba(176, 141, 87, 0.04) 0%, transparent 35%),
    radial-gradient(at 92% 88%, rgba(31, 77, 90, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: var(--teal); }
a:hover { color: var(--teal-deep); }

img, svg { display: block; max-width: 100%; }

/* -- SHARED CONTAINERS ------------------------------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* -- ALERT BAR --------------------------------------------- */
.alert-bar {
  background: var(--teal);
  color: var(--cream);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.alert-bar .sep {
  color: var(--brass-light);
  margin: 0 14px;
  opacity: 0.85;
}
.alert-bar .soft {
  color: rgba(250, 247, 242, 0.7);
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .alert-bar { font-size: 10px; padding: 9px 16px; }
  .alert-bar .sep { margin: 0 8px; }
  /* On phones, drop the city list + its trailing separator — keep only the
     value tagline so the bar is one clean line instead of a wrapping marquee. */
  .alert-bar .cities,
  .alert-bar .cities-sep { display: none; }
  .alert-bar .soft { letter-spacing: 0.1em; }
}

/* -- HEADER ------------------------------------------------ */
header.site {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 22px var(--pad-x);
}
header.site .row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.site-logo svg { height: 44px; width: auto; }
.site-logo:hover svg .wba-mark-stroke { stroke: var(--teal-deep); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.site-nav a.nav-link:hover { color: var(--teal); }
.site-nav a.tel {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.site-nav a.tel:hover { color: var(--teal); }

.site-nav a.call-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s cubic-bezier(0.16,1,0.3,1),
              color 0.25s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.site-nav a.call-link::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
}
.site-nav a.call-link:hover {
  background: var(--ink);
  color: var(--cream);
}
.site-nav a.call-link:hover::before { background: var(--brass-light); }

@media (max-width: 720px) {
  header.site { padding: 16px var(--pad-x); }
  .site-logo svg { height: 36px; }
  .site-nav { gap: 14px; }
  .site-nav a.nav-link, .site-nav a.tel { display: none; }
  .site-nav a.call-link { padding: 9px 14px; font-size: 10px; }
}

/* -- TRUST BAR --------------------------------------------- */
.trust-bar {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--rule);
  padding: 18px var(--pad-x);
}
.trust-bar .row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.trust-bar .item {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-bar .item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 50%;
}
@media (max-width: 640px) {
  .trust-bar .row { gap: 18px; }
  .trust-bar .item { font-size: 9.5px; gap: 7px; }
}

/* -- SHARED TYPOGRAPHY ------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
  opacity: 0.65;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--teal); font-weight: 350; }

h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
}
h1 em {
  font-style: italic;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 90;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.022em;
  line-height: 1.08;
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
}
h2 em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: 'opsz' 96, 'SOFT' 90;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 36, 'SOFT' 40;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
}

h4 {
  font-size: 17px;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 36, 'SOFT' 20;
  max-width: 640px;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}

.tracked {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.brass-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

/* -- BUTTONS / FORMS --------------------------------------- */
.btn-primary,
.btn-submit {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--teal);
  border: 1px solid var(--teal);
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.16,1,0.3,1),
              border-color 0.25s cubic-bezier(0.16,1,0.3,1),
              transform 0.25s cubic-bezier(0.16,1,0.3,1);
  width: auto;
}
.btn-primary::before,
.btn-submit::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brass-light);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
.btn-primary:hover,
.btn-submit:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-primary:hover::before,
.btn-submit:hover::before {
  transform: scale(1.35);
}
.btn-submit { width: 100%; padding: 16px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Form inputs */
.form-group { margin-bottom: 14px; }
label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
label .hint {
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-size: 10px;
  margin-left: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 77, 90, 0.1);
}
.form-disclaimer {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 14px;
}

/* -- SECTION SCAFFOLDING ----------------------------------- */
section.brand {
  padding: 88px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.section-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
}
.section-head .blurb {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 440px;
}
@media (max-width: 820px) {
  section.brand { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
}

/* -- FOOTER ------------------------------------------------ */
footer.site {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.7);
  padding: 64px var(--pad-x) 48px;
  border-top: 1px solid var(--rule);
}
footer.site .row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}
footer.site .mark { display: inline-flex; }
footer.site .mark svg { height: 56px; width: auto; }
footer.site .col-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
footer.site .col-r .nav a {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
footer.site .col-r .nav a:hover { color: var(--brass-light); }
footer.site .col-r .info {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
footer.site .col-r .info a { color: rgba(250, 247, 242, 0.85); text-decoration: none; }
footer.site .col-r .info a:hover { color: var(--brass-light); }
footer.site .fine {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(250, 247, 242, 0.45);
  letter-spacing: 0.06em;
  line-height: 1.7;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 24px;
}
footer.site .fine .brass {
  color: var(--brass-light);
  margin: 0 10px;
}
@media (max-width: 820px) {
  footer.site .row { grid-template-columns: 1fr; gap: 36px; }
  footer.site .col-r { grid-template-columns: 1fr; gap: 24px; }
  footer.site .mark svg { height: 44px; }
}

/* -- STICKY MOBILE CTA ------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal);
  padding: 14px 20px;
  z-index: 900;
  box-shadow: 0 -2px 18px rgba(22, 56, 68, 0.18);
  border-top: 1px solid var(--brass);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.sticky-cta a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brass-light);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}
