:root {
  --ink: #111514;
  --ink-2: #1b201f;
  --paper: #f4f0e6;
  --paper-2: #e9e4d8;
  --white: #fffdf8;
  --orange: #ff5a1f;
  --orange-dark: #d94713;
  --acid: #d9ff63;
  --muted: #66706d;
  --line: rgba(17, 21, 20, .15);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --shell: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font: 16px/1.65 var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
svg { display: block; }
.shell { width: min(100% - 2rem, var(--shell)); margin-inline: auto; }
.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: fixed; z-index: 999; top: .75rem; left: .75rem; padding: .65rem 1rem; background: var(--acid); color: var(--ink); border-radius: 999px; transform: translateY(-180%); transition: transform .2s; font-weight: 800; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; background: rgba(17, 21, 20, .96); color: #fff; border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.nav-row { min-height: 76px; display: flex; align-items: center; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; margin-right: auto; }
.brand-mark { width: 45px; height: 45px; display: grid; place-items: center; position: relative; flex: 0 0 auto; background: var(--orange); clip-path: polygon(16% 0,84% 0,100% 22%,88% 100%,12% 100%,0 22%); }
.brand-mark::before { content: ""; position: absolute; inset: 5px; border: 1.5px solid rgba(17,21,20,.55); clip-path: inherit; }
.brand-mark span { position: relative; font: 900 1.55rem/1 var(--display); color: var(--ink); }
.brand-copy strong { display: block; font: 900 1.25rem/.9 var(--display); letter-spacing: .13em; }
.brand-copy span { display: block; margin-top: .27rem; font-size: .59rem; line-height: 1; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.62); }
.main-nav { display: none; align-items: center; gap: 1.6rem; }
.main-nav a { position: relative; color: rgba(255,255,255,.7); font-size: .83rem; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--acid); transition: right .25s var(--ease); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }
.header-call { display: none; align-items: center; gap: .7rem; padding: .55rem 1rem; border-left: 1px solid rgba(255,255,255,.18); }
.header-call svg { width: 22px; fill: none; stroke: var(--acid); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header-call span { font: 800 1.05rem/1 var(--display); letter-spacing: .03em; }
.header-call small { display: block; margin-bottom: .25rem; color: rgba(255,255,255,.55); font: 600 .6rem/1 var(--font); letter-spacing: .1em; text-transform: uppercase; }
.nav-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; cursor: pointer; }
.nav-toggle i { display: block; width: 18px; height: 2px; background: #fff; }
body.nav-open .main-nav { position: absolute; top: 76px; left: 0; right: 0; display: grid; padding: .75rem 1rem 1rem; background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
body.nav-open .main-nav a { padding: .7rem; border-bottom: 1px solid rgba(255,255,255,.08); }

/* Buttons */
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: 3px; font-size: .88rem; font-weight: 800; cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #fff; box-shadow: 0 14px 28px rgba(255,90,31,.2); }
.button-primary:hover { background: #ff6b36; }
.button-ghost { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--acid); color: var(--acid); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(4.5rem, 8vw, 7.5rem) 0 0; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 8% 20%, rgba(255,90,31,.13), transparent 29%), radial-gradient(circle at 88% 82%, rgba(217,255,99,.07), transparent 28%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-layout { position: relative; display: grid; gap: 3rem; align-items: center; }
.eyebrow, .kicker { margin: 0 0 1rem; color: var(--orange); font-size: .68rem; line-height: 1.3; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.68); }
.eyebrow span { width: 9px; height: 9px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 5px rgba(217,255,99,.1); }
.hero h1 { margin: 0; max-width: 8.5ch; font: 900 clamp(4rem, 13vw, 8.4rem)/.78 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 39rem; margin: 1.75rem 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.rating-proof { width: fit-content; display: flex; align-items: center; gap: .8rem; margin-top: 2rem; padding: .75rem 1rem .75rem 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.rating-score { font: 800 2rem/1 var(--display); }
.rating-proof b { display: block; color: var(--acid); font-size: .72rem; letter-spacing: .12em; }
.rating-proof small { display: block; margin-top: .25rem; color: rgba(255,255,255,.58); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rating-arrow { color: var(--orange); margin-left: .35rem; }

.hero-board { position: relative; overflow: hidden; min-height: 580px; padding: 1.25rem; background: var(--paper); color: var(--ink); border-radius: 3px 3px 0 0; box-shadow: 0 35px 80px rgba(0,0,0,.36); }
.hero-board::after { content: "ODIN / HANDYMAN / LAS VEGAS"; position: absolute; right: -7.6rem; top: 12.5rem; transform: rotate(90deg); color: rgba(17,21,20,.33); font: 800 .57rem/1 var(--font); letter-spacing: .25em; }
.board-top { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.status { display: flex; align-items: center; gap: .45rem; }
.status i { width: 7px; height: 7px; background: #31b96b; border-radius: 50%; box-shadow: 0 0 0 4px rgba(49,185,107,.12); }
.board-code { color: var(--muted); }
.project-photo { margin: 1rem 0; border: 1px solid var(--line); background: var(--white); }
.project-photo-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #d7d2c7; }
.project-photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; filter: saturate(.82) contrast(1.04); }
.project-photo-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); pointer-events: none; }
.project-photo-frame > span { position: absolute; left: .7rem; top: .7rem; padding: .35rem .55rem; background: var(--acid); color: var(--ink); font: 800 .55rem/1 var(--font); letter-spacing: .1em; text-transform: uppercase; }
.project-photo figcaption { display: flex; flex-direction: column; gap: .1rem; padding: .75rem .85rem; border-top: 3px solid var(--orange); }
.project-photo figcaption strong { font: 800 1.05rem/1 var(--display); text-transform: uppercase; }
.project-photo figcaption small { color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .04em; }
.board-promise { display: grid; grid-template-columns: 28px 1fr; gap: .75rem; padding: .72rem 0; border-top: 1px solid var(--line); }
.board-promise > span { color: var(--orange); font: 800 .8rem/1.5 var(--display); }
.board-promise p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.board-promise strong { color: var(--ink); }

.trust-strip { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.13); }
.trust-strip div { min-height: 105px; display: flex; flex-direction: column; justify-content: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,.13); }
.trust-strip div:nth-child(even) { border-right: 0; }
.trust-strip strong { color: var(--acid); font: 900 2rem/1 var(--display); letter-spacing: .02em; }
.trust-strip span { margin-top: .4rem; color: rgba(255,255,255,.48); font-size: .61rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

/* Sections */
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-heading { display: grid; gap: 1.5rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2, .reviews h2, .why h2, .quote h2, .final-cta h2 { margin: 0; font: 900 clamp(3.1rem, 8vw, 6.5rem)/.84 var(--display); letter-spacing: -.035em; text-transform: uppercase; }
.section-heading > p { max-width: 35rem; margin: 0; color: var(--muted); font-size: 1rem; }
.service-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { min-height: 300px; display: flex; flex-direction: column; padding: 1.5rem; background: var(--white); transition: background .25s, color .25s; }
.service-card.feature { min-height: 370px; background: var(--orange); color: #fff; }
.service-card:hover:not(.feature) { background: #fff; }
.service-num { color: var(--muted); font: 800 .72rem/1 var(--display); letter-spacing: .08em; }
.feature .service-num { color: rgba(255,255,255,.65); }
.service-icon { width: 45px; margin: 2.4rem 0 1.3rem; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature .service-icon { stroke: var(--acid); }
.service-card h3 { max-width: 14ch; margin: auto 0 .6rem; font: 800 1.75rem/.95 var(--display); text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.feature p { color: rgba(255,255,255,.75); }
.service-card a { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.28); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.service-note { margin: 1.5rem 0 0; color: var(--muted); font-size: .83rem; }
.service-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.why { position: relative; overflow: hidden; background: var(--orange); color: #fff; }
.why::before { content: "O"; position: absolute; right: -2rem; bottom: -12rem; color: rgba(17,21,20,.08); font: 900 44rem/.7 var(--display); }
.why-layout { position: relative; display: grid; gap: 4rem; }
.kicker.light { color: var(--acid); }
.why-copy p:not(.kicker) { max-width: 38rem; margin: 1.75rem 0; color: rgba(255,255,255,.76); }
.text-link { display: inline-flex; align-items: center; gap: .7rem; padding-bottom: .4rem; border-bottom: 1px solid rgba(255,255,255,.5); font-size: .78rem; font-weight: 800; }
.process-list { list-style: none; margin: 0; padding: 0; background: var(--ink); }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 1rem; padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.process-list li:last-child { border-bottom: 0; }
.process-list > li > span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--acid); color: var(--ink); border-radius: 50%; font: 900 1rem/1 var(--display); }
.process-list h3 { margin: 0 0 .35rem; font: 800 1.4rem/1 var(--display); text-transform: uppercase; }
.process-list p { margin: 0; color: rgba(255,255,255,.58); font-size: .82rem; }

.reviews { background: var(--white); }
.reviews-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.review-total { display: flex; align-items: center; gap: 1rem; }
.review-total > strong { font: 900 4.2rem/.8 var(--display); }
.review-total b { display: block; color: var(--orange); font-size: .8rem; letter-spacing: .12em; }
.review-total small { display: block; margin-top: .35rem; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-grid { display: grid; gap: 1rem; }
.review-card { min-height: 285px; display: flex; flex-direction: column; margin: 0; padding: 1.6rem; background: var(--paper); border: 1px solid var(--line); }
.quote-mark { color: var(--orange); font: 900 4.3rem/.65 Georgia, serif; }
.review-card blockquote { margin: auto 0 1.75rem; font: 700 1.45rem/1.3 var(--display); }
.review-card figcaption { display: flex; flex-direction: column; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-card figcaption strong { font-size: .75rem; }
.review-card figcaption span { margin-top: .2rem; color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.reviews-source { margin: 1.25rem 0 0; color: var(--muted); font-size: .73rem; }
.reviews-source a { color: var(--ink); font-weight: 800; }

.quote { background: var(--ink); color: #fff; }
.quote-layout { display: grid; gap: 3rem; }
.quote-copy > p:not(.kicker) { max-width: 34rem; color: rgba(255,255,255,.62); }
.direct-number { display: inline-flex; flex-direction: column; margin-top: 1.25rem; }
.direct-number span { color: var(--acid); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.direct-number strong { margin-top: .35rem; font: 800 1.8rem/1 var(--display); }
.request-form { display: grid; gap: 1rem; padding: 1.4rem; background: var(--paper); color: var(--ink); border-top: 5px solid var(--orange); }
.request-form label { display: grid; gap: .4rem; color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.request-form input, .request-form textarea, .request-form select { width: 100%; border: 1px solid var(--line); border-radius: 2px; background: var(--white); padding: .85rem .9rem; font-size: .9rem; text-transform: none; letter-spacing: 0; }
.request-form textarea { resize: vertical; min-height: 112px; }
.request-form input:focus, .request-form textarea:focus, .request-form select:focus { outline: 3px solid rgba(255,90,31,.22); border-color: var(--orange); }
.form-row { display: grid; gap: 1rem; }
.button-wide { width: 100%; }
.form-note { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.5; }

.final-cta { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--acid); }
.final-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.final-inner p { margin: 0 0 .5rem; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.round-call { width: min(100%, 330px); aspect-ratio: 2.4/1; display: grid; grid-template-columns: 1fr auto; align-content: center; padding: 1.5rem 1.8rem; background: var(--ink); color: #fff; border-radius: 999px; transition: transform .25s var(--ease); }
.round-call:hover { transform: rotate(-2deg) scale(1.02); }
.round-call span { color: var(--acid); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.round-call strong { grid-column: 1; margin-top: .25rem; font: 800 1.55rem/1 var(--display); }
.round-call i { grid-row: 1/3; grid-column: 2; align-self: center; font-style: normal; font-size: 1.6rem; }

/* Footer */
.site-footer { padding: 3.5rem 0 1.5rem; background: var(--paper); }
.footer-grid { display: grid; gap: 2.2rem; }
.footer-brand .brand-copy strong { color: var(--ink); }
.footer-brand .brand-copy span { color: var(--muted); }
.footer-grid > div:first-child > p { max-width: 28rem; color: var(--muted); font-size: .8rem; }
.footer-grid h3 { margin: 0 0 .75rem; color: var(--muted); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: .45rem; font-size: .8rem; }
.footer-grid > div:not(:first-child) a { font-weight: 700; }
.footer-grid span { color: var(--muted); }
.footer-fine { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .65rem; }
.footer-fine p { margin: 0; max-width: 50rem; }
.footer-fine a { color: var(--ink); font-weight: 800; }
.mobile-call { position: fixed; z-index: 70; left: .65rem; right: .65rem; bottom: .65rem; display: flex; justify-content: space-between; align-items: center; padding: .75rem 1rem; background: var(--orange); color: #fff; border: 1px solid rgba(255,255,255,.35); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.mobile-call span { font-size: .65rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.mobile-call strong { font: 800 1.15rem/1 var(--display); }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .shell { width: min(100% - 3rem, var(--shell)); }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .trust-strip div:nth-child(even) { border-right: 1px solid rgba(255,255,255,.13); }
  .trust-strip div:last-child { border-right: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.feature { grid-row: span 2; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.7fr .8fr .6fr; }
}

@media (min-width: 820px) {
  body { padding-bottom: 0; }
  .nav-toggle { display: none; }
  .main-nav { display: flex; }
  .header-call { display: flex; }
  .hero-layout { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr); }
  .hero-board { min-height: 610px; }
  .section-heading { grid-template-columns: 1fr .8fr; }
  .why-layout { grid-template-columns: 1.08fr .92fr; align-items: end; }
  .quote-layout { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .request-form { padding: 2rem; }
  .mobile-call { display: none; }
}

@media (min-width: 1050px) {
  .service-grid { grid-template-columns: 1.25fr repeat(2, 1fr); }
  .service-card.feature { grid-row: span 2; }
  .hero-board { margin-right: 1.5rem; }
}

@media (max-width: 819px) {
  body { padding-bottom: 4.6rem; }
  .hero-board { min-height: 540px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
