/* Monolith Drywall — hand-authored stylesheet.
   Replaces the Tailwind CDN so nothing is compiled in the browser. */

:root {
  --bg: #0a0a0a;
  --surface: #131313;
  --surface-2: #1c1c1c;
  --line: #2b2b2b;
  --line-strong: #3f3f3f;
  --text: #f5f5f5;
  --muted: #a9a9a9;
  --muted-dim: #8a8a8a;
  /* White is the accent — finished board. Grey is the mud. Nothing else. */
  --accent: #ffffff;
  --accent-hover: #e0e0e0;
  --accent-ink: #0a0a0a;
  --accent-soft: #9a9a9a;
  --ok: #d4d4d4;
  --radius: 12px;
  --radius-lg: 18px;
  --wrap: 1120px;
  --font: "Inter var", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--accent-ink); }

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

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

/* Focus is always visible — keyboard users need to see where they are. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 780px; }
.wrap--mid { max-width: 940px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
.logo span { color: var(--muted-dim); font-weight: 400; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav a:hover { color: #fff; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff !important;
  font-weight: 700 !important;
  font-variant-numeric: tabular-nums;
}
.nav__phone svg { flex: none; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
}

#mobile-nav { display: none; }

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  #mobile-nav.is-open { display: block; }
  #mobile-nav {
    border-top: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
  }
  #mobile-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  #mobile-nav a:last-child { border-bottom: 0; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  min-height: 48px;
  font-family: inherit;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--muted-dim); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; min-height: 40px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
@media (max-width: 540px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.textlink:hover { text-decoration: underline; }

/* ---------- Sections ---------- */

.section { padding: 5.5rem 0; border-bottom: 1px solid var(--line); }
.section--tight { padding: 3.5rem 0; }
.section--alt { background: var(--surface); }
@media (max-width: 720px) { .section { padding: 3.5rem 0; } }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.9rem;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: 0.65rem; }
.section-head p { color: var(--muted); margin: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.lede { font-size: 1.1rem; color: var(--muted); }

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

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* Stand-in for photography: a faint drywall-seam grid. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }
.hero__inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.1rem, 6.2vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.hero__tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero__meta li { display: flex; align-items: center; gap: 0.5rem; }
@media (max-width: 720px) { .hero { padding: 3.5rem 0; } }

/* ---------- Trust strip ---------- */

.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust__item { display: flex; gap: 0.75rem; align-items: flex-start; }
.trust__item svg { flex: none; margin-top: 2px; color: var(--accent); }
.trust__item strong { display: block; color: #fff; font-size: 0.95rem; }
.trust__item span { font-size: 0.8rem; color: var(--muted-dim); }
@media (max-width: 860px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.card--link { text-decoration: none; transition: border-color 0.15s ease, background-color 0.15s ease; }
.card--link:hover { border-color: var(--accent); background: #232323; }
.card__icon { color: var(--accent); margin-bottom: 1.1rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.925rem; }
.card > .textlink { margin-top: auto; padding-top: 1.25rem; }

.card--flat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.section--alt .card--flat { background: var(--surface-2); }
.card--flat h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card--flat p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.card--flat .plain {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted-dim);
  font-style: italic;
}

/* ---------- Process ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.steps li {
  counter-increment: step;
  border-top: 2px solid var(--line-strong);
  padding-top: 1.25rem;
}
.steps li::before {
  content: counter(step);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-soft);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.steps p { color: var(--muted); font-size: 0.9rem; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Promo banner ---------- */

.promo {
  background: linear-gradient(120deg, #1f1f1f, #131313 65%);
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0;
}
.promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.promo__body { max-width: 620px; }
.promo h2 { font-size: clamp(1.5rem, 3.5vw, 1.9rem); margin: 0.85rem 0 0.6rem; }
.promo p { color: var(--muted); margin: 0; }
.promo .price { color: var(--accent); font-weight: 800; white-space: nowrap; }

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ---------- About / split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.factbox {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.factbox h3 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.factlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.factlist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.925rem;
  color: var(--muted);
}
.factlist svg { flex: none; margin-top: 4px; color: var(--ok); }
.factlist strong { color: #fff; font-weight: 600; }

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

.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.25rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > div {
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.935rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

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

.arealist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.arealist li {
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------- Form ---------- */

.form { display: grid; gap: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; }
.field label,
.field .field-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field .optional { color: var(--muted-dim); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  min-height: 48px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #7d7d7d; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted-dim); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a9a9a9' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.field input[type="file"] { padding: 0.6rem; font-size: 0.9rem; }
.field input[type="file"]::file-selector-button {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  margin-right: 0.85rem;
  cursor: pointer;
}
.field .hint { font-size: 0.8rem; color: var(--muted-dim); margin: 0.5rem 0 0; }

.radio-set { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-set label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  margin: 0;
  cursor: pointer;
}
.radio-set input { accent-color: var(--accent); width: 18px; height: 18px; }
.radio-set label { color: var(--muted); }
.radio-set input:checked + span { color: #fff; }
.radio-set label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

.form-note { font-size: 0.82rem; color: var(--muted-dim); margin: 0; }
.hidden-field { position: absolute; left: -9999px; }

.form-panel {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
@media (max-width: 640px) { .form-panel { padding: 1.5rem; } }

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.925rem;
}

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

.site-footer {
  background: var(--surface);
  padding: 3.5rem 0 7rem;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (min-width: 861px) { .site-footer { padding-bottom: 3.5rem; } }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h2 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted-dim);
}
.footer-brand { font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.footer-phone { color: #fff !important; font-weight: 700; font-size: 1.05rem; font-variant-numeric: tabular-nums; }

/* ---------- Sticky mobile call bar ---------- */

.callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.callbar .btn { flex: 1; }
@media (max-width: 860px) { .callbar { display: flex; } }

/* ---------- Service page bits ---------- */

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted-dim);
  padding: 1.25rem 0 0;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line-strong); }

.prose h2 { font-size: clamp(1.4rem, 3.5vw, 1.8rem); margin: 2.75rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.75rem 0 0.6rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: #fff; }

.callout {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.callout p { margin: 0; color: var(--muted); font-size: 0.935rem; }
.callout strong { color: #fff; }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.75rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.75rem; }
.cta-band .btn-row { justify-content: center; }

.centered { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
