:root {
  --paper: #f6f4ee;
  --paper-panel: #fffdf8;
  --ink: #2a2c2f;
  --ink-soft: #62666b;
  --line: #d8d3c4;
  --accent: #c81d1f;
  --accent-ink: #9c1416;
  --slate: #33383d;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-cond: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", Arial, sans-serif;
  --font-mono: "SF Mono", "Menlo", "Consolas", "Liberation Mono", monospace;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.shell { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.concept-note {
  background: var(--ink);
  color: #cfcfcf;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px 16px;
}
.concept-note strong { color: #fff; font-weight: 600; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 244, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 7px;
  display: grid; place-items: center;
  flex: none;
  color: #fff;
}
.brand-mark svg { width: 22px; height: 18px; }
.brand-copy strong { display: block; font-size: 15px; font-weight: 700; letter-spacing: 0.01em; line-height: 1.2; white-space: nowrap; }
.brand-copy small { display: block; font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-nav { display: flex; gap: 26px; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.header-phone:hover { color: var(--accent-ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }

/* HERO */
.hero { padding: 52px 0 60px; border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 15ch;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero-sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-phone { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.hero-phone span { opacity: 0.7; font-weight: 500; color: var(--ink-soft); }
.hero-phone:hover { color: var(--accent-ink); }

/* HERO: clipboard / cover sheet */
.hero-board { display: flex; justify-content: center; }
.board-wrap { position: relative; width: 100%; max-width: 380px; margin-top: 10px; }
.board-clip {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 26px;
  background: linear-gradient(180deg, #cfd2d6, #a9adb2);
  border-radius: 6px;
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 3;
}
.board-clip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8b8f94;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}
.board-body {
  position: relative;
  background: var(--paper-panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 16px 0;
  box-shadow: 0 28px 54px -24px rgba(42, 44, 47, 0.42), 0 2px 0 rgba(0, 0, 0, 0.04);
}
.board-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.board-sheet { padding: 18px 4px 20px; }
.board-title {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 12px;
}
.board-fields { display: flex; flex-direction: column; gap: 9px; }
.board-field { display: flex; align-items: baseline; gap: 10px; font-size: 13px; }
.board-field dt { color: var(--ink-soft); flex: none; width: 108px; font-weight: 600; }
.board-field dd { flex: 1; font-family: var(--font-mono); color: var(--ink); }
.board-field dd a { color: var(--ink); text-decoration: none; }
.board-field dd a:hover { color: var(--accent-ink); }
.board-field dd.blank {
  border-bottom: 1px dashed var(--line);
  height: 1.3em;
}

/* TRUST STRIP */
.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-cell { padding: 26px 24px; border-left: 1px solid var(--line); }
.trust-cell:first-child { border-left: none; padding-left: 0; }
.trust-cell strong { display: block; font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.trust-cell span { font-size: 13.5px; color: var(--ink-soft); }

section { padding: 92px 0; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.7); }
.section-head h2 {
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 16.5px; max-width: 58ch; }

/* SERVICES: report rows */
.report { background: var(--paper); }
.report-list {
  border-top: 1px solid var(--line);
}
.report-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.report-row-noimg { grid-template-columns: 1fr; }
.report-photo img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--line);
}
.report-line { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.report-item-no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  width: 24px;
}
.report-line h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.005em; flex: 1; }
.report-check {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.6px solid var(--ink);
  border-radius: 3px;
  background: #fff;
  flex: none;
}
.report-check::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.report-copy p { color: var(--ink-soft); font-size: 14.5px; max-width: 60ch; }
.report-copy-wide { padding-left: 0; }

/* FINDING / CORRECTED (chimney) */
.finding { background: var(--slate); color: #fff; }
.finding .eyebrow { color: #f0a3a3; }
.finding .section-head h2 { color: #fff; }
.finding .section-head p { color: rgba(255, 255, 255, 0.72); }
.finding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.finding-card {
  position: relative;
  background: #23272b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.6);
}
.finding-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.finding-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}
.finding-tag-before { background: rgba(255, 255, 255, 0.92); color: var(--slate); }
.finding-tag-after { background: var(--accent); color: #fff; }
.finding-card figcaption {
  padding: 14px 16px 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* RECOMMENDATIONS */
.recommendations { background: var(--paper); }
.rec-card {
  position: relative;
  background: var(--paper-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px 48px 44px 68px;
  box-shadow: 0 24px 50px -30px rgba(42, 44, 47, 0.3);
}
.hole {
  position: absolute;
  left: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 2px rgba(42, 44, 47, 0.2);
}
.hole-1 { top: 15%; }
.hole-2 { top: 48%; }
.hole-3 { top: 81%; }
.rec-card::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent);
  opacity: 0.3;
}
.rec-head { margin-bottom: 36px; }
.rec-tag {
  display: inline-block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-ink);
  border: 1.5px solid var(--accent-ink);
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 14px;
  transform: rotate(-1.5deg);
}
.rec-head h2 { font-size: clamp(25px, 2.8vw, 34px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rec-item { border-top: 1px solid var(--line); padding-top: 18px; }
.rec-figure {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--accent-ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.rec-label { font-size: 14px; color: var(--ink-soft); }
.rec-foot { margin-top: 30px; color: var(--ink-soft); font-size: 14px; max-width: 56ch; }

/* REVIEWS */
.reviews-section { background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: var(--paper-panel);
  border: 1px solid var(--line);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 0 16px 30px -20px rgba(42, 44, 47, 0.35);
}
.review-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 24px;
  width: 20px;
  height: 30px;
  background: var(--accent);
  opacity: 0.9;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.review-card:nth-child(1) { transform: rotate(-1deg); }
.review-card:nth-child(2) { transform: rotate(0.7deg); }
.review-card:nth-child(3) { transform: rotate(-0.6deg); }
.review-card blockquote { font-size: 15.5px; line-height: 1.6; }
.review-card cite { font-style: normal; font-size: 13.5px; color: var(--ink-soft); }
.review-card cite strong { color: var(--ink); font-weight: 600; display: block; font-size: 14px; }
.reviews-foot { margin-top: 28px; font-size: 14px; color: var(--ink-soft); }

/* CLOSER */
.closer { background: var(--ink); color: #fff; }
.closer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }
.closer h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 18px; }
.closer p { color: rgba(255, 255, 255, 0.75); font-size: 16px; max-width: 46ch; margin-bottom: 32px; }
.closer-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.closer-email { color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; }
.closer-email:hover { color: #f2b8bb; }
.closer-contact { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 16px; }
.contact-row small { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.contact-row a, .contact-row span { color: #fff; text-decoration: none; font-size: 16.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.contact-row a:hover { color: #f2b8bb; }

/* FOOTER */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.55); border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 24px 0 0; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 18px; }
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px 20px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 1280px;
}

.melone-design-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font: 600 10px/1.2 var(--font-sans);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 160ms ease;
}
.melone-design-credit:hover,
.melone-design-credit:focus-visible { opacity: 1; }
.melone-design-credit img { display: block; width: 150px; max-width: 42vw; height: auto; }
@media (prefers-reduced-motion: reduce) {
  .melone-design-credit { transition: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
  .reveal.in { opacity: 1; transform: none; }
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
}

@media (max-width: 480px) {
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .finding-grid { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .closer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  section { padding: 60px 0; }
  .hero { padding: 40px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { max-width: none; }
  .board-wrap { max-width: 320px; margin: 26px auto 0; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-cell { border-left: none; padding: 18px 0; border-top: 1px solid var(--line); }
  .trust-cell:nth-child(-n+2) { border-top: none; }
  .report-row { grid-template-columns: 84px 1fr; gap: 16px; padding: 18px 0; }
  .report-row-noimg { grid-template-columns: 1fr; }
  .report-photo img { width: 84px; height: 84px; }
  .rec-card { padding: 40px 24px 36px 48px; }
  .rec-card::before { left: 26px; }
  .hole { left: 10px; }
  .closer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
