/* ==========================================================================
   Edmond Drywall — stylesheet
   Plain CSS. No frameworks. Mobile-first: base rules are the phone layout,
   media queries scale it up.
   ========================================================================== */

/* =====================================================================
   Contents
   1. Tokens — EDIT BRAND COLORS HERE     6. Hero + estimate form
   2. Base                                7. Service rows + cards
   3. Layout                              8. Table, lists, map, FAQ
   4. Buttons                             9. Footer + mobile call bar
   5. Header + navigation
   ===================================================================== */

/* 1. TOKENS ========================================================== */
:root {
  /* EDIT BRAND COLORS HERE — navy and blues are sampled from the logo */
  --navy:       #001840;   /* logo ink, primary brand color */
  --navy-deep:  #000e28;   /* darkest surface */
  --cobalt:     #005090;   /* logo mid blue */
  --sky:        #3098e0;   /* logo bright blue */
  --sky-soft:   #a9d2f3;

  --cta:        #c9561a;   /* call-to-action orange */
  --cta-dark:   #a8450f;

  --paper:      #ffffff;
  --gypsum:     #f0f0ed;   /* alternating section background */
  --gypsum-2:   #e4e3df;
  --rule:       #d9d8d3;

  --ink:        #18202b;   /* body copy */
  --ink-soft:   #4f5866;   /* secondary copy */
  --ink-invert: #ffffff;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* spacing scale — everything uses one of these */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem;   --s-7: 3rem;  --s-8: 4rem;   --s-9: 6rem;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-1: 0 1px 2px rgba(0, 24, 64, .06), 0 2px 6px rgba(0, 24, 64, .05);
  --shadow-2: 0 2px 4px rgba(0, 24, 64, .06), 0 8px 20px rgba(0, 24, 64, .08);
  --shadow-3: 0 4px 8px rgba(0, 24, 64, .08), 0 18px 44px rgba(0, 24, 64, .18);
  --ease: cubic-bezier(.2, .7, .3, 1);
  --wrap: 1180px;
  --header-h: 76px;
}

/* 2. BASE ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font);
  color: var(--navy);
  margin: 0 0 var(--s-4);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 6.6vw, 3.25rem); line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 5.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3.4vw, 1.45rem); letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }
a { color: var(--cobalt); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--s-4); }
strong { font-weight: 700; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--ink-invert); padding: var(--s-3) var(--s-4);
}
.skip-link:focus { left: var(--s-3); top: var(--s-3); color: var(--ink-invert); }

/* 3. LAYOUT ========================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s-4); }
@media (min-width: 640px) { .wrap { padding-inline: var(--s-5); } }
.section { padding: var(--s-8) 0; }
.section--alt { background: var(--gypsum); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section--dark { background: var(--navy-deep); color: rgba(255, 255, 255, .84); }
.section--dark h2, .section--dark h3 { color: var(--ink-invert); }
@media (min-width: 900px) { .section { padding: var(--s-9) 0; } }

.section-head { max-width: 68ch; margin-bottom: var(--s-7); }
.lede { font-size: 1.0625rem; color: var(--ink-soft); }
.section--dark .lede { color: rgba(255, 255, 255, .76); }

.grid { display: grid; gap: var(--s-5); }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.split { display: grid; gap: var(--s-6); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: start; } }

/* 4. BUTTONS ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 52px; padding: .9rem 1.5rem;
  border: 1px solid transparent; border-radius: var(--radius);
  font-family: var(--font); font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), opacity .18s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: var(--cta); color: var(--ink-invert);
  box-shadow: 0 1px 2px rgba(110, 40, 8, .3), 0 6px 18px rgba(201, 86, 26, .28);
}
.btn--primary:hover {
  background: var(--cta-dark); color: var(--ink-invert); transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(110, 40, 8, .3), 0 12px 26px rgba(201, 86, 26, .34);
}
.btn--ghost { background: var(--paper); color: var(--navy); border-color: rgba(0, 24, 64, .25); }
.btn--ghost:hover { background: var(--navy); color: var(--ink-invert); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn--block { width: 100%; }

/* 5. HEADER ========================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-1);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: var(--header-h); padding-block: var(--s-3); }
.header__logo { display: block; flex-shrink: 0; border-radius: 4px; }
.header__logo img { width: 160px; height: auto; }
.header__actions { display: flex; align-items: center; gap: var(--s-2); }
.header__phone {
  display: none; align-items: center; gap: var(--s-2);
  font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap;
  transition: transform .18s var(--ease);
}
.header__phone:hover { color: var(--cta); transform: translateY(-1px); }
.header__phone svg { width: 18px; height: 18px; }
.header__cta { display: none; min-height: 46px; padding: .7rem 1.15rem; white-space: nowrap; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0;
  border-radius: var(--radius); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.icon-btn:active { transform: translateY(1px); }
.icon-btn--call { background: var(--cta); color: var(--ink-invert); border: 0; }
.icon-btn--call:hover { background: var(--cta-dark); color: var(--ink-invert); }
.nav-toggle { background: var(--paper); border: 1px solid var(--rule); color: var(--navy); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* mobile: nav drops down as a panel under the header */
.nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-bottom: 1px solid var(--rule); box-shadow: var(--shadow-2);
  padding-block: var(--s-2) var(--s-5);
}
.nav.is-open { display: block; }
.nav__list { list-style: none; margin: 0; padding: 0; }
.nav__list li { border-bottom: 1px solid var(--rule); }
.nav__list a {
  display: block; padding: var(--s-3) 0;
  font-weight: 600; font-size: 1.0625rem; color: var(--navy); text-decoration: none;
}
.nav__list a:hover { color: var(--cta); }
.nav__phone { width: 100%; margin-top: var(--s-4); }

