/* ==========================================================================
   AT Towing — site styles
   Palette taken from the fleet livery: black trucks, gold lettering.
   ========================================================================== */

:root {
  --ink:        #0b0b0d;
  --ink-2:      #141419;
  --ink-3:      #1e1e25;
  --line:       #2b2b34;
  --paper:      #ffffff;
  --paper-2:    #f5f6f8;
  --paper-3:    #eceef2;

  --gold:       #ffc219;
  --gold-deep:  #e0a400;
  --gold-soft:  #fff4d1;

  --text:       #16161a;
  --text-soft:  #55565f;
  --text-inv:   #ffffff;
  --text-inv-soft: #b4b6c0;

  --shadow-sm: 0 1px 2px rgba(11, 11, 13, .08), 0 2px 8px rgba(11, 11, 13, .06);
  --shadow-md: 0 4px 12px rgba(11, 11, 13, .10), 0 12px 32px rgba(11, 11, 13, .10);
  --shadow-lg: 0 12px 28px rgba(11, 11, 13, .16), 0 32px 64px rgba(11, 11, 13, .18);

  --radius:    14px;
  --radius-sm: 9px;

  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --font: "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --callbar-h: 0px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  padding-bottom: var(--callbar-h);
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 6.2vw, 4.1rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.45rem); }
p  { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--gold); color: var(--ink);
  font-weight: 700; padding: .7rem 1.3rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- layout ---------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { max-width: 760px; }

.section { padding-block: clamp(3.25rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.section--dark { background: var(--ink); color: var(--text-inv); }
.section--dark p { color: var(--text-inv-soft); }
.section--muted { background: var(--paper-2); }

.section-head { max-width: 730px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 0; }
.section--dark .section-head p { color: var(--text-inv-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .85rem;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; fill: currentColor; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: currentColor;
}
.section--dark .btn--ghost, .hero .btn--ghost { --btn-fg: #fff; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.75rem;
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--gold);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 40px;
  text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 1em; height: 1em; fill: currentColor; flex: none; }
.topbar a { color: inherit; text-decoration: none; font-weight: 800; }
.topbar a:hover { text-decoration: underline; }
@media (max-width: 720px) { .topbar__item--hide-sm { display: none; } }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 11, 13, .96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  color: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
  flex: none;
}
.brand img { width: 54px; height: auto; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name span { color: var(--gold); }
.brand__tag {
  display: block;
  font-family: var(--font);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-inv-soft);
  margin-top: .2rem;
}

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--ink-3); color: var(--gold); }
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link svg { width: .62em; height: .62em; fill: currentColor; transition: transform .18s ease; }

.nav__item--has-menu { position: relative; }
.nav__item--has-menu:hover .nav__link svg,
.nav__item--has-menu:focus-within .nav__link svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  min-width: 268px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .5rem;
  list-style: none;
  margin: 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: block;
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.nav__menu a:hover { background: var(--ink-3); color: var(--gold); }

