/* index — page styles */

/* ---------- hero: he walks the line ---------- */
.hero { padding-block: clamp(2.75rem, 5vw, 5.5rem) 0; }
.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  /* his feet land on the rule that carries the facts below */
  align-items: end;
  border-bottom: 1.5px solid var(--ink);
}
.hero__copy { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.hero h1 { margin-block: 1.35rem 0; }
.hero h1 .serif { display: block; }
.hero .lede { margin-top: 1.5rem; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }

.hero__fig { width: clamp(190px, 21vw, 285px); position: relative; }
.hero__fig img { width: 100%; }
/* the ground under his feet */
.hero__fig::after {
  content: ''; position: absolute; left: 6%; right: 10%; bottom: -5px; height: 5px;
  background: radial-gradient(ellipse at 50% 0%, rgba(20,20,19,0.18), rgba(20,20,19,0) 70%);
}

.hero__hours { margin-top: 1.2rem; font-size: 0.86rem; color: var(--fg-3); }
/* the trust strip sits directly under the hero rule */
.hero + .trust { border-top: 0; }

@media (max-width: 900px) {
  .hero__in { gap: 1rem; }
  .hero__fig { width: clamp(96px, 20vw, 150px); }
}
@media (max-width: 520px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__fig { display: none; }
}

/* ---------- promise ---------- */
.promise { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0; border-top: 1.5px solid var(--ink); }
.promise__it { padding: 2rem 1.75rem 0 0; }
.promise__it + .promise__it { border-left: 1px solid var(--rule-thin); padding-left: 1.75rem; }
.promise__n {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 0.8;
  letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.promise__h { font-size: var(--step-2); margin-bottom: 0.7rem; }
/* :not(.promise__n) — the number is also a <p> in here, and a bare
   `.promise__it p` outranks the .promise__n class rule. */
.promise__it p:not(.promise__n) { font-size: 0.95rem; color: var(--fg-2); max-width: 34ch; }
@media (max-width: 780px) {
  .promise__it + .promise__it { border-left: 0; border-top: 1px solid var(--rule-thin); padding-left: 0; margin-top: 1.5rem; }
  .promise__it { padding-right: 0; }
}

/* ---------- shared head ---------- */
.head h2 { margin-top: 1rem; }

/* ---------- services ---------- */
.list { list-style: none; padding: 0; margin-top: clamp(2rem, 4vw, 3rem); border-top: 1.5px solid var(--ink); }
.row { border-bottom: 1px solid var(--rule-thin); }
.row:last-child { border-bottom: 1.5px solid var(--ink); }
.row a {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 20rem) minmax(0, 1fr) 2rem;
  gap: 1.5rem; align-items: baseline;
  padding-block: clamp(1.1rem, 2vw, 1.6rem);
  transition: background .25s, padding-inline .25s;
}
.row a:hover { background: var(--paper-2); padding-inline: 1rem; }
.row__n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.1em;
}
.row__t {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--step-2); line-height: 0.95;
}
.row__b { font-size: 0.9rem; color: var(--fg-3); line-height: 1.5; }
.row__x { font-size: 1.1rem; text-align: right; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s; }
.row a:hover .row__x { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .row a { grid-template-columns: 2.5rem 1fr; gap: 0.3rem 0.9rem; }
  .row__b { grid-column: 2; }
  .row__x { display: none; }
}

/* ---------- danny ---------- */
.danny { padding-block: clamp(3.5rem, 6vw, 6.5rem); border-top: 1.5px solid var(--ink); }
.danny__in { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
/* paper plate pasted onto the dark page — photo stays positive */
.danny__plate { padding: 10px 10px 0; box-shadow: 8px 8px 0 rgba(0,0,0,0.45); }
.danny__plate figcaption {
  border-top: 1.5px solid var(--ink);
  margin-top: 10px;
  padding: 0.65rem 0.2rem;
  font-size: var(--step--2); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.danny blockquote {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--step-3);
  line-height: 0.92; color: var(--on-ink);
  margin-block: 1.1rem 1.3rem; text-wrap: balance;
}
.danny blockquote .serif { font-size: 1.08em; text-transform: none; }
.danny__body { font-size: 0.97rem; max-width: 48ch; margin-bottom: 1.8rem; }
@media (max-width: 880px) { .danny__in { grid-template-columns: 1fr; } .danny__plate { max-width: 24rem; } }

/* ---------- areas ---------- */
.areas { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.areas__copy h2 { margin-top: 1rem; font-size: var(--step-3); }
.areas__b { margin-top: 1.2rem; font-size: 1.02rem; line-height: 1.7; color: var(--fg-2); max-width: 46ch; }
.areas__note { margin-top: 1rem; font-size: 0.9rem; color: var(--fg-3); }
.areas__all { margin-top: 1.2rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.areas__all a { display: inline-flex; align-items: center; min-height: 44px; }
.areas__all a span { border-bottom: 2px solid var(--ink); padding-bottom: 2px; }
.map { margin-top: clamp(2rem, 4vw, 3rem); border: 1.5px solid var(--ink); background: var(--paper-2); }
.map iframe { display: block; filter: grayscale(1) contrast(1.05); }
@media (max-width: 820px) { .areas { grid-template-columns: 1fr; } }

/* ---------- cta (light ground on this page) ---------- */
section.cta { padding-block: clamp(3rem, 5vw, 5rem); border-top: 1.5px solid var(--ink); background: var(--paper); color: var(--fg); }
section.cta .cta__in { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
section.cta h2 { color: var(--fg); margin-top: 0; font-size: var(--step-4); }
.cta__fig { width: clamp(64px, 8vw, 104px); }
.cta__copy p { font-size: 0.92rem; color: var(--fg-3); margin-top: 0.8rem; max-width: 34ch; }
section.cta .cta__tel {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1;
  margin-bottom: 1.1rem; white-space: nowrap; color: var(--fg);
}
section.cta .cta__tel:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 4px; }
@media (max-width: 900px) {
  section.cta .cta__in { grid-template-columns: 1fr; }
  .cta__fig { display: none; }
}

