/* ==========================================================================
   EZ Lift Accessibility Products
   ========================================================================== */

:root {
  --navy:        #12314f;
  --navy-deep:   #0b2136;
  --blue:        #1f6feb;
  --blue-dark:   #1554b8;
  --amber:       #e8880c;
  --amber-dark:  #c4700a;

  --ink:         #16212e;
  --body:        #41536a;
  --muted:       #6b7c93;
  --line:        #dfe6ef;
  --tint:        #f2f6fb;
  --bg:          #ffffff;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 1px 2px rgba(16,35,55,.05), 0 8px 28px rgba(16,35,55,.07);
  --shadow-lg:   0 2px 6px rgba(16,35,55,.06), 0 22px 60px rgba(16,35,55,.13);
  --wrap:        1160px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;      /* 18px base — readable for older visitors */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: "Bitter", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-dark); }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

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

/* locality line inside an h1 — smaller visually, full weight to search engines */
.h1-loc {
  display: block;
  margin-top: .5em;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: .40em;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  line-height: 1.3;
}

/* --------------------------------------------------------- layout helpers */

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

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--tint); }
.section--navy { background: var(--navy); color: #c9d8e8; }
.section--navy h2, .section--navy h3 { color: #fff; }

.lede {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  color: var(--body);
  max-width: 62ch;
}

.eyebrow {
  display: inline-block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: .9rem;
}
.section--navy .eyebrow { color: #7fb2ff; }

.section-head { max-width: 66ch; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--amber);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- buttons  */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 54px;                 /* generous tap target */
  padding: 14px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,136,12,.32);
}
.btn--primary:hover { background: var(--amber-dark); color: #fff; }

.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.btn--outline {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------------------------------------------------------- header  */

.topbar {
  background: var(--navy-deep);
  color: #b9cee3;
  font-size: .95rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  align-items: center;
  justify-content: center;
  padding-block: 9px;
  text-align: center;
}
.topbar strong { color: #fff; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--blue), var(--navy));
  display: grid;
  place-items: center;
}
.brand__mark svg { width: 24px; height: 24px; fill: #fff; }
.brand__name {
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.brand__tag {
  display: block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 11px 15px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { background: var(--tint); color: var(--navy); }
.nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--tint);
}

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone svg { width: 19px; height: 19px; fill: var(--amber); flex: none; }
.header-phone:hover { color: var(--blue-dark); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 1040px) {
  .header-phone span { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 15px 12px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }
  .nav a:last-child { border-bottom: 0; }
  .site-header .wrap { position: relative; min-height: 72px; }
}

/* ------------------------------------------------------------------ hero  */

.hero {
  position: relative;
  background: var(--navy-deep);
  color: #cfdded;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,33,54,.95) 0%, rgba(11,33,54,.82) 46%, rgba(11,33,54,.5) 100%);
}
.hero__inner {
  position: relative;
  padding: clamp(64px, 10vw, 128px) 0;
  max-width: 44rem;
}
.hero h1 { color: #fff; margin-bottom: .45em; text-wrap: balance; }
.hero p {
  font-size: clamp(1.15rem, 2.1vw, 1.35rem);
  color: #cfdded;
  max-width: 40rem;
}
.hero .btn-row { margin-top: 34px; }

.hero__tagline {
  position: relative;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(1.75rem, 3.7vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  margin: .85em 0 .7em;
  padding-top: .72em;
  max-width: 22ch;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero__tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 5px;
  border-radius: 3px;
  background: var(--amber);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .98rem;
  color: #b6cbe0;
}
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { width: 17px; height: 17px; fill: var(--amber); flex: none; }

/* page banner (interior pages) */
.banner {
  background: var(--navy);
  color: #c2d5e8;
  padding: clamp(46px, 6vw, 76px) 0;
}
.banner h1 { color: #fff; margin-bottom: .3em; text-wrap: balance; }
.banner p { max-width: 60ch; font-size: 1.15rem; margin: 0; }

.crumbs {
  font-size: .93rem;
  color: #8fabc6;
  margin-bottom: 1rem;
}
.crumbs a { color: #cfe0f0; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { padding: 0 .45em; opacity: .6; }

/* ------------------------------------------------------------------ grid  */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- cards  */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img {
  aspect-ratio: 4 / 3;
  background: var(--tint);
  overflow: hidden;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .4em; }
.card__body p { font-size: 1.02rem; }
.card__link {
  margin-top: auto;
  padding-top: 16px;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.card__link:hover { gap: .7em; color: var(--navy); }

/* feature card (icon, no image) */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  height: 100%;
}
.feature__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--tint);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 25px; height: 25px; fill: var(--blue-dark); }
.feature h3 { font-size: 1.2rem; margin-bottom: .35em; }
.feature p { font-size: 1.02rem; margin: 0; }

/* --------------------------------------------------------------- split    */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.split--flip .split__media { order: -1; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* ------------------------------------------------------------------ list  */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding: 9px 0 9px 36px;
  border-bottom: 1px solid var(--line);
}
.ticks li:last-child { border-bottom: 0; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231554b8'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.section--navy .ticks li { border-color: rgba(255,255,255,.14); }
.section--navy .ticks li::before { background-color: rgba(255,255,255,.12); }

.ticks--2 { columns: 2; column-gap: 44px; }
.ticks--2 li { break-inside: avoid; }
@media (max-width: 700px) { .ticks--2 { columns: 1; } }

/* ------------------------------------------------------------------ stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  padding: 30px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
}
.stat__num {
  display: block;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .3em;
}
.stat__label { font-size: 1rem; color: #a8c3dc; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ----------------------------------------------------------------- faqs   */

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2341536a'%3E%3Cpath d='M19 13H5v-2h14z'/%3E%3Cpath d='M11 5h2v14h-2z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .22s var(--ease);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--tint); }
.faq__body { padding: 0 26px 24px; }
.faq__body p:first-child { margin-top: 0; }

/* ------------------------------------------------------------------ form  */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.field .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color .16s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field__hint { font-size: .93rem; color: var(--muted); margin-top: 6px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- contact  */

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list svg { width: 24px; height: 24px; fill: var(--blue-dark); flex: none; margin-top: 4px; }
.contact-list strong { display: block; color: var(--ink); font-size: 1.05rem; }
.contact-list a { font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

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

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: #d6e5f5;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 56ch; margin-inline: auto; font-size: 1.15rem; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* ---------------------------------------------------------------- footer  */

.site-footer {
  background: var(--navy-deep);
  color: #9db6cd;
  padding: clamp(48px, 6vw, 76px) 0 0;
  font-size: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .65em; }
.site-footer a { color: #9db6cd; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: #7b95ad; }
.site-footer .brand { margin-bottom: 18px; }

.footer-phone {
  display: inline-block;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: .2em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 24px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: .93rem;
  color: #7b95ad;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #cfe0f0 !important;
  font-weight: 600;
  text-decoration: none !important;
}
.social:hover { background: rgba(255,255,255,.1); color: #fff !important; }
.social svg { width: 18px; height: 18px; fill: currentColor; }

.license {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  font-size: .88rem;
  letter-spacing: .02em;
  color: #b6cbe0;
}

/* --------------------------------------------------------------- prose    */

.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: .45em; }

/* ---------------------------------------------------------------- gallery */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------------ misc  */

.note {
  border-left: 4px solid var(--amber);
  background: #fffaf2;
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note p { margin: 0; }
.note strong { color: var(--ink); }

.center { text-align: center; }
.mt-lg { margin-top: 36px; }
