:root {
  --porcelain: #eff3f1;
  --porcelain-deep: #e4eae7;
  --card: #ffffff;
  --ink: #15231f;
  --ink-soft: rgba(21, 35, 31, 0.74);
  --ink-faint: rgba(21, 35, 31, 0.55);
  --patina: #0e3b37;
  --patina-deep: #0a2c29;
  --copper: #c25e2e;
  --copper-btn: #a6461f;
  --copper-deep: #8f3c1a;
  --copper-light: #e08a5c;
  --line: #d4ded8;
  --line-strong: #bccbc4;
  --shadow-card: 0 1px 2px rgba(14, 59, 55, 0.06), 0 12px 28px rgba(14, 59, 55, 0.07);
  --shadow-lift: 0 2px 6px rgba(14, 59, 55, 0.09), 0 22px 44px rgba(14, 59, 55, 0.12);
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
  --wrap: 1140px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

a { color: var(--copper-deep); }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.75rem);
}

.section { padding-block: clamp(3.25rem, 8vw, 5.75rem); }

.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--porcelain);
  padding: 0.7rem 1rem;
  z-index: 60;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---- shared labels + rules ---- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  background: transparent;
  flex: none;
}
.eyebrow--ondark { color: var(--copper-light); }
.eyebrow--ondark::before { border-color: var(--copper-light); }

.section-head { max-width: 46ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.55rem); }
.section-head p { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.05rem; }

.pipe-rule {
  height: 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
  margin: 0;
}
.pipe-rule::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--porcelain);
  border: 2px solid var(--copper);
}

/* ---- buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.btn--primary {
  background: var(--copper-btn);
  color: #fff;
  box-shadow: 0 10px 22px rgba(166, 70, 31, 0.28);
}
.btn--primary:hover { background: var(--copper-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--patina); transform: translateY(-2px); }
.btn--ondark { background: var(--copper); color: #fff; box-shadow: none; }
.btn--ondark:hover { background: var(--copper-light); }
.btn__meta { font-family: var(--mono); font-weight: 500; font-size: 0.82rem; opacity: 0.85; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}

/* ---- announcement banner ---- */

.banner {
  background: var(--copper-btn);
  color: #fff;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 0.6rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.banner__tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ---- header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 243, 241, 0.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.7rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
}
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.brand__name b { color: var(--copper-deep); font-weight: 800; }

.nav__menu { position: relative; }
.nav__menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 9px;
  cursor: pointer;
  color: var(--ink);
}
.nav__menu summary::-webkit-details-marker { display: none; }
.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.4rem 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--copper-deep); }
.nav__call { flex: none; }

@media (max-width: 819px) {
  .nav__links {
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    min-width: 200px;
    box-shadow: var(--shadow-card);
  }
  .nav__menu[open] .nav__links { display: flex; }
  .nav__call .btn__meta { display: none; }
}
@media (min-width: 820px) {
  .nav__menu summary { display: none; }
  .nav__links { display: flex; gap: 1.5rem; align-items: center; }
}

/* ---- hero ---- */

.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.35rem, 6.4vw, 4.35rem);
  letter-spacing: -0.03em;
}
.hero__title em { font-style: normal; color: var(--copper); }
.hero__lede {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 40ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
.hero__meta {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-faint);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.hero__meta b { color: var(--ink); font-weight: 500; }
.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.credit {
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--ink-faint);
  margin-top: 0.6rem;
}
.credit--onlight { color: var(--ink-faint); }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
  .hero__figure { display: flex; flex-direction: column; }
  .hero__figure img { flex: 1 1 auto; aspect-ratio: auto; min-height: 360px; }
}

/* ---- trust strip ---- */

.marks {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
.mark {
  background: var(--card);
  padding: 1.2rem 1.3rem;
}
.mark__k {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--patina);
  letter-spacing: -0.02em;
}
.mark__v {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-top: 0.25rem;
}
@media (min-width: 760px) {
  .marks { grid-template-columns: repeat(4, 1fr); }
}

/* ---- services grid ---- */

.svc-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.svc:hover::before { transform: scaleX(1); }
.svc__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 0.85rem;
}
.svc__name { font-size: 1.2rem; max-width: 20ch; }
.svc__price {
  flex: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--copper-deep);
  background: rgba(194, 94, 46, 0.1);
  border: 1px solid rgba(194, 94, 46, 0.28);
  padding: 0.3rem 0.55rem;
  border-radius: 7px;
  white-space: nowrap;
  align-self: flex-start;
}
.svc__blurb { color: var(--ink-soft); font-size: 0.98rem; }

