/* My Handy Hero — assembly-first redesign */

:root {
  --navy: #16233f;
  --navy-dark: #0e1830;
  --orange: #f28c28;
  --orange-dark: #d9751a;
  --white: #ffffff;
  --offwhite: #f7f5f0;
  --ink: #1c2436;
  --muted: #5b6478;
  --line: #e5e1d8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 24, 48, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; margin-bottom: .5rem; }

section { padding: 56px 0; }
.section-lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, color .12s ease;
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--orange); color: var(--navy-dark); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-call { background: var(--orange); color: var(--navy-dark); padding: .6rem 1.1rem; font-size: .92rem; white-space: nowrap; }
.btn-call:hover { background: var(--orange-dark); }
.btn-small { padding: .65rem 1.2rem; font-size: .95rem; margin-top: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .8rem; padding-bottom: .8rem;
}
.logo {
  font-weight: 800; font-size: 1.2rem; color: var(--navy);
  text-decoration: none; letter-spacing: -0.01em;
}
.main-nav { display: none; gap: 1.4rem; }
.main-nav a {
  color: var(--navy); text-decoration: none; font-weight: 600; font-size: .98rem;
}
.main-nav a:hover { color: var(--orange-dark); }
.header-actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; }

@media (max-width: 899px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .9rem 20px; border-top: 1px solid var(--line); }
  .btn-call { font-size: .82rem; padding: .55rem .9rem; }
}
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 70%);
  color: var(--white);
  padding: 64px 0;
}
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero h1 { color: var(--white); margin: .6rem 0 1rem; }
.eyebrow {
  display: inline-block;
  color: var(--orange); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .12em;
}
.hero-sub { color: #cfd6e4; font-size: 1.1rem; max-width: 34rem; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--orange); padding: 22px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; text-align: center;
}
.trust-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--navy-dark); }
.trust-item span { font-size: .9rem; font-weight: 600; color: var(--navy-dark); opacity: .85; }

/* ---------- Why assembly ---------- */
.why-assembly { background: var(--offwhite); padding: 40px 0; text-align: center; }
.why-text {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 700; color: var(--navy); max-width: 46rem; margin: 0 auto;
}

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
.service-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; background: var(--white);
  display: flex; flex-direction: column;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-card .service-price { margin-top: auto; padding-top: 1rem; color: var(--navy); }
.service-card .service-price strong { color: var(--navy); }
.service-card .service-price .total { display: block; font-weight: 700; color: var(--orange-dark); }
.service-card.featured {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: var(--shadow);
}
.service-card.featured h3 { color: var(--white); font-size: 1.45rem; }
.service-card.featured p { color: #cfd6e4; }
.service-card.featured .service-price { color: var(--white); }
.service-card.featured .service-price strong { color: var(--white); }
.service-card.featured .service-price .total { color: var(--orange); }
.service-card.featured .btn-primary { align-self: flex-start; }
.service-tag {
  display: inline-block; align-self: flex-start;
  background: var(--orange); color: var(--navy-dark);
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card.featured { grid-column: span 2; }
}

/* ---------- Pricing ---------- */
.pricing { background: var(--offwhite); }
.pricing p { max-width: 44rem; font-size: 1.08rem; color: var(--ink); }

/* ---------- How it works ---------- */
.steps {
  list-style: none; display: grid; gap: 1rem;
  grid-template-columns: 1fr; margin-top: 1.5rem;
}
.steps li {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; background: var(--white);
}
.steps strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: .3rem; }
.steps span { color: var(--muted); }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); }
.reviews-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
.review-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; background: var(--offwhite);
}
.stars { color: var(--orange); font-size: 1.15rem; letter-spacing: .1em; margin-bottom: .6rem; }
.review-card blockquote { font-size: 1rem; color: var(--ink); margin-bottom: .8rem; }
.review-card figcaption { font-size: .88rem; font-weight: 600; color: var(--muted); }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Areas ---------- */
.areas { background: var(--navy); }
.areas h2 { color: var(--white); }
.areas p { color: #cfd6e4; font-size: 1.08rem; max-width: 46rem; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 1.2rem; display: grid; gap: .7rem; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; background: var(--white);
}
.faq-list summary {
  font-weight: 700; color: var(--navy); cursor: pointer; font-size: 1.02rem;
}
.faq-list details p { margin-top: .6rem; color: var(--muted); }

/* ---------- Quote form ---------- */
.quote { background: var(--offwhite); }
.quote form {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; margin-top: 1.2rem;
  box-shadow: var(--shadow); max-width: 640px;
}
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: .35rem; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; font-size: 1rem; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,140,40,.18);
}
@media (min-width: 640px) {
  .quote form { grid-template-columns: 1fr 1fr; }
  .field-full, .quote form .btn { grid-column: 1 / -1; }
}
.quote-alt { margin-top: 1.2rem; color: var(--muted); }
.quote-alt a { color: var(--orange-dark); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #aeb7cc; padding: 40px 0; }
.footer-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.footer-brand { color: var(--white); font-weight: 800; font-size: 1.1rem; margin-bottom: .3rem; }
.site-footer p { font-size: .95rem; }
.site-footer a { color: var(--orange); text-decoration: none; font-weight: 600; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1.4fr 1fr; } }
