* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1b;
  --muted: #5e5a55;
  --accent: #b61f3b;
  --accent-soft: #f5d5dc;
  --paper: #f7f2ec;
  --paper-deep: #efe6dd;
  --night: #141414;
  --line: #d9cfc4;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5vw 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}

.nav-row {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 0.8rem 5vw 1.2rem;
  border-top: 1px solid var(--line);
}

.nav-row a {
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-row a.cta-link {
  color: var(--accent);
  font-weight: 700;
}

.issue-hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 6vw;
  background: url("texture.svg") center/cover no-repeat;
}

.issue-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 46rem;
}

.issue-hero p {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.issue-hero .hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-card {
  background: white;
  padding: 1.4rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 22rem;
}

.hero-card .cta-button {
  margin-top: 0.6rem;
}

.section {
  padding: 3.5rem 6vw;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: white;
}

.section.dark {
  background: var(--night);
  color: #f9f6f1;
}

.section.dark a {
  color: #fcd9e1;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.column {
  flex: 1 1 15rem;
  min-width: 15rem;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.feature-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-card img {
  border-radius: 0.4rem;
}

.quote-block {
  padding: 2rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  background: white;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta-inline {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
}

.stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 10rem;
  background: white;
  padding: 1.2rem;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.service-card {
  flex: 1 1 15rem;
  background: white;
  padding: 1.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  background: white;
  padding: 2rem;
  border: 1px solid var(--line);
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.7rem;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--night);
  color: white;
  padding: 0.8rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10;
}

.sticky-cta a {
  color: white;
}

footer {
  padding: 3rem 6vw;
  background: var(--paper-deep);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 0.92rem;
}

footer .foot-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem auto;
  max-width: 22rem;
  background: white;
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions button {
  flex: 1;
}

.two-column-page {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.side-rail {
  flex: 0 0 16rem;
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}

.side-rail nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.page-main {
  flex: 1 1 20rem;
}

.tagline {
  font-style: italic;
  color: var(--muted);
}

.contact-card {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--line);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-list h2 {
  font-size: 1.2rem;
}

@media (max-width: 720px) {
  .top-strip {
    flex-direction: column;
    gap: 0.4rem;
  }

  .side-rail {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
