@font-face{font-family:'Barlow';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/barlow-400.woff2') format('woff2');}
@font-face{font-family:'Barlow';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/barlow-500.woff2') format('woff2');}
@font-face{font-family:'Barlow';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/barlow-600.woff2') format('woff2');}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/barlowcondensed-600.woff2') format('woff2');}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/barlowcondensed-700.woff2') format('woff2');}
/* Handy Vibe — Austin, TX. Design tokens per DESIGN.md */

:root {
  --bg: oklch(1 0 0);
  --surface: oklch(0.962 0.006 262);
  --ink: oklch(0.21 0.025 262);
  --muted: oklch(0.44 0.03 262);
  --primary: oklch(0.45 0.19 262);
  --primary-hover: oklch(0.4 0.17 262);
  --primary-deep: oklch(0.29 0.09 262);
  --accent: oklch(0.78 0.14 85);
  --accent-pale: oklch(0.93 0.06 92);
  --line: oklch(0.87 0.012 262);
  --on-primary: oklch(1 0 0);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", Arial, sans-serif;

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --step-3: clamp(2.5rem, 2rem + 2.4vw, 4rem);
  --step-4: clamp(3.25rem, 2.4rem + 4vw, 5.5rem);

  --space-band: clamp(4rem, 3rem + 5vw, 7.5rem);
  --space-tight: clamp(2.25rem, 2rem + 1.5vw, 3.5rem);
  --wrap: 1180px;

  --z-sticky: 10;
  --z-overlay: 20;

  --radius: 2px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { text-wrap: balance; margin: 0 0 0.5em; }
p { margin: 0 0 1em; max-width: 70ch; text-wrap: pretty; }

h1 {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
}

h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.05;
}

h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.35rem;
}

a { color: var(--primary); text-underline-offset: 0.15em; }
a:hover { color: var(--primary-hover); }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.band--deep :focus-visible, .band--blue :focus-visible, .site-footer :focus-visible,
.hero--deep :focus-visible, .page-hero--deep :focus-visible {
  outline-color: var(--on-primary);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  z-index: var(--z-overlay);
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: var(--bg);
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 160ms cubic-bezier(0.22, 1, 0.36, 1), border-color 160ms, color 160ms;
}

.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-hover); color: var(--on-primary); }

.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--light { background: var(--bg); color: var(--primary-deep); }
.btn--light:hover { background: var(--accent-pale); color: var(--primary-deep); }

