/* Oak Ridge Plumbing & Drain — utility blue, emergency strip + bold header */
:root {
  --pipe: #0c4a6e;
  --pipe-light: #0369a1;
  --slate: #f1f5f9;
  --ink: #0f172a;
  --muted: #64748b;
  --alert: #b45309;
  --banner-bg: #0f172a;
  --banner-fg: #f8fafc;
  --font: "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--slate);
  line-height: 1.6;
  min-height: 100vh;
}

/* “Blueprint” grid + hazard strip + service steps */
body.orp-theme .orp-main {
  position: relative;
  z-index: 1;
  background-color: #f1f5f9;
  background-image:
    linear-gradient(rgba(12, 74, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 74, 110, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(12, 74, 110, 0.08);
}

.orp-urgent {
  color: #fff;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.08) 8px,
      transparent 8px,
      transparent 16px
    ),
    linear-gradient(90deg, #b45309 0%, #c2410c 100%);
}

.orp-tel {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  letter-spacing: 0.04em;
}

.orp-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  list-style: none;
  counter-reset: orp-step;
  background: #fff;
  border: 2px solid var(--pipe-light);
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(12, 74, 110, 0.12);
}
.orp-steps li {
  position: relative;
  flex: 1 1 140px;
  min-width: 0;
  padding-left: 2.25rem;
  font-size: 0.88rem;
  color: #334155;
  counter-increment: orp-step;
}
.orp-steps li::before {
  content: counter(orp-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.65rem;
  height: 1.65rem;
  line-height: 1.65rem;
  text-align: center;
  font-weight: 900;
  font-size: 0.75rem;
  color: #fff;
  background: var(--pipe);
  border-radius: 4px;
}
.orp-steps strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--pipe-light);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip:focus {
  left: 0.5rem;
}


.orp-header {
  background: var(--pipe);
  color: #fff;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 4px solid var(--pipe-light);
}
.orp-header__inner {
  max-width: 58rem;
  margin: 0 auto;
}
.orp-brand {
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.02em;
}
.orp-brand small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.orp-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.orp-nav a {
  color: #bae6fd;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}
.orp-nav a:hover,
.orp-nav a.active {
  color: #fff;
  border-bottom-color: #38bdf8;
}

.orp-main {
  max-width: 50rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.orp-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pipe-light);
  font-weight: 800;
  margin: 0 0 0.4rem;
}

h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.05rem);
  font-weight: 900;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.lead {
  font-size: 1.05rem;
  color: #334155;
  margin: 0 0 1.1rem;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0 1.25rem;
  border: 2px solid #cbd5e1;
}

.grid-2 {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0;
}
@media (min-width: 520px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tile {
  display: block;
  padding: 1.1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
}
.tile:hover {
  border-color: var(--pipe-light);
  box-shadow: 0 4px 16px rgba(12, 74, 110, 0.1);
}
.tile h2 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  color: var(--pipe);
}
.tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn--call {
  background: #b45309;
  color: #fff;
}
.btn--secondary {
  background: var(--pipe);
  color: #fff;
}

.legal-doc h2 {
  font-size: 1.02rem;
  margin: 1.25rem 0 0.4rem;
}
.legal-doc p,
.legal-doc ul {
  margin: 0 0 0.85rem;
}
.legal-muted {
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-band {
  margin: 2rem 0 1rem;
  padding: 1.25rem 1.1rem;
  background: #fff;
  border: 2px solid var(--pipe-light);
  border-radius: 6px;
}
.policy-band__title {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}
.policy-band__lede {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.policy-band__grid {
  display: grid;
  gap: 0.6rem;
}
@media (min-width: 520px) {
  .policy-band__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.policy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.45rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--pipe);
  border-radius: 4px;
}
.policy-btn:hover {
  filter: brightness(1.06);
}
.policy-btn--accent {
  background: var(--pipe-light);
}

.site-foot {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid #cbd5e1;
  font-size: 0.84rem;
  color: var(--muted);
}
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0.4rem 0;
}
.foot-legal a {
  color: var(--pipe);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--banner-bg);
  color: var(--banner-fg);
  padding: 1rem 1.25rem;
  z-index: 999;
  border-top: 3px solid var(--pipe-light);
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.cookie-banner__title {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.45rem;
}
.cookie-banner .btn--call {
  border: none;
}
.cookie-banner .btn--secondary {
  background: transparent;
  color: var(--banner-fg);
  border: 2px solid rgba(248, 250, 252, 0.4);
}
.cookie-banner a {
  color: #7dd3fc;
}