@media (min-width: 1100px) {
  .header__logo img { width: 190px; }
  .nav {
    display: block; position: static; background: none; border: 0; box-shadow: none; padding: 0;
    margin-inline: auto;
  }
  .nav > .wrap { padding: 0; }
  .nav__list { display: flex; gap: var(--s-5); }
  .nav__list li { border: 0; }
  .nav__list a { padding: 0; font-size: .9375rem; color: var(--ink); position: relative; }
  .nav__list a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    background: var(--cta); transform: scaleX(0); transform-origin: left;
    transition: transform .2s var(--ease);
  }
  .nav__list a:hover { color: var(--navy); }
  .nav__list a:hover::after { transform: scaleX(1); }
  .nav__phone, .nav-toggle, .icon-btn--call { display: none; }
  .header__phone, .header__cta { display: inline-flex; }
  .header__actions { gap: var(--s-5); }
}

/* 6. HERO + FORM ===================================================== */
.hero { position: relative; background: var(--navy-deep); color: rgba(255, 255, 255, .86); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
/* color treatment over the photo, then a navy wash for text contrast */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: var(--navy); mix-blend-mode: multiply; opacity: .3;
}
.hero__scrim {
  position: absolute; inset: 0;
  /* phones: copy spans the full width, so the wash is even top to bottom */
  background: linear-gradient(180deg, rgba(0, 14, 40, .62), rgba(0, 14, 40, .74));
}
@media (min-width: 1000px) {
  /* desktop: dark behind the copy on the left, lighter behind the form card */
  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(0, 14, 40, .80) 0%, rgba(0, 14, 40, .64) 45%, rgba(0, 14, 40, .22) 100%),
      linear-gradient(0deg, rgba(0, 14, 40, .35), transparent 40%);
  }
}
.hero__inner { position: relative; padding-block: var(--s-7) var(--s-8); }
.hero__grid { display: grid; gap: var(--s-7); }
.hero h1 { color: var(--ink-invert); margin-bottom: var(--s-5); text-shadow: 0 2px 16px rgba(0, 14, 40, .45); }
.hero__sub, .hero__intro { text-shadow: 0 1px 10px rgba(0, 14, 40, .5); }
.hero__sub { font-size: 1.0625rem; color: rgba(255, 255, 255, .92); }
.hero__intro { font-size: .96875rem; color: rgba(255, 255, 255, .84); line-height: 1.68; }
/* hidden on phones/tablets — the sticky call bar covers it there */
.hero__cta { display: none; margin-top: var(--s-6); }
@media (min-width: 1100px) { .hero__cta { display: inline-flex; } }
@media (min-width: 1000px) {
  .hero__inner { padding-block: var(--s-8) var(--s-9); }
  .hero__grid { grid-template-columns: 1.08fr .92fr; gap: var(--s-7); align-items: start; }
}

.form {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-3);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
@media (min-width: 480px) { .form { padding: var(--s-6); } }
.form__heading { font-size: 1.5rem; margin-bottom: var(--s-2); }
.form__intro { color: var(--ink-soft); font-size: .95rem; margin-bottom: var(--s-5); }
.form__grid { display: grid; gap: var(--s-4); }
@media (min-width: 480px) {
  .form__grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: var(--s-2); }
