/* ============================================================
   ADC Painting & Remodeling — Core CSS (Design System)
   Built by Neo (@dev), from identity.md + wireframe.md specs
   ============================================================ */

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, svg { max-width: 100%; display: block; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Palette — Kamala locked */
  --anchor: #1C2A3A;
  --anchor-hover: #0F1C2B;
  --anchor-soft: #2E4055;
  --copper: #D97706;
  --copper-hover: #B85D00;
  --copper-soft: #FDE4C8;
  --linen: #F5F1EA;
  --linen-deep: #E8E1D4;
  --text: #1C2A3A;
  --text-mute: #5C6978;
  --text-soft: #8A94A0;
  --border: #D1C7B5;
  --border-soft: #EAE3D5;
  --white: #FFFFFF;
  --error: #C2410C;
  /* Layout */
  --container: 1200px;
  --reading-width: 720px;
  --radius: 8px;
  --radius-lg: 12px;
  --gap-section: 80px;
  --gap-section-mobile: 60px;
  --gap-card: 24px;
  --gap-card-mobile: 16px;
  --pad-side: 40px;
  --pad-side-mobile: 20px;
  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-base: 200ms;
  --t-slow: 250ms;
  /* Fonts */
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--anchor); line-height: 1.15; }
h1 { font-size: 56px; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: 40px; letter-spacing: -0.01em; }
h3 { font-size: 28px; font-weight: 500; line-height: 1.2; }
h4 { font-family: var(--font-body); font-size: 20px; font-weight: 600; line-height: 1.3; }
p { line-height: 1.6; }
.lead { font-size: 18px; line-height: 1.55; color: var(--text); }
.small { font-size: 14px; line-height: 1.5; color: var(--text-mute); }
.caption { font-size: 12px; letter-spacing: 0.02em; color: var(--text-mute); }
strong, b { font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 18px; }
  .lead { font-size: 17px; }
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-side); }
.container-narrow { max-width: var(--reading-width); margin: 0 auto; padding: 0 var(--pad-side); }
.section { padding: var(--gap-section) 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--anchor); color: var(--linen); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--linen); }

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 var(--pad-side-mobile); }
  .section { padding: var(--gap-section-mobile) 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  white-space: nowrap;
  min-height: 48px;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--copper); color: var(--white); }
.btn-primary:hover { background: var(--copper-hover); }
.btn-secondary { background: transparent; color: var(--anchor); border-color: var(--anchor); }
.btn-secondary:hover { background: var(--anchor); color: var(--linen); }
.btn-ghost { background: transparent; color: var(--copper); padding: 10px 0; }
.btn-ghost:hover { color: var(--copper-hover); text-decoration: underline; }
.btn-inverse { background: var(--linen); color: var(--anchor); }
.btn-inverse:hover { background: var(--white); }

@media (max-width: 768px) {
  .btn { padding: 12px 24px; width: 100%; max-width: 320px; }
  .btn-row { flex-direction: column; gap: 12px; align-items: stretch; }
}

.btn-row { display: inline-flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ---------- Links ---------- */
.link { color: var(--copper); transition: color var(--t-fast); }
.link:hover { color: var(--copper-hover); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--t-fast);
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(28, 42, 58, 0.06); }
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.site-header-logo img { height: 48px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--anchor);
  transition: color var(--t-fast);
  padding: 8px 0;
}
.site-nav-link:hover, .site-nav-link.active { color: var(--copper); }
.site-nav-dropdown { position: relative; }
.site-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(28, 42, 58, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
}
.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--anchor);
  transition: background var(--t-fast), color var(--t-fast);
}
.site-nav-dropdown-menu a:hover { background: var(--linen-deep); color: var(--copper); }
.site-header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--text-mute); }
.lang-toggle a { padding: 4px 8px; border-radius: 4px; transition: background var(--t-fast), color var(--t-fast); }
.lang-toggle a.active { background: var(--anchor); color: var(--linen); font-weight: 600; }
.lang-toggle a:not(.active):hover { color: var(--copper); }
.header-phone { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--anchor); }
.header-phone:hover { color: var(--copper); }
.header-phone svg { width: 18px; height: 18px; }