.btn--outline-light { border-color: var(--on-primary); color: var(--on-primary); background: transparent; }
.btn--outline-light:hover { background: var(--on-primary); color: var(--primary-deep); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand svg { flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand__name span { color: var(--primary); }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.site-nav a {
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: 0.5rem 0;
}
.site-nav a:hover { color: var(--primary); }
.site-nav a[aria-current="page"] {
  color: var(--primary);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.header-call { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0.25rem; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
  .site-nav a:last-of-type { border-bottom: 0; }
  .site-nav .header-call {
    margin-top: 0.85rem;
    justify-content: center;
    border-bottom: 0;
    font-size: 1.1rem;
  }
}

/* ---------- Mobile sticky call bar ---------- */

.call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--primary);
  padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--on-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  min-height: 44px;
}

@media (max-width: 860px) {
  .call-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* ---------- Hero ---------- */

.hero { padding-block: var(--space-tight) var(--space-band); }

.hero--deep {
  background: var(--primary-deep);
  color: oklch(0.97 0.005 262);
  border-bottom: 3px solid var(--accent);
  padding-block: var(--space-tight) var(--space-tight);
}
.hero--deep h1 { color: oklch(1 0 0); }
.hero--deep .hero__lead { color: oklch(0.85 0.02 262); }
.hero--deep .hero__facts { color: oklch(0.97 0.005 262); }

.page-hero--deep {
  background: var(--primary-deep);
  color: oklch(0.97 0.005 262);
  border-bottom: 3px solid var(--accent);
}
.page-hero--deep h1 { color: oklch(1 0 0); }
.page-hero.page-hero--deep p { color: oklch(0.87 0.015 262); }
.page-hero--deep a { color: var(--accent-pale); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__kicker {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin: 0 0 0.75rem;
}
.hero--deep .hero__kicker { color: var(--accent); }

.hero__lead { font-size: var(--step-1); color: var(--muted); max-width: 34rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.hero__facts {
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__facts li { display: flex; align-items: center; gap: 0.5rem; }
.hero__facts svg { color: var(--accent); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 60%;
  height: 60%;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { margin-top: 1.5rem; }
  .hero__media img { aspect-ratio: 21 / 9; }
  .hero__media::after { display: none; }
}

/* ---------- Bands ---------- */

.band { padding-block: var(--space-band); }
.band--tight { padding-block: var(--space-tight); }
.band--surface { background: var(--surface); }

.band--deep {
  background: var(--primary-deep);
  color: oklch(0.97 0.005 262);
  border-top: 3px solid var(--accent);
}
.band--deep h2, .band--deep h3 { color: oklch(1 0 0); }
.band--deep a { color: var(--accent-pale); }

.band--blue {
  background: var(--primary);
  color: var(--on-primary);
  border-top: 3px solid var(--accent);
}
.band--blue h2 { color: var(--on-primary); }
.band--blue .statement { color: var(--on-primary); }
.band--blue .statement em { color: var(--accent-pale); }
.hero--deep + .band--blue { border-top: 0; }

.statement {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 0.5rem;
  color: oklch(1 0 0);
}
.statement em { font-style: normal; color: var(--accent); }
.band--deep .lead, .band--blue .lead { font-size: var(--step-1); max-width: 46rem; margin: 0; color: inherit; }

.section-head { margin-bottom: clamp(1.75rem, 3vw, 3rem); }
.section-head p { font-size: var(--step-1); color: var(--muted); max-width: 44rem; }

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

.services-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.joblist { list-style: none; margin: 0; padding: 0; }
.joblist li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 500;
}
.joblist li::before {
  content: "";
  flex: none;
  width: 0.7em;
  height: 0.7em;
  background: var(--accent);
  transform: translateY(0.05em) rotate(45deg);
}
.joblist__note { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; }

.reno-cards { display: grid; gap: 1.5rem; }
.reno-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.reno-card img { height: 100%; min-height: 160px; object-fit: cover; }
.reno-card__body { padding: 1.25rem 1.5rem 1.25rem 0; }
.reno-card__body p { margin: 0; color: var(--muted); }

@media (max-width: 980px) {
  .services-split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .reno-card { grid-template-columns: 1fr; }
  .reno-card img { min-height: 0; aspect-ratio: 16 / 9; width: 100%; }
  .reno-card__body { padding: 0 1.25rem 1.25rem; }
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step { border-top: 3px solid var(--accent); padding-top: 1.25rem; }
.step h3 { display: flex; align-items: baseline; gap: 0.6rem; }
.step h3::before {
  counter-increment: step;
  content: counter(step) ".";
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
}
.step p { margin: 0; color: var(--muted); }

/* ---------- Craftsman block ---------- */

.craftsman {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.craftsman img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 860px) {
  .craftsman { grid-template-columns: 1fr; }
}

/* ---------- Service area ---------- */

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.25rem 1.5rem;
}
.area-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid oklch(0.62 0.06 262);
  font-weight: 500;
}

/* ---------- Reviews ---------- */

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.review { margin: 0; border-top: 3px solid var(--accent); padding-top: 1.25rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1.1rem; }
.review blockquote p { margin: 0; }
.review figcaption { font-weight: 600; }

/* ---------- FAQ ---------- */

.faq { max-width: 46rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 1.1rem; margin: 0; }

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

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--primary-deep);
  color: oklch(0.9 0.01 262);
  padding-block: var(--space-tight);
  border-top: 3px solid var(--accent);
}
.site-footer a { color: oklch(0.97 0.005 262); }
.site-footer a:hover { color: var(--accent-pale); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-grid h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { padding: 0.3rem 0; }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(0.4 0.07 262);
  font-size: 0.9rem;
  color: oklch(0.78 0.015 262);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}
.footer-legal p { margin: 0; }

/* ---------- Page hero (subpages) ---------- */

.page-hero { padding-block: var(--space-tight); }
.page-hero p { font-size: var(--step-1); color: var(--muted); max-width: 44rem; }

/* ---------- Service detail sections ---------- */

.svc {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: var(--space-tight);
  border-top: 1px solid var(--line);
}
.svc:first-of-type { border-top: 0; }
.svc--flip > .svc__media { order: -1; }
.svc img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); width: 100%; }
.svc ul { margin: 1rem 0 0; padding: 0; list-style: none; }
.svc ul li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
}
.svc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.6em;
  height: 0.6em;
  background: var(--accent);
  transform: rotate(45deg);
}
@media (max-width: 860px) {
  .svc { grid-template-columns: 1fr; }
  .svc--flip > .svc__media { order: 0; }
}

/* ---------- Work categories (projects) ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.work-item { margin: 0; }
.work-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: var(--radius); }
.work-item figcaption {
  padding: 0.7rem 0 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-phone {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
}

.contact-facts { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.contact-facts li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-facts svg { flex: none; color: var(--primary); margin-top: 0.2rem; }
.contact-facts strong { display: block; }

.form-card { background: var(--surface); padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius); }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid oklch(0.6 0.02 262);
  border-radius: var(--radius);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field ::placeholder { color: oklch(0.45 0.025 262); opacity: 1; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 3px solid var(--primary);
  outline-offset: 0;
  border-color: var(--primary);
}
.form-hint { font-size: 0.95rem; color: oklch(0.41 0.03 262); margin-top: 0.35rem; }
.form-status { font-weight: 600; margin-top: 1rem; }
.form-status[data-state="error"] { color: oklch(0.45 0.19 25); }
.form-status[data-state="ok"] { color: oklch(0.42 0.14 150); }

.contact-sms {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
}

.contact-aside-title { margin-top: 2.5rem; font-size: var(--step-2); }

/* ---------- Reveal motion ---------- */

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */

@media print {
  .site-header, .call-bar, .site-footer nav { display: none; }
}
