/* ==========================================================
   Prairie Pilot — styles
   Mobile-first. No build step.
   ========================================================== */

:root {
  --navy: #13243d;
  --navy-2: #1c3354;
  --navy-3: #2b4a6b;
  --gold: #e3a53a;
  --gold-hover: #eeb654;
  --gold-ink: #8a5a0b;      /* gold for text on light backgrounds (AA) */
  --green: #2f6b4f;
  --cream: #faf6ee;
  --wheat: #f3e8d2;
  --wheat-2: #eadbbd;
  --ink: #1b2333;
  --muted: #475266;
  --line: #e2d8c4;
  --white: #ffffff;
  --error: #b42318;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(19, 36, 61, .06), 0 2px 8px rgba(19, 36, 61, .05);
  --shadow: 0 2px 4px rgba(19, 36, 61, .05), 0 12px 32px rgba(19, 36, 61, .09);
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.25rem, 7.2vw, 4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.85rem, 4.6vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--navy-3); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
ul, ol { padding: 0; margin: 0; list-style: none; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.section-navy :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible, .pain-cta :focus-visible { outline-color: var(--wheat); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy); color: var(--white); padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 12px; color: var(--white); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; }

.icon { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: .9em 1.35em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background-color .15s, transform .15s, box-shadow .15s, color .15s;
  min-height: 48px; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 2px 0 #b98325; }
.btn-gold:hover { background: var(--gold-hover); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: .6em 1em; font-size: .9rem; min-height: 42px; }
.btn-lg { font-size: 1.0625rem; padding: 1em 1.6em; min-height: 54px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; border-radius: 10px; }
.brand-logo { height: 40px; width: auto; }
.brand-word { font-family: var(--serif); font-weight: 700; font-size: 27px; fill: var(--navy); letter-spacing: -.3px; }

.main-nav { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--navy); text-decoration: none; font-size: .95rem;
  padding: 10px 12px; border-radius: 999px; min-height: 42px; border: 2px solid var(--line); background: var(--white);
}
.header-phone:hover { border-color: var(--navy); color: var(--navy); }
.phone-full { display: none; }
.cta-full { display: none; }

@media (max-width: 379px) {
  .brand-logo { height: 34px; }
  .header-phone { padding: 8px 10px; }
  .btn-sm { padding: .55em .85em; }
}
@media (min-width: 560px) {
  .phone-full { display: inline; }
  .phone-short { display: none; }
}
@media (min-width: 720px) {
  .cta-full { display: inline; }
  .cta-short { display: none; }
  .brand-logo { height: 44px; }
  :root { --header-h: 76px; }
}
@media (min-width: 1100px) {
  .main-nav { display: block; }
  .main-nav ul { display: flex; gap: 4px; }
  .main-nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem; }
  .main-nav a:hover { background: var(--wheat); color: var(--navy); }
  .header-phone { border: 0; background: transparent; padding: 10px 8px; }
  .header-phone:hover { text-decoration: underline; }
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--gold); }
.eyebrow-light { color: var(--gold); }