.header__call {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.25rem;
  margin-left: .6rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease;
}
.header__call:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 194, 25, .3); }
.header__call svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex: none;
}
.burger span {
  display: block; position: relative;
  width: 21px; height: 2px; background: #fff; border-radius: 2px;
  transition: background-color .16s ease;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 21px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .2s ease, top .2s ease;
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .burger { display: inline-flex; }
  .header__call span { display: none; }
  .header__call { padding: .7rem .9rem; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    padding: 5.5rem 1.25rem 2rem;
    overflow-y: auto;
    transform: translateX(102%);
    transition: transform .26s cubic-bezier(.4, 0, .2, 1);
    box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; width: 100%; }
  .nav__link { padding: .85rem .9rem; font-size: 1.05rem; }
  .nav__item--has-menu .nav__link svg { margin-left: auto; }
  .nav__menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent;
    padding: 0 0 .4rem .9rem;
    border-left: 2px solid var(--line);
    margin-left: .9rem;
    display: none;
  }
  /* Keyboard users and the no-JS case still reach the submenu. */
  .nav__item--has-menu[data-open="true"] .nav__menu,
  .nav__item--has-menu:focus-within .nav__menu { display: block; }
  .nav__item--has-menu[data-open="true"] .nav__link svg { transform: rotate(180deg); }
  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(11, 11, 13, .55);
    opacity: 0; visibility: hidden;
    transition: opacity .26s ease, visibility .26s;
    z-index: 89;
  }
  .nav-scrim[data-open="true"] { opacity: 1; visibility: visible; }
}
@media (min-width: 1001px) { .nav-scrim { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(480px, 72vh, 720px);
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero--compact { min-height: clamp(340px, 44vh, 460px); }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(11, 11, 13, .96) 8%, rgba(11, 11, 13, .74) 42%, rgba(11, 11, 13, .34) 78%),
    linear-gradient(to right, rgba(11, 11, 13, .82), rgba(11, 11, 13, .15) 70%);
}
.hero__inner { padding-block: clamp(2.75rem, 7vw, 5rem); }
.hero__copy { max-width: 730px; }
.hero h1 { margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__lede {
  font-size: clamp(1.06rem, 1.9vw, 1.25rem);
  color: #e6e7ec;
  max-width: 58ch;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .95rem;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.chips svg { width: .95em; height: .95em; fill: var(--gold); flex: none; }

/* ---------- breadcrumb ---------- */
.crumbs {
  font-size: .875rem;
  color: var(--text-inv-soft);
  margin-bottom: 1.1rem;
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .55; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--gold); text-decoration: underline; }
.crumbs [aria-current="page"] { color: #fff; }

/* ---------- generic grid ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

/* ---------- service cards ---------- */
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.svc__media { aspect-ratio: 4 / 3; background: var(--paper-3); overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { margin-bottom: .5rem; }
.svc__body p { color: var(--text-soft); font-size: .98rem; margin-bottom: 1.1rem; }
.svc__more {
  margin-top: auto;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.svc__more svg { width: .85em; height: .85em; fill: var(--gold-deep); transition: transform .18s ease; }
.svc:hover .svc__more svg { transform: translateX(4px); }
.svc__link { position: absolute; inset: 0; }
.svc__link span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- feature list ---------- */
.feature {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 194, 25, .13);
  margin-bottom: 1rem;
}
.feature__icon svg { width: 24px; height: 24px; fill: var(--gold); }
.feature h3 { color: #fff; margin-bottom: .45rem; }
.feature p { color: var(--text-inv-soft); font-size: .97rem; margin: 0; }

/* ---------- checklist ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.checks li {
  position: relative;
  padding-left: 2.1rem;
  font-size: 1.02rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .34em;
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230b0b0d' d='M9.6 17.2 4.4 12l1.7-1.7 3.5 3.5 8.3-8.3L19.6 7z'/%3E%3C/svg%3E") center / 78% no-repeat;
}
.checks--split { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); column-gap: 2rem; }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step;
}
.steps li {
  position: relative;
  counter-increment: step;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  padding: 2.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  top: -18px; left: 1.4rem;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.steps h3 { margin-bottom: .4rem; }
.steps p { color: var(--text-soft); font-size: .97rem; margin: 0; }

/* ---------- split ---------- */
.split {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--flip .split__media { order: 2; }
@media (max-width: 700px) { .split--flip .split__media { order: 0; } }

/* ---------- stats ---------- */
.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats li { background: var(--ink); padding: 1.6rem 1.25rem; text-align: center; }
.stats b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stats span { display: block; margin-top: .45rem; font-size: .9rem; color: var(--text-inv-soft); font-weight: 600; }

/* ---------- areas ---------- */
.areas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .7rem;
}
.areas a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.05rem;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: border-color .16s ease, transform .16s ease, background-color .16s ease;
}
.areas a:hover { border-color: var(--gold); transform: translateY(-2px); background: var(--gold-soft); }
.areas svg { width: 1.05em; height: 1.05em; fill: var(--gold-deep); flex: none; }
.section--dark .areas a { background: var(--ink-2); border-color: var(--line); color: #fff; }
.section--dark .areas a:hover { background: var(--ink-3); border-color: var(--gold); }
.section--dark .areas svg { fill: var(--gold); }

.area-card {
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.area-card h3 { margin-bottom: .35rem; }
.area-card__zip { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .7rem; }
.area-card p { color: var(--text-soft); font-size: .96rem; margin-bottom: 1rem; }
.area-card__call { font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.area-card__call svg { width: .9em; height: .9em; fill: var(--gold-deep); }
.area-card__call:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 860px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 1.4rem; height: 1.4rem;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e0a400' d='M11 5h2v14h-2z'/%3E%3Cpath fill='%23e0a400' d='M5 11h14v2H5z'/%3E%3C/svg%3E") center / 68% no-repeat;
  border-radius: 50%;
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq__body { padding: 0 1.35rem 1.3rem; color: var(--text-soft); }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(11, 11, 13, .96) 32%, rgba(11, 11, 13, .68));
}
.cta__inner {
  padding-block: clamp(3rem, 7vw, 5rem);
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}
@media (max-width: 820px) { .cta__inner { grid-template-columns: 1fr; } }
.cta h2 { margin-bottom: .4em; }
.cta p { color: #d9dae1; margin-bottom: 0; font-size: 1.08rem; }
.cta__actions { display: grid; gap: .8rem; }
.cta__phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.7rem);
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1;
}
.cta__phone:hover { text-decoration: underline; }
.cta__note { font-size: .92rem; color: var(--text-inv-soft); }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: .85rem;
}
.gallery__item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--paper-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .25s ease;
}
.gallery__item:hover img { transform: scale(1.06); filter: brightness(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color .18s ease;
}
.gallery__item:hover::after { border-color: var(--gold); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(6, 6, 8, .94);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[data-open="true"] { display: grid; }
.lightbox__img {
  max-width: min(1200px, 100%);
  max-height: 82vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox__count {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
}
.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transition: background-color .16s ease, transform .16s ease;
}
.lb-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: scale(1.06); }
.lb-btn svg { width: 22px; height: 22px; fill: currentColor; }
.lb-btn--close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-btn--prev  { left: clamp(.5rem, 2.5vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-btn--next  { right: clamp(.5rem, 2.5vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-btn--prev:hover, .lb-btn--next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-soft);
  margin-bottom: 1rem;
}
.info-card__icon svg { width: 23px; height: 23px; fill: var(--gold-deep); }
.info-card h3 { margin-bottom: .5rem; }
.info-card p, .info-card address {
  font-style: normal;
  color: var(--text-soft);
  margin: 0 0 1rem;
  font-size: 1rem;
}
.info-card__big {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: .55rem;
}
.info-card__big:hover { color: var(--gold-deep); }
.info-card a:not(.info-card__big):not(.btn) { color: var(--text); font-weight: 600; }
.info-card > :last-child { margin-top: auto; }

.hours { list-style: none; margin: 0 0 1rem; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--paper-3);
  font-size: .98rem;
}
.hours li:last-child { border-bottom: 0; }
.hours b { font-weight: 700; }
.hours span { color: var(--gold-deep); font-weight: 700; }

.map-frame {
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
  background: var(--paper-3);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- long-form legal prose ---------- */
.prose { max-width: 74ch; }
.prose > h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--paper-3);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1.6rem;
  margin-bottom: .4rem;
}
.prose p, .prose li { color: var(--text-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--gold-deep); }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--text); font-weight: 600; }
.prose a:hover { color: var(--gold-deep); }
.prose dl { margin: 0 0 1.1em; }
.prose dt { font-weight: 700; color: var(--text); margin-top: 1rem; }
.prose dd { margin: .2rem 0 0; color: var(--text-soft); }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .92rem;
  color: var(--text-soft);
}
.legal-meta b { color: var(--text); }