.mobile-menu-toggle { display: none; }
@media (max-width: 900px) {
  .site-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
  }
  .mobile-menu-toggle:hover { background: var(--linen-deep); }
  .site-header-inner { min-height: 64px; padding: 12px var(--pad-side-mobile); }
  .site-header-logo img { height: 40px; }
  .lang-toggle { display: none; }
  .header-phone span { display: none; }
  .header-phone { background: var(--copper); color: var(--white); border-radius: var(--radius); width: 40px; height: 40px; justify-content: center; }
  .header-phone svg { width: 20px; height: 20px; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--linen);
  z-index: 200;
  padding: 80px 20px 40px;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--t-slow) var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.mobile-menu-close:hover { background: var(--linen-deep); }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-nav a {
  font-size: 20px;
  font-weight: 500;
  padding: 16px;
  color: var(--anchor);
  border-radius: var(--radius);
}
.mobile-menu-nav a:hover { background: var(--linen-deep); color: var(--copper); }
.mobile-menu-sub { display: none; padding-left: 16px; margin-top: 4px; }
.mobile-menu-sub.open { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu-sub a { font-size: 16px; font-weight: 400; }
.mobile-menu-hr { border: none; border-top: 1px solid var(--border-soft); margin: 24px 0; }
.mobile-menu-lang { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }
.mobile-menu-lang a { padding: 8px 20px; border: 1px solid var(--border); border-radius: var(--radius); font-weight: 500; }
.mobile-menu-lang a.active { background: var(--anchor); color: var(--linen); border-color: var(--anchor); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--linen) 0%, var(--linen-deep) 100%);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { margin-bottom: 24px; }
.hero-subline { font-size: 20px; color: var(--text); max-width: 760px; margin: 0 auto 36px; line-height: 1.5; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background: var(--anchor);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); }

@media (max-width: 768px) {
  .hero { padding: 48px 0 64px; }
  .hero-subline { font-size: 17px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; max-width: none; }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.hero-split-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--linen-deep); }
.hero-split-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-strip-inner {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.trust-strip-inner span + span::before { content: ' · '; padding: 0 8px; color: var(--border); }
@media (max-width: 768px) {
  .trust-strip-inner span + span::before { content: ' · '; padding: 0 4px; }
  .trust-strip-inner { font-size: 12px; }
}

/* ---------- Service Grid (cards) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
  margin-top: 48px;
}
@media (max-width: 1000px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 42, 58, 0.08);
  border-color: var(--copper-soft);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper-soft);
  border-radius: var(--radius);
  color: var(--copper);
}
.service-card-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 22px; margin-bottom: 4px; }
.service-card-desc { font-size: 15px; color: var(--text); line-height: 1.5; flex-grow: 1; }
.service-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-mute);
}
.service-card-meta strong { color: var(--anchor); font-weight: 600; }
.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-link:hover { gap: 8px; }

/* ---------- Why Triptych ---------- */
.why-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .why-triptych { grid-template-columns: 1fr; gap: 24px; } }

.why-col {
  padding: 24px 0;
}
.why-col h3 { font-size: 22px; margin-bottom: 12px; }
.why-col p { color: var(--text); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-list { max-width: var(--reading-width); margin: 48px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--anchor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--t-fast);
}
.faq-q:hover { background: var(--linen); }
.faq-q-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--t-slow) var(--ease);
  color: var(--copper);
}
.faq-item.open .faq-q-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 24px 24px; color: var(--text); line-height: 1.6; }

/* ---------- Stat Strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 768px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-strip { grid-template-columns: 1fr; } }
.stat-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-align: center;
}
.stat-card-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-label { font-size: 14px; color: var(--text-mute); font-weight: 500; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--anchor);
  color: var(--linen);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--linen); margin-bottom: 24px; }
.cta-band p { color: var(--linen); opacity: 0.9; max-width: 560px; margin: 0 auto 36px; font-size: 18px; line-height: 1.5; }
.cta-band .btn-primary { background: var(--copper); }
.cta-band .btn-secondary { color: var(--linen); border-color: var(--linen); }
.cta-band .btn-secondary:hover { background: var(--linen); color: var(--anchor); }
@media (max-width: 768px) { .cta-band { padding: 60px 0; } }

/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 14px; font-weight: 500; color: var(--anchor); }
.form-label-required::after { content: ' *'; color: var(--copper); }
.form-input, .form-textarea, .form-select {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--anchor);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--copper);
}
.form-textarea { resize: vertical; min-height: 96px; font-family: inherit; }
.form-helper { font-size: 12px; color: var(--text-soft); }
.form-error { font-size: 13px; color: var(--error); font-weight: 500; }
.form-check-list { display: flex; flex-direction: column; gap: 8px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-check:hover { border-color: var(--copper); }
.form-check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--copper); }
.form-check span { font-size: 15px; }
.form-honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }

.form-success {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--copper-soft);
  border-radius: var(--radius);
  text-align: left;
}
.form-success h3 { color: var(--copper); margin-bottom: 12px; font-size: 22px; }
.form-success p { color: var(--text); line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--anchor);
  color: var(--linen);
  padding: 64px 0 32px;
  margin-top: 0;
}
.site-footer h4 { font-family: var(--font-body); color: var(--linen); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-col p, .footer-col li { font-size: 14px; color: var(--linen); opacity: 0.85; line-height: 1.6; margin-bottom: 6px; }
.footer-col ul { list-style: none; }
.footer-col a { color: var(--linen); opacity: 0.85; transition: color var(--t-fast), opacity var(--t-fast); }
.footer-col a:hover { color: var(--copper); opacity: 1; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-legal {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  font-size: 12px;
  color: var(--linen);
  opacity: 0.7;
  line-height: 1.7;
}
.footer-legal p + p { margin-top: 6px; }

/* ---------- Chat Widget ---------- */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
}
.chat-widget-button {
  width: 64px;
  height: 64px;
  background: var(--copper);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.chat-widget-button:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(217, 119, 6, 0.4); }