.field .req { color: var(--cta); }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: .8rem .85rem;
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: var(--gypsum); border: 1px solid var(--rule); border-radius: var(--radius);
  transition: box-shadow .18s var(--ease);
}
.field input:hover, .field textarea:hover { border-color: #b9b8b1; }
.field input:focus, .field textarea:focus {
  background: var(--paper); border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 24, 64, .12); outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { margin-top: var(--s-5); }
.form__footnote { font-size: .82rem; color: var(--ink-soft); margin-top: var(--s-4); text-align: center; }
/* inline field errors + success/error panels (Formspree adds data-fs-active) */
.field [data-fs-error] { display: block; color: var(--cta-dark); font-size: .85rem; margin-top: var(--s-1); }
.field [data-fs-error]:empty { display: none; }
.form__status { display: none; margin-top: var(--s-4); padding: var(--s-4); border-radius: var(--radius); font-size: .95rem; }
.form__status[data-fs-active] { display: block; }
.form__status[data-fs-success] { background: #eaf3ec; color: #1d5130; border: 1px solid #bcdcc6; }
.form__status[data-fs-error] { background: #fbeee6; color: var(--cta-dark); border: 1px solid #ecc8b2; }
.form__status a { color: inherit; font-weight: 700; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 7. SERVICE ROWS + CARDS ============================================ */
/* photo-media shared treatment */
.media { position: relative; overflow: hidden; background: var(--gypsum-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(200deg, rgba(0, 80, 144, .16), rgba(0, 24, 64, .06));
  mix-blend-mode: multiply;
}
.media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0, 14, 40, .35), transparent 50%);
}

/* wide service rows: photo on one side, copy on the other */
.svc { display: grid; gap: var(--s-5); align-items: center; }
.svc + .svc { margin-top: var(--s-7); padding-top: var(--s-7); border-top: 1px solid var(--rule); }
.svc__media { border-radius: var(--radius-lg); aspect-ratio: 4 / 3; box-shadow: var(--shadow-2); }
.svc__body > p, .svc__body li { color: var(--ink-soft); }
@media (min-width: 860px) {
  .svc { grid-template-columns: .9fr 1.1fr; gap: var(--s-7); }
  /* flipped rows swap the column widths too, so every photo is the same size */
  .svc--flip { grid-template-columns: 1.1fr .9fr; }
  .svc--flip .svc__media { order: 2; }
}

/* image cards */
.card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-1);
}
.card__media { aspect-ratio: 4 / 3; }
.card__body { padding: var(--s-5); flex: 1; }
.card__body p, .card__body li { color: var(--ink-soft); font-size: .97rem; }

/* texture swatches (sit in the photo slot for texture matching) */
.swatch-panel {
  background: var(--gypsum); border: 1px solid var(--rule); box-shadow: var(--shadow-2);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); padding: var(--s-4);
  align-content: center;
}
.swatch-panel::before, .swatch-panel::after { display: none; }
.swatch-panel figure { margin: 0; }
.swatch-panel svg { display: block; width: 100%; height: auto; aspect-ratio: 1; border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(0, 24, 64, .08), var(--shadow-1); }
.swatch-panel figcaption { font-size: .75rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-top: var(--s-2); }
@media (min-width: 480px) { .swatch-panel { padding: var(--s-5); gap: var(--s-4); } .swatch-panel figcaption { font-size: .8125rem; } }

/* 8. LISTS, TABLE, MAP, FAQ ========================================== */
.spec-list { list-style: none; padding: 0; margin: 0 0 var(--s-4); }
.spec-list li { position: relative; padding-left: 1.5rem; margin-bottom: var(--s-2); }
.spec-list li::before {
  content: ""; position: absolute; left: 0; top: .78em;
  width: 10px; height: 2px; background: var(--cta);
}
.section--dark .spec-list li { color: rgba(255, 255, 255, .8); }
.section--dark .spec-list strong { color: var(--ink-invert); }

.steps { list-style: none; padding: 0; margin: 0 0 var(--s-4); counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  padding: var(--s-2) 0 var(--s-2) 2.5rem; margin: 0;
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: var(--s-2);
  width: 28px; height: 28px; display: grid; place-items: center;
  font-weight: 700; font-size: .85rem; color: var(--ink-invert);
  background: var(--navy); border-radius: 50%;
}
.steps strong { color: var(--ink); }
.faq__answer p + p, .faq__answer p + ol, .faq__answer ol + p { margin-top: var(--s-3); }