.section { padding: 72px 0; }
.section-wheat { background: var(--wheat); }
.section-navy { background: var(--navy); color: #dfe6ef; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-sub { color: var(--muted); font-size: 1.125rem; margin: 0; }

@media (min-width: 900px) {
  .section { padding: 104px 0; }
  .section-head { margin-bottom: 56px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 44px 0 56px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(227, 165, 58, .18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #f6efe1 100%);
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.accent-line { display: block; color: var(--navy); position: relative; }
.accent-line::after {
  content: ""; display: block; width: 3.2em; height: .14em; margin-top: .12em;
  background: var(--gold); border-radius: 99px;
}
.lede { font-size: 1.1875rem; color: var(--muted); max-width: 38em; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--ink); font-weight: 500; font-size: .98rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: ""; width: 20px; height: 20px; border-radius: 50%; flex: none;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4L18 8' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}
.hero-art { max-width: 560px; width: 100%; margin: 0 auto; }
.horizon-art { width: 100%; height: auto; border-radius: 28px; box-shadow: var(--shadow); }
.art-card-title { font-family: var(--serif); font-weight: 700; font-size: 17px; fill: var(--navy); }
.art-row text { font-family: var(--sans); font-size: 12.5px; font-weight: 500; fill: var(--ink); }

@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
}
@media (min-width: 960px) {
  .hero { padding: 80px 0 96px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; }
}

/* ---------- Pain / solution ---------- */
.pain-grid { display: grid; gap: 20px; }
.pain-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.pain-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--wheat); color: var(--navy); margin-bottom: 18px;
}
.pain-icon svg { width: 26px; height: 26px; }
.pain-card h3 { margin-bottom: 12px; }
.pain-quote {
  margin: 0 0 20px; padding: 0 0 0 14px; border-left: 3px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.1rem; line-height: 1.45; color: var(--navy-2);
}
.pain-dl { margin: 0; display: grid; gap: 14px; }
.pain-dl dt { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 2px; }
.pain-dl dd { margin: 0; color: var(--ink); font-size: 1rem; }
.pain-dl div:last-child dd { color: var(--navy); font-weight: 600; }

.pain-cta { background: var(--navy); border-color: var(--navy); color: #dfe6ef; justify-content: center; }
.pain-cta h3 { color: var(--white); font-size: 1.6rem; }
.pain-cta p { margin-bottom: 22px; }
.pain-cta .btn { align-self: flex-start; }
.text-link-light { color: var(--wheat); margin-top: 16px; font-weight: 600; }
.text-link-light:hover { color: var(--white); }

@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } .pain-card { padding: 32px 28px; } }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--cream); border-radius: var(--radius-lg); padding: 28px 24px 26px;
  border: 1px solid var(--wheat-2);
}
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 1.5rem;
  margin-bottom: 18px; box-shadow: 0 0 0 6px var(--wheat-2);
}
.step p { color: var(--muted); margin: 0; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step { padding: 34px 30px; }
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 60px; right: -29px; width: 30px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--navy-3) 0 4px, transparent 4px 9px);
  }
}

.inline-cta {
  margin-top: 40px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.inline-cta p { margin: 0; font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--navy); line-height: 1.3; }
.inline-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) {
  .inline-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 28px 36px; margin-top: 48px; }
}

/* ---------- Automate ---------- */
.automate-grid { display: grid; gap: 16px; }
.automate-item {
  display: grid; align-content: start; grid-template-columns: 48px 1fr; column-gap: 16px; align-items: start;
  padding: 22px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.automate-icon {
  grid-row: span 2; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold);
}
.automate-icon svg { width: 24px; height: 24px; }
.automate-item h3 { font-size: 1.1rem; margin: 2px 0 6px; line-height: 1.25; }
.automate-item p { margin: 0; color: var(--muted); font-size: .98rem; }
@media (min-width: 720px) { .automate-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .automate-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .automate-item { display: flex; flex-direction: column; padding: 26px 24px; }
  .automate-icon { margin-bottom: 16px; }
  .automate-item:last-child { grid-column: span 2; background: var(--wheat); border-color: var(--wheat-2); }
}

/* ---------- Why ---------- */
.why-grid { display: grid; gap: 14px; }
.why-item { padding: 24px 22px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.why-item h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.why-item h3::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: none; }
.why-item p { margin: 0; color: #cfd8e3; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .why-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
  .why-layout h2 { font-size: 2.4rem; }
  .why-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 32px); }
  .why-grid { gap: 18px; }
  .why-item { padding: 28px 26px; }
  .why-item:last-child { grid-column: span 2; }
}

