/* ==========================================================================
   Honey-Do Handyman LLC — one-page site
   Palette from the printed flyer: black / orange / paper white, red accent
   ========================================================================== */

/* ---------- fonts (self-hosted) ---------- */
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/nunito-400.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/nunito-600.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 800; font-display: swap; src: url('assets/fonts/nunito-800.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 900; font-display: swap; src: url('assets/fonts/nunito-900.woff2') format('woff2'); }
@font-face { font-family: 'Rokkitt'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/rokkitt-700.woff2') format('woff2'); }
@font-face { font-family: 'Rokkitt'; font-style: normal; font-weight: 800; font-display: swap; src: url('assets/fonts/rokkitt-800.woff2') format('woff2'); }

/* ---------- tokens ---------- */
:root {
  --black: #101010;
  --black-2: #0a0a0a;
  --ink: #1a1a1a;
  --paper: #F7F2E9;
  --paper-deep: #EFE7D8;
  --orange: #EE6A1F;
  --orange-deep: #D45A12;
  --orange-soft: #FFE9DA;
  --red: #C22B2B;
  --white: #ffffff;
  --muted-paper: #6b675f;
  --muted-dark: #b9b5ad;
  --round: 'Nunito', system-ui, -apple-system, sans-serif;
  --slab: 'Rokkitt', 'Rockwell', Georgia, serif;
  --shadow-chunk: 4px 4px 0 var(--black);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--round);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--paper);
  background: var(--black);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; font-weight: 900; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
::selection { background: var(--orange); color: var(--black); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.section-paper :focus-visible, .emergency :focus-visible { outline-color: var(--black); }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--orange); color: var(--black); font-weight: 800;
  padding: .6em 1.2em; border-radius: 0 0 10px 10px; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.wrap { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }

/* ---------- scroll progress ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 150; background: transparent; }
.progress span { display: block; width: 0; height: 100%; background: var(--orange); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(16, 16, 16, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled { background: rgba(10, 10, 10, .92); border-color: #262626; }
.nav {
  max-width: 1120px; margin-inline: auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: padding .3s ease;
}
.site-header.scrolled .nav { padding-block: 8px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 46px; }
.brand-name { font-weight: 900; font-size: 1.15rem; letter-spacing: .01em; }
.brand-name em { font-style: normal; color: var(--orange); }
.brand-llc { font-size: .68em; font-weight: 800; color: var(--muted-dark); letter-spacing: .06em; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu > a:not(.btn) {
  text-decoration: none; font-weight: 700; font-size: .98rem; color: var(--paper);
  padding-block: 4px; border-bottom: 3px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-menu > a:not(.btn):hover { color: var(--orange); }
.nav-menu > a.active { color: var(--orange); border-color: var(--orange); }
.nav-call .ic { width: 17px; height: 17px; fill: currentColor; }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: .72em 1.35em; border-radius: 12px; border: 2px solid transparent;
  font: 800 1rem var(--round); text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn b { font-weight: 900; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn-orange { background: var(--orange); color: var(--black); }
.btn-orange:hover { background: var(--orange-deep); box-shadow: 0 8px 22px rgba(238, 106, 31, .35); }
.btn-ghost { border-color: var(--paper); color: var(--paper); background: transparent; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, .4); }
.btn-lg { padding: .85em 1.6em; font-size: 1.05rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 170px 0 40px;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(238, 106, 31, .16), transparent 65%),
    radial-gradient(700px 420px at 8% 92%, rgba(238, 106, 31, .08), transparent 60%),
    var(--black);
}
.hero-inner {
  max-width: 1120px; margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.badge-24 {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font: 800 .92rem var(--slab); text-transform: uppercase; letter-spacing: .12em;
  padding: .45em 1.1em; border-radius: 999px; margin-bottom: 1.2rem;
}
.badge-24 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--white); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; transform: scale(.7); } }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); letter-spacing: -.01em; }
.accent { color: var(--orange); }
.lede { font-size: 1.13rem; max-width: 34em; color: var(--muted-dark); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6rem 0 1.4rem; }
.cta-row.center { justify-content: center; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-size: .88rem; font-weight: 700; color: var(--muted-dark);
  border: 1px solid rgba(247, 242, 233, .28); border-radius: 999px; padding: .3em .95em;
}
.hero-logo { display: grid; place-items: center; }
.hero-logo img {
  width: min(420px, 78vw);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .55));
  animation: logo-drop 1s cubic-bezier(.34, 1.56, .64, 1) both,
             hammer-tap 7s ease-in-out 2.4s infinite;
  transform-origin: 50% 78%;
}
@keyframes logo-drop {
  from { transform: translateY(-56px) rotate(-7deg); }
  to   { transform: translateY(0) rotate(0); }
}
@keyframes hammer-tap {
  0%, 90%, 100% { transform: rotate(0); }
  93% { transform: rotate(-5deg); }
  96% { transform: rotate(2.5deg); }
  98% { transform: rotate(-1deg); }
}
.hero-tools { position: absolute; inset: 0; z-index: 1; color: rgba(238, 106, 31, .15); pointer-events: none; }
.float-tool { position: absolute; width: 120px; animation: floaty 9s ease-in-out infinite alternate; }
.float-tool.t1 { top: 12%; left: 4%; }
.float-tool.t2 { top: 64%; left: 12%; width: 96px; animation-duration: 11s; animation-delay: -3s; }
.float-tool.t3 { top: 16%; right: 6%; width: 104px; animation-duration: 8s; animation-delay: -5s; }
.float-tool.t4 { top: 74%; right: 10%; width: 88px; animation-duration: 12s; animation-delay: -2s; }
@keyframes floaty {
  from { transform: translateY(-12px) rotate(-4deg); }
  to   { transform: translateY(14px) rotate(5deg); }
}

/* ---------- saw-tooth dividers (nod to the saw on the business card) ---------- */
.saw {
  height: 24px; margin-top: 48px;
  background-repeat: repeat-x; background-size: 46px 24px; background-position: bottom center;
}
.saw.flip { transform: scaleY(-1); margin-top: 0; margin-bottom: 48px; }
.saw-paper  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='24' viewBox='0 0 46 24'%3E%3Cpath d='M0 24 L23 0 L46 24 Z' fill='%23F7F2E9'/%3E%3C/svg%3E"); }
.saw-black  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='24' viewBox='0 0 46 24'%3E%3Cpath d='M0 24 L23 0 L46 24 Z' fill='%23101010'/%3E%3C/svg%3E"); }
.saw-orange { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='24' viewBox='0 0 46 24'%3E%3Cpath d='M0 24 L23 0 L46 24 Z' fill='%23EE6A1F'/%3E%3C/svg%3E"); }

/* ---------- ticker ---------- */
.ticker { background: var(--orange); color: var(--black); overflow: hidden; padding: .72rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  white-space: nowrap;
  font: 800 1rem var(--slab); text-transform: uppercase; letter-spacing: .14em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- shared section styles ---------- */
section { padding: 5rem 0 0; }
section .wrap { padding-bottom: 4rem; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-black { background: var(--black); color: var(--paper); }
.overline {
  display: inline-block;
  font: 800 .95rem var(--slab); text-transform: uppercase; letter-spacing: .16em;
  color: var(--red); border-bottom: 3px solid currentColor; padding-bottom: .2em;
  margin-bottom: 1rem;
}
.section-black .overline { color: var(--orange); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); letter-spacing: -.01em; }
.section-lede { color: var(--muted-paper); max-width: 40em; margin-bottom: 2.2rem; }

/* ---------- services ---------- */
.card-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px;
}
.card {
  background: var(--white); border: 2px solid var(--black); border-radius: 14px;
  padding: 1.5rem 1.4rem 1.1rem; box-shadow: var(--shadow-chunk);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--orange); }
.card h3 { font-size: 1.12rem; margin: .9rem 0 .35rem; }
.card p { font-size: .95rem; color: var(--muted-paper); margin: 0; }
.card-ic {
  display: grid; place-items: center; width: 52px; height: 52px;
  background: var(--black); border-radius: 12px;
}
.card-ic svg { width: 27px; height: 27px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-more { background: var(--orange-soft); border-style: dashed; }

/* ---------- emergency band ---------- */
.emergency { background: var(--orange); color: var(--black); text-align: center; padding-top: 0; }
.emergency h2 { max-width: 18em; margin-inline: auto; }
.emergency p { font-weight: 600; font-size: 1.1rem; }
.emergency .saw { margin-top: 42px; }

/* ---------- why us ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px;
  margin: 2.2rem 0 3rem;
}
.feature { border-left: 3px solid var(--orange); padding-left: 1.1rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.feature p { color: var(--muted-dark); font-size: .97rem; margin: 0; }
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px;
  border-top: 1px solid #2b2b2b; padding-top: 2rem;
}
.steps li { color: var(--muted-dark); font-size: .97rem; }
.steps b { display: block; color: var(--paper); font-size: 1.05rem; margin-bottom: .25rem; }
.steps b::first-letter { color: var(--orange); }

/* ---------- team ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 320px)); gap: 26px;
  justify-content: center; margin-top: 2rem;
}
.person {
  background: var(--white); border: 2px solid var(--black); border-radius: 16px;
  box-shadow: var(--shadow-chunk); padding: 2.1rem 1.6rem; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.person:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--orange); }
.avatar {
  display: grid; place-items: center; width: 86px; height: 86px; margin: 0 auto 1rem;
  background: var(--orange); color: var(--black); border-radius: 50%;
  font: 900 1.7rem var(--round); letter-spacing: .02em;
}
.person h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.person-mail { display: block; margin-top: .8rem; font-size: .92rem; color: var(--muted-paper); text-decoration-color: transparent; transition: color .2s, text-decoration-color .2s; overflow-wrap: anywhere; }
.person-mail:hover { color: var(--orange-deep); text-decoration-color: currentColor; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; }
.contact-list li { padding: .4rem 0; border-bottom: 1px solid #262626; }
.contact-list b { display: inline-block; min-width: 82px; color: var(--orange); }
.contact-list a { color: var(--paper); text-underline-offset: 3px; }
.contact-list a:hover { color: var(--orange); }
#contact-form { display: flex; flex-direction: column; gap: 6px; background: var(--ink); border: 1px solid #2b2b2b; border-radius: 16px; padding: 1.8rem; }
#contact-form label { font-weight: 700; font-size: .92rem; margin-top: .7rem; }
#contact-form input, #contact-form textarea {
  font: 600 1rem var(--round); color: var(--paper);
  background: #232323; border: 2px solid #3a3a3a; border-radius: 10px; padding: .65em .8em;
  transition: border-color .2s ease;
}
#contact-form input:focus, #contact-form textarea:focus { border-color: var(--orange); outline: none; }
#contact-form button { margin-top: 1.2rem; }
.form-note { font-size: .84rem; color: var(--muted-dark); margin: .8rem 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--black-2); color: var(--muted-dark); padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: auto 1fr 1fr; gap: 40px; align-items: center; padding-bottom: 2rem; }
.footer-brand img { width: 120px; }
.site-footer b { color: var(--paper); }
.site-footer a { color: var(--muted-dark); text-underline-offset: 3px; }
.site-footer a:hover { color: var(--orange); }
.footer-legal {
  border-top: 1px solid #222; padding-block: 1.4rem 1.8rem;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem;
}
.footer-legal p { margin: 0; }
.site-credit { color: #8a867e; }

/* ---------- back to top + mobile call bar ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--black);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 22px; height: 22px; }
.callbar { display: none; }

/* ---------- scroll-reveal (JS-gated so no-JS users see everything) ---------- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s ease var(--d, 0s), transform .7s cubic-bezier(.22, 1, .36, 1) var(--d, 0s);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero { padding-top: 140px; }
  .hero-logo { order: -1; }
  .hero-logo img { width: min(300px, 62vw); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
  .footer-legal { justify-content: center; text-align: center; }
}
@media (max-width: 860px) {
  .nav-toggle {
    display: grid; place-items: center; width: 46px; height: 46px;
    background: transparent; border: 2px solid #3a3a3a; border-radius: 10px; cursor: pointer;
  }
  .bars { display: grid; gap: 5px; }
  .bars i { display: block; width: 20px; height: 2.5px; background: var(--paper); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
  .nav-toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(10, 10, 10, .97); border-bottom: 1px solid #262626;
    padding: 14px 24px 20px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > a:not(.btn) { padding: .7em 0; border-bottom: 1px solid #222; }
  .nav-call { margin-top: 10px; }
}
@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; inset: auto 0 0 0; z-index: 95;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10, 10, 10, .94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid #2b2b2b;
  }
  .to-top { bottom: 84px; }
  .cta-row .btn { width: 100%; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .callbar, .to-top, .progress, .ticker, .hero-tools, .saw, #contact-form { display: none !important; }
  body { background: #fff; color: #000; }
  .section-black, .hero, .site-footer { background: #fff !important; color: #000 !important; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
}