.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-1);
}
table { width: 100%; border-collapse: collapse; font-size: .97rem; }
th, td { padding: var(--s-4) var(--s-5); text-align: left; vertical-align: top; }
thead th { background: var(--navy); color: var(--ink-invert); font-weight: 700; font-size: .9rem; }
tbody tr + tr { border-top: 1px solid var(--rule); }
tbody tr:nth-child(even) { background: rgba(0, 24, 64, .025); }
tbody th { font-weight: 700; color: var(--navy); }
tbody td { color: var(--ink-soft); white-space: nowrap; }
.table-note { font-size: .9rem; color: var(--ink-soft); margin-top: var(--s-4); }

.note-box {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: var(--s-5); box-shadow: var(--shadow-2); margin-top: var(--s-6);
}
.note-box p { color: var(--ink); }
.note-box .btn { margin-top: var(--s-5); }
@media (max-width: 559px) { .note-box .btn { width: 100%; } }

.map {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--rule);
  box-shadow: var(--shadow-2); background: var(--gypsum-2); aspect-ratio: 4 / 3;
}
.map iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (min-width: 900px) { .area-grid { align-items: center; } }

.faq { display: grid; gap: var(--s-3); max-width: 860px; }
.faq__item {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius);
  box-shadow: var(--shadow-1); overflow: hidden;
}
.faq__item[open] { border-color: rgba(0, 24, 64, .3); box-shadow: var(--shadow-2); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: var(--s-4) var(--s-5);
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  transition: background-color .18s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--gypsum); }
.faq__item summary:active { background: var(--gypsum-2); }
.faq__item summary h3 { font-size: 1.0625rem; margin: 0; line-height: 1.4; letter-spacing: -0.01em; }
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; color: var(--cta); transition: transform .22s var(--ease); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 var(--s-5) var(--s-5); color: var(--ink-soft); }

/* 9. FOOTER + MOBILE CALL BAR ======================================== */
/* why-us proof points: horizontal cards */
.proof-grid { display: grid; gap: var(--s-4); }
@media (min-width: 640px)  { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .proof-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
.proof {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: var(--s-5); box-shadow: var(--shadow-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.proof:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.proof__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: var(--s-4);
  background: var(--navy); color: #cfe6f9;
}
.proof__icon svg { width: 22px; height: 22px; }
.proof h3 { font-size: 1.125rem; margin-bottom: var(--s-2); }
.proof p { font-size: .97rem; color: var(--ink-soft); }

/* closing CTA band */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(48, 152, 224, .22), transparent 60%),
    radial-gradient(70% 100% at 0% 100%, rgba(0, 80, 144, .35), transparent 65%),
    var(--navy);
  color: rgba(255, 255, 255, .84);
}
.cta__inner { position: relative; padding-block: var(--s-8); max-width: 44rem; }
.cta h2 { color: var(--ink-invert); }
.cta p { color: rgba(255, 255, 255, .8); margin-bottom: var(--s-5); }
.btn-row { display: flex; flex-direction: column; gap: var(--s-3); }
@media (min-width: 560px) { .btn-row { flex-direction: row; flex-wrap: wrap; } }
.btn--onDark { background: rgba(255, 255, 255, .08); color: var(--ink-invert); border-color: rgba(255, 255, 255, .34); }
.btn--onDark:hover { background: var(--ink-invert); color: var(--navy); transform: translateY(-2px); }

/* footer */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .7); padding-block: var(--s-7); font-size: .93rem; }
.footer__grid { display: grid; gap: var(--s-6); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7); } }
.footer h2 { font-size: .95rem; font-weight: 700; letter-spacing: 0; color: var(--sky-soft); margin-bottom: var(--s-4); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: var(--s-2); }
.footer a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.footer a:hover { color: var(--ink-invert); text-decoration: underline; }
.footer__logo { display: inline-block; margin-bottom: var(--s-4); border-radius: var(--radius); }
.footer__logo img { width: 210px; background: var(--paper); border-radius: var(--radius); padding: var(--s-3); }
.footer__phone { font-weight: 700; font-size: 1.2rem; color: var(--ink-invert) !important; }
.footer__bottom {
  margin-top: var(--s-6); padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .85rem; color: rgba(255, 255, 255, .55);
}

.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: var(--s-3); padding: var(--s-3);
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -2px 6px rgba(0, 24, 64, .08), 0 -10px 30px rgba(0, 24, 64, .1);
}
.stickybar .btn { flex: 1; min-height: 50px; padding: .8rem .5rem; font-size: .95rem; }
body { padding-bottom: 76px; }
@media (min-width: 1100px) { .stickybar { display: none; } body { padding-bottom: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
