:root {
  --bg: #FAFAF7;
  --ink: #0A0A0A;
  --muted: #525252;
  --line: #E8E5DE;
  --soft: #F2EFE7;
  --orange: #FF8800;
  --lime: #84CC16;
  --cream: #FAFAF7;
  --warm-muted: #B8B5AC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 960px; margin: 0 auto; padding: 0 28px; width: 100%; }
@media (min-width: 968px) { .container { padding: 0 72px; } }

.nav { border-bottom: 1px solid var(--line); background: rgba(250,250,247,0.95); backdrop-filter: blur(12px); }
.nav-inner { max-width: 960px; margin: 0 auto; padding: 0 28px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 968px) { .nav-inner { padding: 0 72px; } }
.logo-mark { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -0.5px; }
.logo-mark .e2 { color: var(--orange); }
.logo-mark .e-mid { color: var(--lime); }
.nav-back { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-back:hover { color: var(--orange); }

.hero { padding: 80px 0 56px; }
.eyebrow { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 5vw, 56px); line-height: 1.08; letter-spacing: -1px; margin-bottom: 24px; max-width: 720px; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-lede { font-size: 18px; line-height: 1.75; color: #404040; font-weight: 300; max-width: 680px; margin-bottom: 36px; }

.content { padding: 0 0 80px; }
.content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(28px, 3vw, 36px); letter-spacing: -0.5px; margin: 48px 0 16px; }
.content p { font-size: 16px; line-height: 1.75; color: #3A3A3A; font-weight: 300; margin-bottom: 16px; }
.content ul { margin: 0 0 20px 20px; }
.content li { font-size: 16px; line-height: 1.75; color: #3A3A3A; font-weight: 300; margin-bottom: 8px; }

.stack-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 8px; }
.stack-pill { font-size: 12px; font-weight: 500; padding: 8px 14px; background: var(--soft); border: 1px solid var(--line); letter-spacing: 0.2px; }

.faq-block { background: var(--soft); padding: 56px 0; margin-top: 24px; border-top: 1px solid var(--line); }
.faq-item { padding: 24px 0; border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 22px; margin-bottom: 10px; letter-spacing: -0.3px; }
.faq-a { font-size: 15px; line-height: 1.7; color: #3A3A3A; font-weight: 300; }

.cta-band { background: var(--ink); color: var(--cream); padding: 72px 0; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-band p { color: var(--warm-muted); font-weight: 300; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--cream); font-size: 14px; font-weight: 600; padding: 16px 32px; border: none; cursor: pointer; transition: background 0.25s; text-transform: uppercase; letter-spacing: 0.3px; }
.btn-dark:hover { background: #e67a00; }

.footer { padding: 32px 0; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); font-weight: 300; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 12px; }
.footer-links a:hover { color: var(--orange); }

.other-services { padding: 56px 0 80px; border-top: 1px solid var(--line); }
.other-services h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 20px; letter-spacing: -0.3px; }
.service-links { display: grid; gap: 12px; }
.service-links a { font-size: 15px; color: var(--muted); padding: 12px 0; border-bottom: 1px solid var(--line); transition: color 0.2s; }
.service-links a:hover { color: var(--orange); }