@media (min-width: 680px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- testimonials (dark band) ---- */

.band {
  background: var(--patina);
  color: var(--porcelain);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.band h2 { color: #fff; }
.band .section-head p { color: rgba(239, 243, 241, 0.78); }
.quotes {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.quote {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  background: rgba(255, 255, 255, 0.035);
}
.quote__mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 0.7;
  color: var(--copper-light);
  display: block;
  margin-bottom: 0.4rem;
}
.quote p { font-size: 1.02rem; line-height: 1.55; color: rgba(239, 243, 241, 0.94); }
.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--copper-light);
}
@media (min-width: 680px) { .quotes { grid-template-columns: repeat(2, 1fr); } }

/* ---- gallery ---- */

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
}
@media (min-width: 680px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* ---- coverage / hours strip ---- */

.coverage {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.panel h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.hours {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.9rem;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px dashed var(--line);
}
.hours div:last-child { border-bottom: 0; }
.hours dt { color: var(--ink-soft); font-weight: 500; }
.hours dd { margin: 0; color: var(--ink); }
.hours .is-closed { color: var(--copper-deep); }
.callout {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.callout b { color: var(--copper-deep); font-weight: 500; }
.coverage__area { color: var(--ink-soft); }
.coverage__area .place { color: var(--ink); font-weight: 500; }
.panel__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.2rem; }
@media (min-width: 820px) { .coverage { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ---- generic content pages ---- */

.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-top: 1.2rem;
}
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.prose { max-width: 62ch; }
.prose p { margin-top: 1.15rem; color: var(--ink-soft); }
.prose p:first-child { margin-top: 0; }

.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: step;
  margin-top: 1.5rem;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.step__n {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--copper-deep);
}
.step h3 { font-size: 1.12rem; margin: 0.5rem 0 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---- contact form ---- */

.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 0.9fr; align-items: start; } }
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-card);
}
.form h2 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--porcelain);
  border: 1.5px solid var(--line-strong);
  border-radius: 9px;
  padding: 0.7rem 0.85rem;
}
.field textarea { min-height: 110px; resize: vertical; }
.form__note {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-top: 0.9rem;
  line-height: 1.5;
}
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}
.btn[disabled]:hover { transform: none; background: var(--copper-btn); }

/* ---- blog ---- */

.post-list { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.post-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.post-card time {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--copper-deep);
}
.post-card h2 { font-size: 1.3rem; margin: 0.5rem 0 0.55rem; }
.post-card p { color: var(--ink-soft); font-size: 0.98rem; }

.article { max-width: 68ch; margin-inline: auto; }
.article__meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--copper-deep);
  margin-bottom: 1rem;
}
.article h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
.article__body { margin-top: 1.9rem; }
.article__body p { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.06rem; }
.article__body ul { margin-top: 1.2rem; padding-left: 1.2rem; color: var(--ink-soft); }
.article__body li { margin-top: 0.55rem; }
.article__cta {
  margin-top: 2.5rem;
  padding: 1.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.article__cta p { color: var(--ink-soft); margin-bottom: 1rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.back-link:hover { color: var(--copper-deep); }

/* ---- footer ---- */

.site-footer {
  background: var(--patina-deep);
  color: rgba(239, 243, 241, 0.82);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-block: clamp(2.75rem, 6vw, 4rem);
}
.footer__brand .brand__name { color: #fff; font-size: 1.3rem; }
.footer__brand .brand__name b { color: var(--copper-light); }
.footer__desc { margin-top: 0.9rem; max-width: 34ch; font-size: 0.95rem; color: rgba(239, 243, 241, 0.72); }
.footer__phone {
  display: inline-flex;
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
}
.footer__phone:hover { color: var(--copper-light); }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper-light);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(239, 243, 241, 0.82); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bar a { color: var(--copper-light); text-decoration: none; }
.footer-bar a:hover { text-decoration: underline; }
.byline { font-size: 0.85rem; color: rgba(239, 243, 241, 0.72); }
.fiction {
  font-size: 0.72rem;
  color: rgba(239, 243, 241, 0.5);
  max-width: 60ch;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
