:root {
  --ink: #080808;
  --surface: #111111;
  --surface-raised: #181818;
  --paper: #f2eee5;
  --muted: #b8b4ab;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --line: rgba(201, 168, 76, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
}
.nav {
  width: min(1160px, calc(100% - 2rem));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; letter-spacing: .08em; }
.brand small { display: block; color: var(--gold); font-size: .57rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #e4e0d6; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--gold-light); }
.nav-phone { color: var(--ink) !important; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 4px; padding: .52rem .78rem; }

.related-links {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.page-shell .related-links h2,
.article-wrap .related-links h2 { margin: 0 0 .8rem; font-size: 1.45rem; }
.related-links ul { margin: 0; padding-left: 1.2rem; }
.related-links li { margin: .45rem 0; }
.related-links a { color: var(--gold-light); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 385px;
  display: grid;
  align-items: end;
  background: linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.58) 57%, rgba(8,8,8,.9) 100%), url('after4-1280.webp') center 53% / cover;
}
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, var(--ink) 100%); }
.hero-inner { position: relative; z-index: 1; width: min(900px, calc(100% - 2rem)); margin: 0 auto; padding: 7rem 0 3.3rem; }
.eyebrow { color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; }
h1 { max-width: 770px; margin: .75rem 0 1rem; font-size: clamp(2.25rem, 6vw, 4.6rem); }
.hero p { max-width: 650px; margin: 0; color: #e9e5dc; font-size: 1.06rem; }

.page-shell { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: 4rem 0 5rem; }
.lead { max-width: 690px; color: #d4d0c7; font-size: 1.08rem; }
.service-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.service-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.97), rgba(8,8,8,.62) 62%, rgba(8,8,8,.86)); }
.service-hero-inner { position: relative; z-index: 1; width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: 7.5rem 0 4rem; }
.service-hero h1 { margin: .7rem 0 1rem; }
.service-hero p { max-width: 680px; color: #e3ded4; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.button.secondary { border: 1px solid var(--gold); background: transparent; color: var(--gold-light); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .7fr); gap: 3rem; align-items: start; }
.content-grid h2 { margin: 2.3rem 0 .8rem; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.content-grid h2:first-child { margin-top: 0; }
.content-grid p, .content-grid li { color: #d9d5cc; }
.facts-panel { position: sticky; top: 100px; padding: 1.5rem; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.facts-panel h2 { margin: 0 0 1rem; font-size: 1.45rem; }
.facts-panel dl { margin: 0; }
.facts-panel dt { margin-top: 1rem; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.facts-panel dd { margin: .22rem 0 0; color: #ded9cf; }
.step-grid, .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.step, .proof-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.step strong { display: block; margin-bottom: .45rem; color: var(--gold-light); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.proof-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 5px; }
.proof-card h3 { margin: 1rem 0 .4rem; }
.proof-card p { margin: 0; color: var(--muted); }
.faq { margin-top: 3rem; }
.faq details { border-top: 1px solid var(--line); padding: 1rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { color: var(--paper); cursor: pointer; font-weight: 700; }
.faq details p { margin-bottom: .25rem; color: #d3cec5; }
.project-feature { width: 100%; border: 1px solid var(--line); border-radius: 8px; }
.contact-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.4rem 0; }
.contact-choice { padding: 1.2rem; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); text-decoration: none; }
.contact-choice strong { display: block; color: var(--gold-light); }
.contact-choice span { display: block; margin-top: .2rem; color: var(--paper); font-size: 1.2rem; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.25rem; }
.post-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; text-decoration: none; transition: transform .25s ease, border-color .25s ease; }
.post-card:hover { transform: translateY(-5px); border-color: rgba(232, 201, 122, .8); }
.post-card img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.tag { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.post-card h2 { margin: .55rem 0 .75rem; font-size: 1.65rem; }
.post-card p { color: var(--muted); font-size: .94rem; margin: 0; }
.post-card .read { display: block; color: var(--gold-light); font-size: .8rem; font-weight: 800; letter-spacing: .08em; margin-top: 1rem; text-transform: uppercase; }

.article-wrap { width: min(800px, calc(100% - 2rem)); margin: 0 auto; padding: 3.5rem 0 5rem; }
.breadcrumbs { margin-bottom: 1.7rem; color: var(--muted); font-size: .83rem; }
.breadcrumbs a { color: var(--gold-light); text-decoration: none; }
.article-meta { color: var(--gold-light); font-size: .77rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-wrap h1 { margin: .6rem 0 1.15rem; font-size: clamp(2.3rem, 5vw, 4rem); }
.dek { color: #d9d4ca; font-size: 1.15rem; }
.byline { margin: 1.6rem 0 2.3rem; color: var(--muted); font-size: .9rem; }
.feature { width: 100%; margin: 0 0 2.4rem; border: 1px solid var(--line); border-radius: 8px; aspect-ratio: 16 / 8; object-fit: cover; }
.feature-inline { margin: 1.4rem 0 2.4rem; }
.article-wrap h2 { margin: 2.45rem 0 .9rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.article-wrap h3 { margin: 1.5rem 0 .5rem; font-size: 1.28rem; }
.article-wrap p, .article-wrap li { color: #d9d5cc; }
.article-wrap li { margin: .4rem 0; }
.article-wrap strong { color: var(--paper); }
.callout { margin: 2rem 0; padding: 1.35rem 1.45rem; border-left: 3px solid var(--gold); background: #16130d; }
.callout p { margin: 0; }
.question-list { padding: 1.35rem 1.5rem 1.35rem 2.7rem; border: 1px solid var(--line); background: var(--surface); }
.table-scroll { margin: 1.5rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
.comparison-table { width: 100%; min-width: 660px; border-collapse: collapse; background: var(--surface); }
.comparison-table th, .comparison-table td { padding: .95rem 1rem; border-bottom: 1px solid var(--line); color: #d9d5cc; text-align: left; vertical-align: top; }
.comparison-table th { color: var(--paper); background: #211b0f; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.comparison-table tr:last-child td { border-bottom: 0; }
.source-box { margin-top: 3rem; padding: 1.5rem; border: 1px solid var(--line); background: var(--surface-raised); }
.source-box h2 { margin-top: 0; font-size: 1.45rem; }
.source-box ul { margin-bottom: 0; padding-left: 1.15rem; }
.source-box a { color: var(--gold-light); }
.cta { margin-top: 3.5rem; padding: 2.2rem; border-radius: 8px; background: linear-gradient(135deg, #2c210b, #14120d); border: 1px solid rgba(232,201,122,.42); text-align: center; }
.cta h2 { margin: 0 0 .65rem; }
.button { display: inline-block; margin-top: .9rem; padding: .85rem 1.2rem; border-radius: 4px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--ink); font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.disclaimer { color: var(--muted) !important; font-size: .82rem; }

footer { border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .82rem; }
.footer-inner a { color: var(--gold-light); text-decoration: none; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

@media (max-width: 720px) {
  .nav { min-height: 66px; flex-wrap: wrap; padding: .7rem 0; }
  .brand img { width: 35px; height: 35px; }
  .brand strong { font-size: .94rem; }
  .nav-links { width: 100%; justify-content: space-between; gap: .6rem; overflow-x: auto; }
  .nav-links a { font-size: .64rem; white-space: nowrap; }
  .nav-links .phone-link { display: none; }
  .hero { min-height: 330px; }
  .hero-inner { padding-top: 5.5rem; }
  .page-shell, .article-wrap { padding-top: 2.75rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { justify-content: flex-start; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .facts-panel { position: static; }
  .step-grid, .proof-grid { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
}