.callout {
  margin: 1.5rem 0;
  padding: 1.15rem 1.35rem;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-deep);
}
.callout p { color: var(--text); margin-bottom: 0; }

.toc {
  margin: 0 0 2.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
}
.toc h2 {
  font-family: var(--font);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  border: 0; padding: 0;
}
.toc ol {
  margin: 0; padding: 0;
  list-style: none;
  counter-reset: toc;
  columns: 2;
  column-gap: 2rem;
}
@media (max-width: 620px) { .toc ol { columns: 1; } }
.toc li { counter-increment: toc; margin-bottom: .45rem; break-inside: avoid; }
.toc li::before { content: counter(toc) ". "; color: var(--gold-deep); font-weight: 700; }
.toc a { color: var(--text); text-decoration: none; font-weight: 600; font-size: .95rem; }
.toc a:hover { color: var(--gold-deep); text-decoration: underline; }

.footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; align-items: center; }
.footer__legal a { text-decoration: none; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--text-inv-soft);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 0;
  font-size: .97rem;
}
.footer__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(160px, 1fr));
  padding-bottom: 2.75rem;
}
.footer h4 {
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.05rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { color: var(--text-inv-soft); text-decoration: none; }
.footer a:hover { color: var(--gold); text-decoration: underline; }
.footer__brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; text-decoration: none; }
.footer__brand img { width: 58px; }
.footer__blurb { max-width: 38ch; margin-bottom: 1.25rem; }
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold) !important;
  text-decoration: none !important;
}
.footer__phone svg { width: .85em; height: .85em; fill: currentColor; }
.footer__phone:hover { text-decoration: underline !important; }
.social { display: flex; gap: .6rem; margin-top: 1.15rem; }
.social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social svg { width: 20px; height: 20px; fill: currentColor; }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
}
.footer__bar p { margin: 0; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(11, 11, 13, .97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
  gap: .6rem;
}
.callbar .btn { flex: 1; padding: .85rem 1rem; font-size: 1rem; }
@media (max-width: 720px) {
  .callbar { display: flex; }
  body { --callbar-h: 74px; }
}

/* ---------- LeadConnector chat widget ----------
   The widget bubble anchors to the bottom-right, which is exactly where the
   sticky mobile call bar sits. Lift it clear on small screens so the phone
   number is never covered. The vendor renders into a few different container
   names depending on widget version, so all of them are nudged. */
@media (max-width: 720px) {
  chat-widget,
  #lc_text-widget,
  .lc_text-widget,
  #chat-widget-container,
  .chat-widget-container,
  [id^="lc_text-widget"] {
    bottom: calc(var(--callbar-h, 74px) + 10px) !important;
  }
}

@media print {
  chat-widget, #lc_text-widget, .lc_text-widget,
  #chat-widget-container, .chat-widget-container { display: none !important; }
}

@media print {
  .header, .topbar, .callbar, .cta, .hero__media, .nav-scrim { display: none !important; }
  body { color: #000; }
}

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

/* ---------- reveal on scroll ----------
   Scoped to .js so content is never hidden when the script fails to run.
   Without the class the page renders fully visible, just without the fade. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
  .js .reveal.is-in { opacity: 1; transform: none; }
}