/* ---------- About ---------- */
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-art { max-width: 320px; width: 70%; margin: 0 auto; }
.about-art svg { width: 100%; height: auto; }
.about-art-text { font-family: var(--serif); font-weight: 700; font-size: 20px; fill: var(--navy); }
.about-copy p:not(.eyebrow) { font-size: 1.0625rem; color: var(--ink); max-width: 40em; }
.about-copy .about-lead { font-size: 1.2rem !important; }
.about-sign { font-family: var(--serif); font-weight: 700; font-style: italic; color: var(--navy) !important; font-size: 1.25rem !important; margin-top: 8px; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 360px 1fr; gap: 72px; }
  .about-art { width: 100%; max-width: 360px; }
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq { background: var(--cream); border: 1px solid var(--wheat-2); border-radius: var(--radius); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative;
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--navy); border-radius: var(--radius);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy); transform: rotate(45deg); transition: transform .2s;
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { background: rgba(255,255,255,.6); }
.faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq-body p { margin: 0; }
.faq-more { margin: 28px 0 0; color: var(--muted); }
.faq-more a { font-weight: 600; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 420px at 0% 100%, rgba(227, 165, 58, .16), transparent 60%),
    var(--navy);
  color: #dfe6ef; padding: 72px 0;
}
.cta-band h2 { color: var(--white); }
.cta-grid { display: grid; gap: 40px; align-items: start; }
.cta-copy > p:not(.eyebrow) { font-size: 1.125rem; color: #d3dbe6; }
.cta-list { display: grid; gap: 10px; margin: 24px 0 32px; }
.cta-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.cta-list li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4L18 8' fill='none' stroke='%2313243d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}
.cta-contact { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: grid; gap: 4px; }
.cta-contact p { margin: 0 0 4px; color: #b9c5d4; font-size: .95rem; }
.cta-phone { font-family: var(--serif); font-weight: 700; font-size: 1.75rem; color: var(--gold); text-decoration: none; width: fit-content; }
.cta-phone:hover { color: var(--gold-hover); text-decoration: underline; }
.cta-email { color: var(--wheat); font-weight: 600; width: fit-content; }
.cta-email:hover { color: var(--white); }
@media (min-width: 960px) {
  .cta-band { padding: 104px 0; }
  .cta-grid { grid-template-columns: .85fr 1.15fr; gap: 64px; }
  .cta-copy { position: sticky; top: calc(var(--header-h) + 32px); }
}

/* ---------- Form ---------- */
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 26px 20px; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.form-title { font-size: 1.5rem; margin-bottom: 4px; }
.form-req-note { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.form-req-note span, .req { color: var(--error); }
.field-row { display: grid; gap: 0 16px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; color: var(--navy); }
.optional { font-weight: 400; color: var(--muted); font-size: .88rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid #cfc4ae; border-radius: 10px; padding: 12px 14px; min-height: 48px;
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%2313243d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field input::placeholder, .field textarea::placeholder { color: #7a8394; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #a99c83; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 4px rgba(227, 165, 58, .45);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); background: #fff7f6; }
.field-error { margin: 6px 0 0; font-size: .88rem; color: var(--error); font-weight: 500; min-height: 0; }
.field-error:empty { display: none; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.lead-form .btn-block { margin-top: 6px; }
.lead-form .btn[disabled] { opacity: .7; cursor: progress; }
.privacy-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 14px 0 0; font-size: .88rem; color: var(--muted); text-align: center; }
.privacy-note .icon { color: var(--green); width: 14px; height: 14px; }
.form-status-error { margin: 12px 0 0; color: var(--error); font-weight: 500; font-size: .95rem; }

@media (min-width: 600px) {
  .form-card { padding: 36px 34px; }
  .field-row { grid-template-columns: 1fr 1fr; }
}

.form-success { text-align: center; padding: 28px 8px; }
.form-success:focus { outline: none; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; margin: 0 auto 18px; }
.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--muted); max-width: 30em; margin-left: auto; margin-right: auto; }
.success-small { font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0d1a2d; color: #b9c5d4; padding: 40px 0; font-size: .95rem; }
.footer-inner { display: grid; gap: 22px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--white); font-size: 1.2rem; line-height: 1.2; }
.footer-tag { margin: 0; color: var(--gold); font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.footer-brand img { border-radius: 10px; box-shadow: 0 0 0 1px rgba(255,255,255,.15); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: var(--wheat); text-decoration: none; font-weight: 500; width: fit-content; }
.footer-contact a:hover { color: var(--white); text-decoration: underline; }
.footer-copy { margin: 0; font-size: .88rem; color: #8f9db0; }
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
  .footer-contact { flex-direction: row; justify-content: center; gap: 28px; }
}

.why-intro { color: #cfd8e3; font-size: 1.125rem; margin: 0; }

/* ---------- Small-screen polish ---------- */
.btn, .header-phone { white-space: nowrap; }
a[href^="tel:"] { white-space: nowrap; }
.privacy-note { align-items: flex-start; text-align: left; justify-content: flex-start; }
.privacy-note .icon { margin-top: 3px; }
@media (min-width: 600px) { .privacy-note { justify-content: center; align-items: center; } .privacy-note .icon { margin-top: 0; } }
@media (max-width: 419px) {
  .container { padding: 0 16px; }
  .header-inner { gap: 8px; }
  .brand-logo { height: 36px; }
  .header-actions { gap: 6px; }
  .header-phone { padding: 8px 12px; font-size: .9rem; }
  .btn-sm { padding: .55em .9em; font-size: .88rem; }
}
@media (max-width: 379px) {
  .container { padding: 0 12px; }
  .brand-logo { height: 30px; }
  .phone-short { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .header-phone { padding: 8px 11px; }
  .header-phone .icon { width: 18px; height: 18px; }
  .btn-sm { padding: .55em .8em; font-size: .85rem; }
}
@media (min-width: 960px) { h1 { font-size: clamp(2.75rem, 4.6vw, 4rem); } }
