/* LiftWorks Premium Simple Website
   Senior-friendly: high contrast, large type, simple sections, obvious calls to action.
*/

:root {
  --navy: #05264d;
  --navy-2: #0b3a70;
  --blue-soft: #eaf2fb;
  --gold: #c9962f;
  --gold-2: #e8c66a;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --white: #ffffff;
  --text: #122032;
  --muted: #5f6b7a;
  --line: #eadfcb;
  --shadow: 0 22px 60px rgba(5, 38, 77, .18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 900;
  z-index: 1000;
}

.skip-link:focus {
  left: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  min-width: max-content;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(5, 38, 77, .14);
  background: white;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.5px;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  font-size: 16px;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-call {
  text-decoration: none;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(5, 38, 77, .18);
  white-space: nowrap;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 16px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 16px 18px;
  background: var(--paper);
}

.mobile-menu a {
  display: block;
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  padding: 12px;
  border-radius: 12px;
}

.mobile-menu a:hover {
  background: var(--blue-soft);
}

.mobile-call {
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  margin-top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 710px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-wide.jpg");
  background-size: cover;
  background-position: center left;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 38, 77, .92) 0%, rgba(5, 38, 77, .74) 38%, rgba(255,250,240,.66) 72%, rgba(255,250,240,.22) 100%),
    radial-gradient(circle at 18% 18%, rgba(232,198,106,.5), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 78px 0;
}

.hero-card {
  width: min(690px, 100%);
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255,255,255,.68);
  border-left: 8px solid var(--gold);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--gold-2);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .4px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.06;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: -1.6px;
  max-width: 680px;
}

.hero-text {
  margin: 22px 0 0;
  color: #2d3b4d;
  font-size: clamp(21px, 2.5vw, 27px);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 24px;
  text-decoration: none;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 950;
  border: 2px solid transparent;
  box-shadow: 0 14px 28px rgba(5, 38, 77, .15);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}

.btn:hover,
.header-call:hover,
.call-strip a:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: white;
  color: var(--navy);
  border-color: var(--gold);
}

.btn-outline {
  color: white;
  border-color: rgba(255,255,255,.65);
  background: transparent;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 32px;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-weight: 950;
  font-size: 24px;
}

/* Call Strip */
.call-strip {
  background: var(--navy);
  color: white;
  padding: 18px 0;
}

.call-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.call-strip strong {
  display: block;
  font-size: 25px;
}

.call-strip span {
  display: block;
  color: #dbe9f8;
}

.strip-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.call-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 950;
  white-space: nowrap;
}

/* General Sections */
.section {
  padding: clamp(62px, 8vw, 96px) 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(36px, 4.6vw, 58px);
  letter-spacing: -.8px;
}

.section-title p,
.photo-copy p,
.why-card p,
.quote-inner p,
.contact-info p,
.lead-form p {
  color: var(--muted);
  font-size: 20px;
}

/* Services */
.services {
  background:
    radial-gradient(circle at 90% 10%, rgba(232,198,106,.22), transparent 30%),
    var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 12px 34px rgba(5, 38, 77, .08);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(201,150,47,.08);
}

.service-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--navy);
  border: 4px solid var(--gold);
  margin-bottom: 22px;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--white);
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 19px;
}

/* Photos */
.photo-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.photo-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 950;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 4px;
  font-size: 22px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 245px;
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(5, 38, 77, .12);
}

.photo-grid .photo-large {
  grid-row: span 2;
  object-position: center;
}

/* Why */
.why {
  background:
    linear-gradient(135deg, rgba(5,38,77,.96), rgba(11,58,112,.94)),
    radial-gradient(circle at 20% 10%, rgba(201,150,47,.35), transparent 38%);
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: center;
}

.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  padding: 36px;
}

.why h2,
.quote-band h2 {
  color: white;
}

.why-card p {
  color: #dbe9f8;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check-list div {
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: 20px;
  padding: 22px;
  min-height: 138px;
  box-shadow: 0 14px 30px rgba(0,0,0,.13);
}

.check-list span {
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
  display: inline-block;
  margin-bottom: 8px;
}

.check-list strong {
  display: block;
  font-size: 21px;
}

.check-list small {
  display: block;
  color: var(--muted);
  font-size: 16px;
  margin-top: 5px;
}

/* Quote Band */
.quote-band {
  background:
    linear-gradient(rgba(255,250,240,.9), rgba(255,250,240,.92)),
    url("assets/stairlift-chair.jpg");
  background-size: cover;
  background-position: center;
}

.quote-inner {
  background: var(--navy);
  color: white;
  border-radius: 34px;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
  border: 2px solid rgba(232,198,106,.8);
  box-shadow: var(--shadow);
}

.quote-inner p {
  color: #dbe9f8;
  margin: 14px auto 28px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-info,
.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(5, 38, 77, .08);
  padding: clamp(26px, 4vw, 42px);
}

.contact-box {
  margin: 16px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: var(--cream);
}

.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-box a,
.contact-box strong {
  display: block;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 950;
  text-decoration: none;
  margin-top: 4px;
}

.note {
  font-size: 16px !important;
  margin: 18px 0 0;
}

.lead-form h3 {
  font-size: 32px;
}

label {
  display: block;
  color: var(--navy);
  font-weight: 950;
  margin: 18px 0;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 2px solid #d8cdb8;
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 16px 16px;
  font: inherit;
  min-height: 56px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(201,150,47,.25);
  border-color: var(--gold);
}

button[type="submit"] {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(5, 38, 77, .12);
}

button[type="submit"]:hover {
  filter: brightness(.98);
}

.form-call {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 950;
  font-size: 20px;
}

/* Footer */
.footer {
  background: #031a34;
  color: white;
  padding: 30px 0 94px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.footer span {
  color: #dbe9f8;
}

.footer a {
  color: var(--gold-2);
  font-weight: 950;
  text-decoration: none;
}

/* Sticky call bar */
.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(760px, calc(100% - 22px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(5, 38, 77, .22);
  backdrop-filter: blur(10px);
}

.sticky-call a {
  min-height: 50px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 950;
  font-size: 19px;
  text-align: center;
}

.sticky-call a:first-child {
  background: var(--navy);
  color: white;
}

.sticky-call a:last-child {
  background: var(--gold);
  color: var(--navy);
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links,
  .header-call {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,38,77,.84), rgba(5,38,77,.55), rgba(255,250,240,.9)),
      radial-gradient(circle at 20% 10%, rgba(232,198,106,.45), transparent 35%);
  }

  .hero-card {
    margin-top: 240px;
  }

  .call-strip-inner,
  .photo-layout,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .call-strip-inner {
    display: grid;
  }

  .strip-buttons a {
    flex: 1 1 220px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .photo-copy {
    position: static;
  }

  .photo-grid {
    grid-auto-rows: 210px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero-card {
    margin-top: 200px;
    border-left-width: 5px;
    border-radius: 24px;
  }

  .btn {
    width: 100%;
    font-size: 20px;
  }

  .call-strip a {
    width: 100%;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .photo-grid .photo-large {
    grid-row: span 1;
  }

  .quote-actions .btn {
    width: 100%;
  }

  .sticky-call {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .sticky-call a {
    font-size: 18px;
  }

  .footer {
    padding-bottom: 150px;
  }
}

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

.hidden-field {
  display: none !important;
}
