:root {
  --ink: #0b1220;
  --ink-2: #101826;
  --panel: #161e2c;
  --line: #2a3548;
  --line-strong: #3a475c;
  --paper: #e8edf4;
  --mute: #9aa6b8;
  --soft: #c5cedb;
  --maroon: #c44b58;
  --maroon-2: #e07a84;
  --crimson: #7a0019;
  --crimson-2: #9b1c2e;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }
button, [role="button"] { cursor: pointer; }
.wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
@media (min-width: 640px) { .wrap { width: min(72rem, calc(100% - 3rem)); } }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
}
.muted { color: var(--soft); }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: color-mix(in oklab, var(--ink) 70%, transparent);
  backdrop-filter: blur(10px);
}
header.is-scrolled { border-color: var(--line); background: color-mix(in oklab, var(--ink) 92%, transparent); }
.header-bar {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark { text-decoration: none; color: var(--maroon); }
.wordmark .name {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.025em;
}
.wordmark .sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-2);
}
nav.desk { display: none; gap: 1.75rem; }
nav.desk a { text-decoration: none; color: var(--soft); font-size: 0.9rem; }
nav.desk a:hover { color: var(--paper); }
.header-actions { display: flex; gap: 0.5rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1rem;
  border: 0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--sans);
}
.btn-call { background: var(--crimson); color: var(--paper); }
.btn-call:hover { background: var(--crimson-2); }
.btn-ghost {
  background: color-mix(in oklab, var(--panel) 50%, transparent);
  color: var(--paper);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--maroon-2); color: var(--maroon-2); }
.btn-light { background: var(--paper); color: var(--ink); }
.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  display: grid;
  place-items: center;
}
#mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--ink); padding: 0.25rem 1rem 0.75rem; }
#mobile-nav.open { display: block; }
#mobile-nav a { display: block; padding: 0.75rem 0; text-decoration: none; color: var(--soft); }
@media (min-width: 1024px) {
  nav.desk { display: flex; }
  .menu-btn, #mobile-nav { display: none !important; }
}

.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(122,0,25,0.18), transparent 42%),
    linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.78) 48%, rgba(11,18,32,0.96) 100%);
}
.hero .content { position: relative; padding: 6rem 0 7rem; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); line-height: 1.08; max-width: 18ch; }
.hero .lead { margin-top: 1.5rem; max-width: 36rem; color: var(--soft); font-size: 1.125rem; }
.hero-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-actions .btn { height: 3rem; padding: 0 1.5rem; }
.stats {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 48rem;
}
.stats dt { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.stats dd { margin: 0.25rem 0 0; font-family: var(--display); font-size: 1.5rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }

section { border-top: 1px solid var(--line); }
.band { padding: 5rem 0; }
.ink { background: var(--ink); }
.ink-2 { background: var(--ink-2); }
section h2 { margin-top: 0.75rem; font-size: clamp(2rem, 4vw, 3rem); max-width: 22ch; }
.section-copy { margin-top: 1rem; color: var(--soft); max-width: 40rem; }

.grid-2 { display: grid; gap: 1.25rem; margin-top: 3rem; }
.grid-3 { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .grid-3.services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.card .photo { height: 14rem; position: relative; }
.card .photo img { width: 100%; height: 100%; object-fit: cover; }
.card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--panel), transparent);
}
.card .body { padding: 1.75rem; }
.card h3 { font-size: 1.75rem; }
.card ul { margin: 1.25rem 0 0; padding: 0; list-style: none; }
.card li { border-left: 2px solid color-mix(in oklab, var(--maroon) 70%, transparent); padding-left: 0.75rem; margin-top: 0.5rem; color: var(--soft); font-size: 0.9rem; }
.link { display: inline-flex; gap: 0.5rem; align-items: center; margin-top: 1.75rem; color: var(--maroon-2); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.link:hover { color: var(--paper); }
.icon-box {
  width: 2.5rem; height: 2.5rem; margin-bottom: 1rem;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--maroon);
}
.svc { padding: 1.5rem; }
.svc svg { color: var(--maroon); }
.svc h3 { margin-top: 1rem; font-size: 1.5rem; }
.svc p { margin-top: 0.5rem; color: var(--soft); font-size: 0.9rem; }

.why { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 1024px) { .why { grid-template-columns: 1fr 1fr 1fr; } }
.num { font-family: var(--display); font-size: 1.875rem; color: var(--maroon); }
.why h3 { margin-top: 0.75rem; font-size: 1.5rem; }
.why p { margin-top: 0.75rem; color: var(--soft); font-size: 0.9rem; }

.trust { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .trust { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.trust-list { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.trust-list li { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.25rem; }
.trust-list h3 { margin-top: 0.75rem; font-size: 1.25rem; }
.trust-list p { margin-top: 0.5rem; color: var(--soft); font-size: 0.9rem; }

.contact { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact { grid-template-columns: 0.9fr 1.1fr; } }
form, .thanks { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 1.75rem; }
.fields { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .fields { grid-template-columns: 1fr 1fr; } .span-2 { grid-column: span 2; } }
label.field { display: block; font-size: 0.9rem; font-weight: 500; color: var(--soft); }
label.field input, label.field select, label.field textarea {
  margin-top: 0.35rem;
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  padding: 0 0.75rem;
  font: inherit;
  outline: none;
}
label.field textarea { height: auto; min-height: 7rem; padding: 0.75rem; }
label.field input:focus, label.field select:focus, label.field textarea:focus { border-color: var(--maroon); }
.consent { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1.25rem; color: var(--soft); font-size: 0.9rem; }
.consent input { margin-top: 0.2rem; accent-color: var(--maroon); }
form .btn { margin-top: 1.5rem; height: 3rem; padding: 0 1.5rem; }
.thanks h3 { font-size: 1.875rem; margin-top: 1rem; }
.thanks p { margin-top: 0.75rem; color: var(--soft); }
.thanks button { margin-top: 2rem; background: none; border: 0; color: var(--maroon-2); font: inherit; font-weight: 600; }

footer { border-top: 1px solid var(--line); padding: 3rem 0 6rem; }
@media (min-width: 768px) { footer { padding-bottom: 3rem; } }
.foot { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .foot { flex-direction: row; justify-content: space-between; } }
.foot .brand { font-family: var(--display); font-size: 1.5rem; color: var(--maroon); }
.foot p { margin-top: 0.5rem; color: var(--mute); font-size: 0.9rem; max-width: 24rem; }
.foot a { display: block; color: var(--soft); text-decoration: none; font-size: 0.9rem; }
.foot a:hover { color: var(--paper); }

.fab {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 50;
  height: 3.5rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--crimson);
  color: var(--paper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
@media (min-width: 768px) { .fab { display: none; } }

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

.article { max-width: 48rem; margin: 0 auto; padding: 4rem 0; }
.article .lead { margin-top: 1.5rem; font-size: 1.125rem; color: var(--soft); }
.article .body { margin-top: 2.5rem; display: grid; gap: 1.25rem; color: var(--soft); font-size: 0.95rem; }
.article ul.points { margin: 2rem 0 0; padding: 0; list-style: none; }
.article ul.points li { border-left: 2px solid color-mix(in oklab, var(--maroon) 70%, transparent); padding-left: 1rem; margin-top: 0.75rem; color: var(--soft); font-size: 0.9rem; }
.article .q { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.article .q h2 { font-size: 1.875rem; }
.article dl { margin-top: 1.5rem; }
.article dt { font-family: var(--display); font-size: 1.25rem; margin-top: 1.5rem; }
.article dd { margin: 0.5rem 0 0; color: var(--soft); font-size: 0.9rem; }
