/* BetterLot: betterlotservices.com
   Static site. No CDN, no web fonts, no trackers, no external requests.
   Palette matched to the approved logo: charcoal #1F252C, amber #FFA500. */

:root {
  --ink:      #14181c;
  --slate:    #262c33;
  --logo-ink: #1f252c;
  --body:     #3f4a54;
  --muted:    #616b74;
  --line:     #e3e7ea;
  --bg:       #ffffff;
  --surface:  #f5f7f8;
  --accent:   #ffa500;   /* logo amber for fills, borders and on-dark text */
  --accent-d: #8a5a00;   /* on-white text/links, 6.4:1 */
  --wrap:     1120px;
  --hdr-d:    88px;
  --hdr-m:    68px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* anchored headings must clear the sticky header */
:target { scroll-margin-top: calc(var(--hdr-d) + 20px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-d); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent-d);
  outline-offset: 2px;
  border-radius: 2px;
}
/* on dark grounds the deep amber is too low-contrast, so use the bright brand amber */
.site-header a:focus-visible,
.site-header button:focus-visible,
.hero a:focus-visible,
.page-banner a:focus-visible,
.cta-band a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Header (dark charcoal, carrying the reverse logo) ---------- */

.site-header {
  background: var(--logo-ink);
  position: sticky;
  top: 0;
  z-index: 50;
  /* hairline + inner highlight so the header reads as a distinct band
     against the dark hero rather than merging into one block */
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--hdr-d);
}

.brand { display: block; flex: none; line-height: 0; }
/* width only, so height stays auto and the logo ratio is never distorted */
.brand img { width: 208px; height: auto; }

.header-right { display: flex; align-items: center; gap: 30px; }

.nav { display: flex; gap: 26px; }
.nav a {
  color: #d6dbe0;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.35); }
.nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--accent); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: var(--logo-ink);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 4px;
  white-space: nowrap;
}
.header-phone:hover { background: #ffb733; }
.header-phone svg { width: 17px; height: 17px; flex: none; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--slate) 0%, var(--ink) 100%);
  color: #fff;
  padding: 88px 0 80px;
}
.hero-inner { max-width: 790px; }
.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -.015em;
}
.hero p { font-size: 1.12rem; color: #c8ced4; margin: 0 0 34px; max-width: 650px; }

.page-banner {
  background: linear-gradient(180deg, var(--slate) 0%, var(--ink) 100%);
  color: #fff;
  padding: 60px 0 54px;
}
.page-banner h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 800; color: #fff; margin: 0; letter-spacing: -.01em;
}
.page-banner p { color: #c8ced4; margin: 14px 0 0; max-width: 650px; }

/* ---------- Buttons ---------- */

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1.02rem; text-decoration: none;
  padding: 15px 28px; border-radius: 4px; border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease, color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--logo-ink); }
.btn-primary:hover { background: #ffb733; }
.btn-ghost { border-color: #58626b; color: #fff; background: none; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--slate); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Sections ---------- */

.section { padding: 76px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.25; font-weight: 800; color: var(--ink);
  margin: 0 0 20px; letter-spacing: -.01em;
}
.section h3 { font-size: 1.16rem; font-weight: 700; color: var(--ink); margin: 34px 0 12px; }
.section p { margin: 0 0 18px; max-width: 720px; }
.lede { font-size: 1.1rem; color: var(--slate); max-width: 720px; }

/* .fineprint is now reserved for genuinely secondary text only:
   the privacy line, contact-card notes and footer legal. Operating
   information must not use it. */
.fineprint { font-size: .93rem; color: var(--muted); }

/* Scheduling and reopening: operating information, presented at full body
   size with a visible amber rule so it reads as guidance, not a disclaimer. */
.infobox {
  max-width: 720px;
  margin: 26px 0;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
}
.infobox h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--ink);
}
.infobox p { margin: 0 0 12px; color: var(--body); font-size: 1rem; }
.infobox p:last-child { margin-bottom: 0; }

.section ul { margin: 0 0 22px; padding-left: 0; list-style: none; max-width: 720px; }
.section ul li { position: relative; padding-left: 30px; margin-bottom: 11px; }
.section ul li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 8px; height: 8px; background: var(--accent); border-radius: 1px;
}