.chat-widget-button svg { width: 28px; height: 28px; }
.chat-widget-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(28, 42, 58, 0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-widget-panel.open { display: flex; }
.chat-widget-header {
  background: var(--anchor);
  color: var(--linen);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-widget-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.chat-widget-title { font-weight: 600; font-size: 15px; }
.chat-widget-subtitle { font-size: 12px; opacity: 0.8; }
.chat-widget-close { margin-left: auto; color: var(--linen); padding: 4px; }
.chat-widget-messages { flex: 1; overflow-y: auto; padding: 20px; background: var(--linen); }
.chat-widget-msg { padding: 12px 16px; background: var(--white); border-radius: var(--radius); margin-bottom: 12px; font-size: 14px; line-height: 1.5; }
.chat-widget-input { display: flex; gap: 8px; padding: 16px; border-top: 1px solid var(--border-soft); background: var(--white); }
.chat-widget-input input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; }
.chat-widget-input button { background: var(--copper); color: var(--white); padding: 10px 16px; border-radius: var(--radius); font-weight: 500; font-size: 14px; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--linen);
  border-top: 1px solid var(--border);
  padding: 20px var(--pad-side);
  z-index: 140;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform var(--t-slow) var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-body { flex: 1; min-width: 260px; font-size: 14px; color: var(--text); line-height: 1.5; }
.cookie-banner-body strong { font-weight: 600; color: var(--anchor); }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: 10px 20px; min-height: 40px; font-size: 14px; width: auto; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: var(--text-mute);
}
.breadcrumb a { color: var(--text-mute); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb-sep { padding: 0 8px; color: var(--border); }

/* ---------- Service Meta ---------- */
.service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
  margin-top: 48px;
}
@media (max-width: 768px) { .service-meta { grid-template-columns: 1fr; gap: 16px; } }
.service-meta-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}
.service-meta-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--copper); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.service-meta-card p { font-size: 15px; color: var(--text); line-height: 1.5; }
.service-meta-card p strong { color: var(--anchor); }

/* ---------- Includes List ---------- */
.includes-list { list-style: none; max-width: var(--reading-width); margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.includes-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--text); }
.includes-list li::before { content: '✓'; color: var(--copper); font-weight: 700; flex-shrink: 0; }

.dont-list { list-style: none; max-width: var(--reading-width); margin: 24px 0; background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.dont-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.dont-list li::before { content: '✗'; color: var(--text-mute); font-weight: 700; flex-shrink: 0; }

/* ---------- Related Services ---------- */
.related-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-card); margin-top: 32px; }
@media (max-width: 640px) { .related-services { grid-template-columns: 1fr; } }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: var(--reading-width); margin: 0 auto; padding: 40px var(--pad-side) 80px; }
.legal-content h1 { margin-bottom: 12px; }
.legal-content .caption { margin-bottom: 32px; }
.legal-content h2 { font-size: 28px; margin: 40px 0 16px; }
.legal-content h3 { font-size: 20px; margin: 24px 0 12px; }
.legal-content p { margin-bottom: 16px; line-height: 1.7; }
.legal-content ul, .legal-content ol { margin: 16px 0 16px 20px; }
.legal-content li { margin-bottom: 8px; line-height: 1.6; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Focus rings (a11y) ---------- */
:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; border-radius: 2px; }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--copper);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 10px; }
