/* ============================================================
   ROOFING TEMPLATE — Digital Landlord
   Variables: {{CITY}} {{STATE}} {{PHONE}} {{PHONE_DISPLAY}} {{COMPANY_NAME}} {{YEAR}}
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #0d1117;
  --ink-mid:  #1e2d3d;
  --cream:    #f7f2eb;
  --parchment:#ede6d8;
  --gold:     #f0a500;
  --gold-dark:#c4840a;
  --rust:     #c94a2a;
  --white:    #ffffff;
  --gray-400: #94a3b8;
  --gray-600: #475569;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Lora', Georgia, serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.12);
  --shadow:    0 8px 32px rgba(0,0,0,.18);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.28);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,165,0,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: var(--ink);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: .875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; }

.nav-cta { padding: .6rem 1.25rem; font-size: .875rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}

/* Diagonal slice */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--ink-mid);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 4px,
      rgba(255,255,255,.012) 4px,
      rgba(255,255,255,.012) 8px
    );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  width: 100%;
}

.hero-left { padding-right: 2rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .1s ease both;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s .3s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .6s .4s ease both;
}

/* ── Lead Form Card ───────────────────────────────────────── */
.hero-form-wrap {
  animation: fadeUp .6s .2s ease both;
}

.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--gold), var(--rust));
  z-index: -1;
}

.form-stamp {
  position: absolute;
  top: -20px;
  right: 24px;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 2px;
  transform: rotate(2deg);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: .25rem;
}

.form-subtitle {
  font-size: .875rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: .375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #d4cec5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.0625rem;
  margin-top: .5rem;
}

.form-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: .75rem;
  font-style: italic;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 1.25rem 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(13,17,23,.65);
  margin-top: .2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(13,17,23,.2);
}

/* ── Services Section ─────────────────────────────────────── */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services-header {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--parchment);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(240,165,0,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
}
.service-icon svg { width: 28px; height: 28px; }

.service-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: .5rem;
}

.service-desc {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-link {
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  transition: gap .2s;
}
.service-link:hover { gap: .625rem; }
.service-link svg { width: 14px; height: 14px; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-us {
  background: var(--ink);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.015) 60px,
      rgba(255,255,255,.015) 61px
    );
}

.why-us .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-icon-wrap {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(240,165,0,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: all .3s;
}
.why-item:hover .why-icon-wrap {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.why-icon-wrap svg { width: 32px; height: 32px; }

.why-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: .5rem;
}

.why-desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── Service Area ─────────────────────────────────────────── */
.service-area {
  padding: 5rem 0;
  background: var(--parchment);
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.area-intro { max-width: 460px; }
.area-intro .section-title { margin-bottom: 1rem; }
.area-intro p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  list-style: none;
}

.city-list li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: color .2s, gap .2s;
}
.city-list li a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.city-list li a:hover { color: var(--gold-dark); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
}

.testimonials-header { margin-bottom: 3rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--parchment);
  position: relative;
}

.testi-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: .5rem;
  opacity: .4;
}

.testi-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.testi-stars {
  color: var(--gold);
  font-size: .875rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.testi-author {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}

.testi-location {
  font-size: .8125rem;
  color: var(--gray-400);
  margin-top: .125rem;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-banner .section-label { color: rgba(13,17,23,.55); }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.125rem;
  color: rgba(13,17,23,.65);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #080c11;
  color: rgba(255,255,255,.55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; font-size: 1.25rem; }

.footer-desc {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-nap {
  font-style: normal;
  font-size: .875rem;
  line-height: 1.9;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8125rem;
}

.footer-bottom a { color: var(--gold); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

/* ── Mobile Menu ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 64px;
    background: var(--ink);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.25rem; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero::after { display: none; }
  .hero-left { padding-right: 0; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-trust { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-form-wrap { max-width: 480px; margin: 0 auto; }
  .area-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .city-list { grid-template-columns: 1fr; }
}

/* ── Form States ──────────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success svg { color: #22c55e; width: 48px; height: 48px; margin: 0 auto 1rem; }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.375rem;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.form-success p { color: var(--gray-600); font-style: italic; }

/* ── Service Page Specifics ───────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 4px,
    rgba(255,255,255,.012) 4px, rgba(255,255,255,.012) 8px
  );
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1.125rem;
  max-width: 580px;
  line-height: 1.7;
}

.content-section {
  padding: 5rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.content-body h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .75rem;
  margin-top: 2rem;
}
.content-body h2:first-child { margin-top: 0; }

.content-body p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--parchment);
  color: var(--gray-600);
  font-size: .9375rem;
}
.content-body ul li::before {
  content: '→';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

.sidebar-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.sidebar-card .form-group label { color: rgba(255,255,255,.5); }
.sidebar-card .form-group input,
.sidebar-card .form-group select,
.sidebar-card .form-group textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}
.sidebar-card .form-group input::placeholder { color: rgba(255,255,255,.3); }
.sidebar-card .form-group input:focus,
.sidebar-card .form-group select:focus { border-color: var(--gold); }

@media (max-width: 860px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