/* ---------- Cards ---------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 8px; }
.card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: 5px; padding: 28px 26px 30px;
  display: flex; flex-direction: column;
}
.card h3 { margin: 0 0 10px; font-size: 1.18rem; font-weight: 800; color: var(--ink); }
.card p { margin: 0; font-size: .97rem; color: var(--muted); }
.card-link {
  margin-top: 18px; font-weight: 700; font-size: .95rem;
  color: var(--accent-d); text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
a.card { text-decoration: none; }
a.card:hover { border-color: var(--accent); box-shadow: 0 2px 10px rgba(20,24,28,.07); }

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 800px; margin-top: 8px; }
.faq { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq:first-child { border-top: 1px solid var(--line); }
details.faq > summary {
  list-style: none; cursor: pointer;
  font-size: 1.08rem; font-weight: 800; color: var(--ink);
  line-height: 1.4; padding-right: 40px; position: relative;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: ""; position: absolute; right: 8px; top: .5em;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--accent-d); border-bottom: 2.5px solid var(--accent-d);
  transform: rotate(45deg); transition: transform .18s ease;
}
details.faq[open] > summary::after { transform: rotate(-135deg); top: .72em; }
details.faq > summary:hover { color: var(--accent-d); }
details.faq > *:not(summary) { margin-top: 14px; }
details.faq > p:last-child, details.faq > ul:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-top: 10px;
  align-items: start;
}
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 5px;
  padding: 26px 24px;
  min-width: 0;              /* lets grid items shrink instead of forcing overflow */
  display: flex; flex-direction: column;
}
.contact-label { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.contact-value {
  font-size: 1.24rem; font-weight: 800; color: var(--ink);
  text-decoration: none; display: block;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: break-word;
}
/* the email is long, so step the size down, give it room to breathe, and let
   it break at the <wbr> after the @ rather than orphaning ".com" */
.contact-value--email {
  font-size: 1.02rem;
  line-height: 1.5;
  letter-spacing: -.005em;
  hyphens: none;
}
a.contact-value:hover { color: var(--accent-d); }
.contact-note { font-size: .93rem; color: var(--muted); margin: 14px 0 0; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.mini-btn {
  font-size: .88rem; font-weight: 700; text-decoration: none;
  padding: 7px 14px; border: 1.5px solid var(--line); border-radius: 4px;
  color: var(--slate); background: #fff;
}
.mini-btn:hover { border-color: var(--accent); color: var(--ink); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--ink); color: #fff; padding: 60px 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 12px; font-weight: 800; }
.cta-band p { color: #c8ced4; margin: 0 0 28px; max-width: 640px; }

/* ---------- Footer ---------- */

.site-footer { background: #0d1114; color: #8d97a0; padding: 42px 0 36px; font-size: .92rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { color: #fff; font-weight: 800; letter-spacing: .04em; }
.footer-tag { color: var(--accent); font-weight: 700; font-size: .95rem; margin-top: 6px; }
.site-footer a { color: #c8ced4; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal { margin-top: 26px; font-size: .85rem; color: #99a3ac; }

/* ---------- Mobile ---------- */

@media (max-width: 860px) {
  .header-inner { min-height: var(--hdr-m); gap: 12px; }
  .brand img { width: 150px; height: auto; }
  .header-right { gap: 10px; }

  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: 4px;
    cursor: pointer;
    color: #e6eaee;
  }
  .nav-toggle:hover { border-color: var(--accent); color: #fff; }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-toggle .ico-close { display: none; }
  .nav-toggle[aria-expanded="true"] .ico-open { display: none; }
  .nav-toggle[aria-expanded="true"] .ico-close { display: block; }

  .header-phone { padding: 10px 14px; font-size: .95rem; gap: 7px; }
  .header-phone .phone-text { display: none; }

  /* dropdown reads as an extension of the dark header, not a white panel */
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--logo-ink);
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 12px 22px rgba(0,0,0,.42);
    padding: 4px 0 10px;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 24px; border-bottom: none; font-size: 1.02rem;
    color: #d6dbe0;
  }
  .nav a:hover, .nav a:focus-visible {
    background: rgba(255,255,255,.07);
    color: #fff;
    border-bottom-color: transparent;
  }
  .nav a[aria-current="page"] {
    border-bottom-color: transparent;
    box-shadow: inset 4px 0 0 var(--accent);
    background: rgba(255,255,255,.05);
    color: #fff;
  }

  /* cards take their natural height once stacked */
  .contact-grid { align-items: start; }
  .contact-card .contact-note { margin-top: 0; }


  :target { scroll-margin-top: calc(var(--hdr-m) + 16px); }

  .hero { padding: 58px 0 54px; }
  .section { padding: 54px 0; }
  .btn, .btn-row { width: 100%; }
  .btn { justify-content: center; }
}

@media (min-width: 861px) {
  .header-phone .phone-short { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
